summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac6
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 02d50cbed..7ce9e0233 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
4 OpenSSL >= 0.9.7. ok djm@ 4 OpenSSL >= 0.9.7. ok djm@
5 - (dtucker) [session.c] Bug #789: Do not call do_pam_setcred as a non-root 5 - (dtucker) [session.c] Bug #789: Do not call do_pam_setcred as a non-root
6 user, since some modules might fail due to lack of privilege. ok djm@ 6 user, since some modules might fail due to lack of privilege. ok djm@
7 - (dtucker) [configure.ac] Bug #748: Always define BROKEN_GETADDRINFO
8 for HP-UX 11.11. If there are known-good configs where this is not
9 required, please report them. ok djm@
7 10
820040129 1120040129
9 - (dtucker) OpenBSD CVS Sync regress/ 12 - (dtucker) OpenBSD CVS Sync regress/
@@ -1789,4 +1792,4 @@
1789 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1792 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1790 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1793 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1791 1794
1792$Id: ChangeLog,v 1.3207 2004/02/06 04:30:50 dtucker Exp $ 1795$Id: ChangeLog,v 1.3208 2004/02/06 04:59:06 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index 97ef89a16..768b174b2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.191 2004/01/30 03:34:22 dtucker Exp $ 1# $Id: configure.ac,v 1.192 2004/02/06 04:59:06 dtucker Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -192,6 +192,10 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
192 AC_DEFINE(DISABLE_UTMP) 192 AC_DEFINE(DISABLE_UTMP)
193 AC_DEFINE(LOCKED_PASSWD_STRING, "*") 193 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
194 AC_DEFINE(SPT_TYPE,SPT_PSTAT) 194 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
195 case "$host" in
196 *-*-hpux11.11*)
197 AC_DEFINE(BROKEN_GETADDRINFO);;
198 esac
195 LIBS="$LIBS -lsec" 199 LIBS="$LIBS -lsec"
196 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***])) 200 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
197 ;; 201 ;;