diff options
author | Timo Sirainen <cras@irssi.org> | 2001-04-09 16:36:28 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-04-09 16:36:28 +0000 |
commit | c258280c79c70d213dc27a780503c40d9613e831 (patch) | |
tree | d00a84b8ff482b73b44ab2576b6fe7bc2814833f /configure.in | |
parent | ece1ac9dee55f8d8db43263b272921c881559691 (diff) | |
download | irssi-c258280c79c70d213dc27a780503c40d9613e831.zip |
don't strip -lnsl from perl's ldflags, it might be needed..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1439 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index f6efa958..e95b9bce 100644 --- a/configure.in +++ b/configure.in @@ -484,7 +484,7 @@ if test "$want_perl" != "no"; then dnl * nsl is already in ldflags dnl * libc is of course linked without needing -lc dnl * -rdynamic must not be in LIBADD line - for word in -ldb -ldbm -lndbm -lgdbm -lnsl -lc -rdynamic; do + for word in -ldb -ldbm -lndbm -lgdbm -lc -rdynamic; do PERL_LDFLAGS=`echo $PERL_LDFLAGS | $sedpath -e "s/$word //" -e "s/$word$//"` done |