summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2009-01-07 20:50:08 -0800
committerTim Rice <tim@multitalents.net>2009-01-07 20:50:08 -0800
commit2676791c38e16497c3d078d86c0a7608c4d946f1 (patch)
tree5aff7f63682eb8eeb8a90a0ac84b28f1761b908a
parent351529ce3089bbfdc65488961016153c4e8fee03 (diff)
- (tim) [configure.ac] Move check_for_libcrypt_later=1 in *-*-sysv5*) section.
OpenServer 6 doesn't need libcrypt.
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac6
2 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d7c7c538..04a70ed5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
2 - (tim) [configure.ac defines.h openbsd-compat/port-uw.c 2 - (tim) [configure.ac defines.h openbsd-compat/port-uw.c
3 openbsd-compat/xcrypt.c] Add SECUREWARE support to OpenServer 6 SVR5 ABI. 3 openbsd-compat/xcrypt.c] Add SECUREWARE support to OpenServer 6 SVR5 ABI.
4 OK djm@ dtucker@ 4 OK djm@ dtucker@
5 - (tim) [configure.ac] Move check_for_libcrypt_later=1 in *-*-sysv5*) section.
6 OpenServer 6 doesn't need libcrypt.
5 7
620081209 820081209
7 - (djm) OpenBSD CVS Sync 9 - (djm) OpenBSD CVS Sync
@@ -4994,5 +4996,5 @@
4994 OpenServer 6 and add osr5bigcrypt support so when someone migrates 4996 OpenServer 6 and add osr5bigcrypt support so when someone migrates
4995 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 4997 passwords between UnixWare and OpenServer they will still work. OK dtucker@
4996 4998
4997$Id: ChangeLog,v 1.5156 2009/01/07 18:04:12 tim Exp $ 4999$Id: ChangeLog,v 1.5157 2009/01/08 04:50:08 tim Exp $
4998 5000
diff --git a/configure.ac b/configure.ac
index df834baca..94589ddc7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.412 2009/01/07 18:04:12 tim Exp $ 1# $Id: configure.ac,v 1.413 2009/01/08 04:50:09 tim Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.412 $) 18AC_REVISION($Revision: 1.413 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -728,7 +728,6 @@ mips-sony-bsd|mips-sony-newsos4)
728 ;; 728 ;;
729# UnixWare 7.x, OpenUNIX 8 729# UnixWare 7.x, OpenUNIX 8
730*-*-sysv5*) 730*-*-sysv5*)
731 check_for_libcrypt_later=1
732 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars]) 731 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
733 AC_DEFINE(USE_PIPES) 732 AC_DEFINE(USE_PIPES)
734 AC_DEFINE(SETEUID_BREAKS_SETUID) 733 AC_DEFINE(SETEUID_BREAKS_SETUID)
@@ -748,6 +747,7 @@ mips-sony-bsd|mips-sony-newsos4)
748 ],,) 747 ],,)
749 ;; 748 ;;
750 *) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*") 749 *) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
750 check_for_libcrypt_later=1
751 ;; 751 ;;
752 esac 752 esac
753 ;; 753 ;;