summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-06-27 16:32:24 +0000
committerKevin Steves <stevesk@pobox.com>2001-06-27 16:32:24 +0000
commit6a7b0de576a8aa1a7814774e21c5dd9a50bb1874 (patch)
tree78697c69aa96963094712d4c288abbb72cf53a5d
parent79b332dd6748980cf9c8af39e3194a7e272b9256 (diff)
- (stevesk) for HP-UX 11.X use X/Open socket interface;
pulls in modern socket prototypes and eliminates a number of compiler warnings. see xopen_networking(7).
-rw-r--r--ChangeLog5
-rw-r--r--configure.in6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e5de631a4..bb0d47bc6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,9 @@
10 - djm@cvs.openbsd.org 2001/06/27 13:23:30 10 - djm@cvs.openbsd.org 2001/06/27 13:23:30
11 typo, spotted by Tom Holroyd <tomh@po.crl.go.jp>; ok deraadt@ 11 typo, spotted by Tom Holroyd <tomh@po.crl.go.jp>; ok deraadt@
12 - (djm) Turn up warnings if gcc or egcs detected 12 - (djm) Turn up warnings if gcc or egcs detected
13 - (stevesk) for HP-UX 11.X use X/Open socket interface;
14 pulls in modern socket prototypes and eliminates a number of compiler
15 warnings. see xopen_networking(7).
13 16
1420010625 1720010625
15 - OpenBSD CVS Sync 18 - OpenBSD CVS Sync
@@ -5804,4 +5807,4 @@
5804 - Wrote replacements for strlcpy and mkdtemp 5807 - Wrote replacements for strlcpy and mkdtemp
5805 - Released 1.0pre1 5808 - Released 1.0pre1
5806 5809
5807$Id: ChangeLog,v 1.1331 2001/06/27 13:35:51 djm Exp $ 5810$Id: ChangeLog,v 1.1332 2001/06/27 16:32:24 stevesk Exp $
diff --git a/configure.in b/configure.in
index 554d1cf40..04b70dd6c 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
1# $Id: configure.in,v 1.293 2001/06/27 13:35:53 djm Exp $ 1# $Id: configure.in,v 1.294 2001/06/27 16:32:24 stevesk Exp $
2 2
3AC_INIT(ssh.c) 3AC_INIT(ssh.c)
4 4
@@ -87,14 +87,14 @@ case "$host" in
87 LIBS="$LIBS -lsec" 87 LIBS="$LIBS -lsec"
88 ;; 88 ;;
89*-*-hpux11*) 89*-*-hpux11*)
90 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE" 90 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
91 IPADDR_IN_DISPLAY=yes 91 IPADDR_IN_DISPLAY=yes
92 AC_DEFINE(PAM_SUN_CODEBASE) 92 AC_DEFINE(PAM_SUN_CODEBASE)
93 AC_DEFINE(USE_PIPES) 93 AC_DEFINE(USE_PIPES)
94 AC_DEFINE(DISABLE_SHADOW) 94 AC_DEFINE(DISABLE_SHADOW)
95 AC_DEFINE(DISABLE_UTMP) 95 AC_DEFINE(DISABLE_UTMP)
96 AC_DEFINE(SPT_TYPE,SPT_PSTAT) 96 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
97 LIBS="$LIBS -lsec" 97 LIBS="$LIBS -lxnet -lsec"
98 ;; 98 ;;
99*-*-irix5*) 99*-*-irix5*)
100 CPPFLAGS="$CPPFLAGS -I/usr/local/include" 100 CPPFLAGS="$CPPFLAGS -I/usr/local/include"