mirror of git://anongit.mindrot.org/openssh.git
- (djm) Properly add -lcrypt if needed.
This commit is contained in:
parent
e854662d54
commit
95aa2d60ea
|
@ -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.
|
||||
|
@ -4166,4 +4169,4 @@
|
|||
- 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 $
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue