1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

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
This commit is contained in:
Timo Sirainen 2001-04-09 16:36:28 +00:00 committed by cras
parent ece1ac9dee
commit c258280c79

View File

@ -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