summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortim <tim>2005-08-30 00:17:37 +0000
committertim <tim>2005-08-30 00:17:37 +0000
commit4f7416caad5d443991b89a3d1bf1a8a0c52dd865 (patch)
tree4ecd30dd7f84b34cff6afa8720f452a8be32b309
parentb7bb91a00123191d95c760cc763d5b9973534741 (diff)
downloadopenssh-4f7416caad5d443991b89a3d1bf1a8a0c52dd865.tar.gz
- (tim) [configure.ac] ia_openinfo() seems broken on OSR6. Limit UW long
password support to 7.x for now.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac8
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index d0ef8312..9f92885b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20050829
+ - (tim) [configure.ac] ia_openinfo() seems broken on OSR6. Limit UW long
+ password support to 7.x for now.
+
20050826
- (tim) [CREDITS LICENCE auth.c configure.ac defines.h includes.h session.c
openbsd-compat/Makefile.in openbsd-compat/openbsd-compat.h
@@ -2961,4 +2965,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.3879 2005/08/26 20:15:19 tim Exp $
+$Id: ChangeLog,v 1.3880 2005/08/30 00:17:37 tim Exp $
diff --git a/configure.ac b/configure.ac
index c9c8218d..d20ec150 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.289 2005/08/26 20:15:20 tim Exp $
+# $Id: configure.ac,v 1.290 2005/08/30 00:17:38 tim Exp $
#
# Copyright (c) 1999-2004 Damien Miller
#
@@ -446,8 +446,6 @@ mips-sony-bsd|mips-sony-newsos4)
;;
# UnixWare 7.x, OpenUNIX 8
*-*-sysv5*)
- check_for_libcrypt_later=1
- AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
AC_DEFINE(USE_PIPES)
AC_DEFINE(SETEUID_BREAKS_SETUID)
AC_DEFINE(BROKEN_SETREUID)
@@ -457,6 +455,10 @@ mips-sony-bsd|mips-sony-newsos4)
*-*-sysv5SCO_SV*) # SCO OpenServer 6.x
TEST_SHELL=/u95/bin/sh
;;
+ *-*-sysv5*)
+ check_for_libcrypt_later=1
+ AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
+ ;;
esac
;;
*-*-sysv*)