summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-03-01 09:16:11 +1100
committerDamien Miller <djm@mindrot.org>2001-03-01 09:16:11 +1100
commit95aa2d60eaefc707a832d7ef2f17498fb6841ac8 (patch)
treec4bf433634892f0d11e17d5763f7f9461d9acb57 /configure.in
parente854662d54b777a229d8c58f4afb68332113442b (diff)
- (djm) Properly add -lcrypt if needed.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index fc6e1faa..69db290c 100644
--- a/configure.in
+++ b/configure.in
@@ -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.