diff options
author | Timo Sirainen <cras@irssi.org> | 2001-02-17 07:16:58 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-02-17 07:16:58 +0000 |
commit | 039db4047d97c4c41c6752dce8deca9363824ba8 (patch) | |
tree | 9aa9bb96cee578a59628ba9a44b8766438297090 | |
parent | 8d86fc75ef3461f25fc1d4440abafc3c0ccc5e24 (diff) | |
download | irssi-039db4047d97c4c41c6752dce8deca9363824ba8.zip |
Dynamic module check: don't use -module option with libtool.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1221 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index eb4b8a4e..d54b6d6f 100644 --- a/configure.in +++ b/configure.in @@ -310,7 +310,7 @@ if test ! -s conftest.lo; then fi dnl ** link to library -./libtool --mode=link $CC $CFLAGS $LDFLAGS -module -rpath /usr/lib conftest.lo -lm -o libconftest.la > /dev/null +./libtool --mode=link $CC $CFLAGS $LDFLAGS -rpath /usr/lib conftest.lo -lm -o libconftest.la > /dev/null if test -s .libs/libconftest.a; then LIBDIR=.libs/ elif test -s libconftest.a; then |