summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-10 19:28:02 +1000
committerDamien Miller <djm@mindrot.org>2003-05-10 19:28:02 +1000
commit4f9f42a9bb6a6aa8f6100d873dc6344f2f9994de (patch)
treef81c39146e1cfabb4b198f57f60453b2dcaac299 /configure.ac
parentc437cda328b4733b59a7ed028b72e6b7f58f86e6 (diff)
- (djm) Merge FreeBSD PAM code: replaces PAM password auth kludge with
proper challenge-response module
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index dee852854..7a24838fe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.116 2003/05/10 07:05:46 dtucker Exp $ 1# $Id: configure.ac,v 1.117 2003/05/10 09:28:02 djm Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -963,7 +963,7 @@ int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
963 963
964# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the 964# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
965# version in OpenSSL. Skip this for PAM 965# version in OpenSSL. Skip this for PAM
966if test "x$PAM_MSG" = "xno" -a "x$check_for_libcrypt_later" = "x1"; then 966if test "x$check_for_libcrypt_later" = "x1"; then
967 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt") 967 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
968fi 968fi
969 969