summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2005-08-29 17:17:37 -0700
committerTim Rice <tim@multitalents.net>2005-08-29 17:17:37 -0700
commit2016865b954c83ddcdc76ebeef3a5fe3dfd6d9d2 (patch)
tree615e7bb8180a869dc1f915081471e59ab7384be2
parent2291c00ab2aef934391c23227645121719df4c4b (diff)
- (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 d0ef8312e..9f92885b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120050829
2 - (tim) [configure.ac] ia_openinfo() seems broken on OSR6. Limit UW long
3 password support to 7.x for now.
4
120050826 520050826
2 - (tim) [CREDITS LICENCE auth.c configure.ac defines.h includes.h session.c 6 - (tim) [CREDITS LICENCE auth.c configure.ac defines.h includes.h session.c
3 openbsd-compat/Makefile.in openbsd-compat/openbsd-compat.h 7 openbsd-compat/Makefile.in openbsd-compat/openbsd-compat.h
@@ -2961,4 +2965,4 @@
2961 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 2965 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
2962 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 2966 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
2963 2967
2964$Id: ChangeLog,v 1.3879 2005/08/26 20:15:19 tim Exp $ 2968$Id: ChangeLog,v 1.3880 2005/08/30 00:17:37 tim Exp $
diff --git a/configure.ac b/configure.ac
index c9c8218d3..d20ec1507 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.289 2005/08/26 20:15:20 tim Exp $ 1# $Id: configure.ac,v 1.290 2005/08/30 00:17:38 tim Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -446,8 +446,6 @@ 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])
451 AC_DEFINE(USE_PIPES) 449 AC_DEFINE(USE_PIPES)
452 AC_DEFINE(SETEUID_BREAKS_SETUID) 450 AC_DEFINE(SETEUID_BREAKS_SETUID)
453 AC_DEFINE(BROKEN_SETREUID) 451 AC_DEFINE(BROKEN_SETREUID)
@@ -457,6 +455,10 @@ mips-sony-bsd|mips-sony-newsos4)
457 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x 455 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
458 TEST_SHELL=/u95/bin/sh 456 TEST_SHELL=/u95/bin/sh
459 ;; 457 ;;
458 *-*-sysv5*)
459 check_for_libcrypt_later=1
460 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
461 ;;
460 esac 462 esac
461 ;; 463 ;;
462*-*-sysv*) 464*-*-sysv*)