summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-10-29 13:43:46 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-10-29 13:43:46 +0000
commit59e310c72336c5bc9a9f06535a48fea6e2a17318 (patch)
tree1796dc438225433d7511c1d6295dd8920dc42a38 /configure.in
parent6729317cac92d440490597a5247d818b7de61b4c (diff)
downloadirssi-59e310c72336c5bc9a9f06535a48fea6e2a17318.zip
stuff in LIBS moved to PROG_LIBS again. Otherwise linking perl module (and maybe some other stuff as well) tries to link all that with the module.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1938 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index e504caaa..dfed6143 100644
--- a/configure.in
+++ b/configure.in
@@ -658,6 +658,11 @@ AM_CONDITIONAL(HAVE_STATIC_PERL, test "$want_perl" = "static")
AM_CONDITIONAL(NEED_TPARM, test "$need_tparm" = "yes")
AM_CONDITIONAL(USE_CURSES, test "$want_terminfo" != "yes" -a "$want_termcap" != "yes")
+# move LIBS to PROG_LIBS so they're not tried to be used when linking eg. perl libraries
+PROG_LIBS=$LIBS
+LIBS=
+AC_SUBST(PROG_LIBS)
+
dnl **
dnl ** Keep all the libraries here so each frontend doesn't need to
dnl ** keep track of them all