summaryrefslogtreecommitdiff
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
parent1bf11f6af7e284f6a7aa1b74a2c7d646cb54080b (diff)
- (bal) configure.in fix for Tru64 (forgeting to reset $LIB)
-rw-r--r--ChangeLog3
-rw-r--r--configure.in5
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f1d80893f..212df6d16 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -77,6 +77,7 @@
77 - markus@cvs.openbsd.org 2001/06/08 15:25:40 77 - markus@cvs.openbsd.org 2001/06/08 15:25:40
78 [includes.h pathnames.h readconf.c servconf.c] 78 [includes.h pathnames.h readconf.c servconf.c]
79 move the path for xauth to pathnames.h 79 move the path for xauth to pathnames.h
80 - (bal) configure.in fix for Tru64 (forgeting to reset $LIB)
80 81
8120010606 8220010606
82 - OpenBSD CVS Sync 83 - OpenBSD CVS Sync
@@ -5588,4 +5589,4 @@
5588 - Wrote replacements for strlcpy and mkdtemp 5589 - Wrote replacements for strlcpy and mkdtemp
5589 - Released 1.0pre1 5590 - Released 1.0pre1
5590 5591
5591$Id: ChangeLog,v 1.1269 2001/06/09 01:48:01 mouring Exp $ 5592$Id: ChangeLog,v 1.1270 2001/06/09 02:16:28 mouring Exp $
diff --git a/configure.in b/configure.in
index 64c682eeb..83e044f1b 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
1# $Id: configure.in,v 1.287 2001/05/28 17:17:35 tim Exp $ 1# $Id: configure.in,v 1.288 2001/06/09 02:16:29 mouring Exp $
2 2
3AC_INIT(ssh.c) 3AC_INIT(ssh.c)
4 4
@@ -696,6 +696,7 @@ int main(void)
696 break; 696 break;
697 ], []) 697 ], [])
698done 698done
699LIBS="$saved_LIBS"
699 700
700if test ! -z "$no_rsa" ; then 701if test ! -z "$no_rsa" ; then
701 AC_MSG_RESULT(disabled) 702 AC_MSG_RESULT(disabled)
@@ -711,7 +712,7 @@ else
711 else 712 else
712 RSA_MSG="yes (using RSAref)" 713 RSA_MSG="yes (using RSAref)"
713 AC_MSG_RESULT(using RSAref) 714 AC_MSG_RESULT(using RSAref)
714 LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref" 715 LIBS="$LIBS -lcrypto -lRSAglue -lrsaref"
715 fi 716 fi
716 fi 717 fi
717fi 718fi