summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-06-09 02:16:28 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-06-09 02:16:28 +0000
commit23fec1471001e9a5caaae1e76ccc89593ac609b8 (patch)
tree37c8c4da04600518037a7936fb6e8ce2261a6574 /configure.in
parent1bf11f6af7e284f6a7aa1b74a2c7d646cb54080b (diff)
- (bal) configure.in fix for Tru64 (forgeting to reset $LIB)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 64c682ee..83e044f1 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.287 2001/05/28 17:17:35 tim Exp $
+# $Id: configure.in,v 1.288 2001/06/09 02:16:29 mouring Exp $
AC_INIT(ssh.c)
@@ -696,6 +696,7 @@ int main(void)
break;
], [])
done
+LIBS="$saved_LIBS"
if test ! -z "$no_rsa" ; then
AC_MSG_RESULT(disabled)
@@ -711,7 +712,7 @@ else
else
RSA_MSG="yes (using RSAref)"
AC_MSG_RESULT(using RSAref)
- LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref"
+ LIBS="$LIBS -lcrypto -lRSAglue -lrsaref"
fi
fi
fi