]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (djm) Properly add -lcrypt if needed.
authorDamien Miller <djm@mindrot.org>
Wed, 28 Feb 2001 22:16:11 +0000 (09:16 +1100)
committerDamien Miller <djm@mindrot.org>
Wed, 28 Feb 2001 22:16:11 +0000 (09:16 +1100)
ChangeLog
configure.in

index 48e424965665fe337921ec6c2483e5872ca937f7..79c6f94c4164bbe0459912da24e5063d75297603 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+20010301
+ - (djm) Properly add -lcrypt if needed. 
+
 20010228
  - (djm) Detect endianness in configure and use it in rijndael.c. Fixes
    "Bad packet length" bugs.
  - Wrote replacements for strlcpy and mkdtemp
  - Released 1.0pre1
 
-$Id: ChangeLog,v 1.841 2001/02/28 01:51:18 djm Exp $
+$Id: ChangeLog,v 1.842 2001/02/28 22:16:11 djm Exp $
index fc6e1faacf351d756c4eb543e03c473178a6cb95..69db290c42433518467d9e6e9f4d981737b14543 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.259 2001/02/28 01:51:19 djm Exp $
+# $Id: configure.in,v 1.260 2001/02/28 22:16:12 djm Exp $
 
 AC_INIT(ssh.c)
 
@@ -749,7 +749,7 @@ fi
 # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the 
 # version in OpenSSL. Skip this for PAM
 if test "x$PAM_MSG" = "xno" -a "x$check_for_libcrypt_later" = "x1"; then
-       AC_CHECK_LIB(crypt, crypt, )
+       AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
 fi
 
 # Cheap hack to ensure NEWS-OS libraries are arranged right.