diff options
author | Damien Miller <djm@mindrot.org> | 2001-03-01 09:16:11 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2001-03-01 09:16:11 +1100 |
commit | 95aa2d60eaefc707a832d7ef2f17498fb6841ac8 (patch) | |
tree | c4bf433634892f0d11e17d5763f7f9461d9acb57 | |
parent | e854662d54b777a229d8c58f4afb68332113442b (diff) |
- (djm) Properly add -lcrypt if needed.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -1,3 +1,6 @@ | |||
1 | 20010301 | ||
2 | - (djm) Properly add -lcrypt if needed. | ||
3 | |||
1 | 20010228 | 4 | 20010228 |
2 | - (djm) Detect endianness in configure and use it in rijndael.c. Fixes | 5 | - (djm) Detect endianness in configure and use it in rijndael.c. Fixes |
3 | "Bad packet length" bugs. | 6 | "Bad packet length" bugs. |
@@ -4166,4 +4169,4 @@ | |||
4166 | - Wrote replacements for strlcpy and mkdtemp | 4169 | - Wrote replacements for strlcpy and mkdtemp |
4167 | - Released 1.0pre1 | 4170 | - Released 1.0pre1 |
4168 | 4171 | ||
4169 | $Id: ChangeLog,v 1.841 2001/02/28 01:51:18 djm Exp $ | 4172 | $Id: ChangeLog,v 1.842 2001/02/28 22:16:11 djm Exp $ |
diff --git a/configure.in b/configure.in index fc6e1faac..69db290c4 100644 --- a/configure.in +++ b/configure.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.in,v 1.259 2001/02/28 01:51:19 djm Exp $ | 1 | # $Id: configure.in,v 1.260 2001/02/28 22:16:12 djm Exp $ |
2 | 2 | ||
3 | AC_INIT(ssh.c) | 3 | AC_INIT(ssh.c) |
4 | 4 | ||
@@ -749,7 +749,7 @@ fi | |||
749 | # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the | 749 | # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the |
750 | # version in OpenSSL. Skip this for PAM | 750 | # version in OpenSSL. Skip this for PAM |
751 | if test "x$PAM_MSG" = "xno" -a "x$check_for_libcrypt_later" = "x1"; then | 751 | if test "x$PAM_MSG" = "xno" -a "x$check_for_libcrypt_later" = "x1"; then |
752 | AC_CHECK_LIB(crypt, crypt, , ) | 752 | AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt") |
753 | fi | 753 | fi |
754 | 754 | ||
755 | # Cheap hack to ensure NEWS-OS libraries are arranged right. | 755 | # Cheap hack to ensure NEWS-OS libraries are arranged right. |