summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2005-08-26 13:15:19 -0700
committerTim Rice <tim@multitalents.net>2005-08-26 13:15:19 -0700
commit2291c00ab2aef934391c23227645121719df4c4b (patch)
treee54919cbc0f3992c2b6988d36898b40f838360ba /configure.ac
parent8cc2ad68cd886d5f55a40b46a8e4d60931217a33 (diff)
- (tim) [CREDITS LICENCE auth.c configure.ac defines.h includes.h session.c
openbsd-compat/Makefile.in openbsd-compat/openbsd-compat.h openbsd-compat/xcrypt.c] New files [openssh/openbsd-compat/port-uw.c openssh/openbsd-compat/port-uw.h] Support long passwords (> 8-char) on UnixWare 7 from Dhiraj Gulati and Ahsan Rashid. Cleanup and testing by tim@. Feedback and OK dtucker@
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f1588c693..c9c8218d3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.288 2005/08/24 00:11:26 tim Exp $ 1# $Id: configure.ac,v 1.289 2005/08/26 20:15:20 tim Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -446,6 +446,8 @@ mips-sony-bsd|mips-sony-newsos4)
446 ;; 446 ;;
447# UnixWare 7.x, OpenUNIX 8 447# UnixWare 7.x, OpenUNIX 8
448*-*-sysv5*) 448*-*-sysv5*)
449 check_for_libcrypt_later=1
450 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
449 AC_DEFINE(USE_PIPES) 451 AC_DEFINE(USE_PIPES)
450 AC_DEFINE(SETEUID_BREAKS_SETUID) 452 AC_DEFINE(SETEUID_BREAKS_SETUID)
451 AC_DEFINE(BROKEN_SETREUID) 453 AC_DEFINE(BROKEN_SETREUID)
@@ -643,6 +645,7 @@ AC_CHECK_HEADERS( \
643 getopt.h \ 645 getopt.h \
644 glob.h \ 646 glob.h \
645 ia.h \ 647 ia.h \
648 iaf.h \
646 lastlog.h \ 649 lastlog.h \
647 limits.h \ 650 limits.h \
648 login.h \ 651 login.h \
@@ -1721,6 +1724,7 @@ if test "x$check_for_libcrypt_later" = "x1"; then
1721 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt") 1724 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
1722fi 1725fi
1723 1726
1727AC_CHECK_LIB(iaf, ia_openinfo)
1724 1728
1725### Configure cryptographic random number support 1729### Configure cryptographic random number support
1726 1730