summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac4
-rw-r--r--includes.h3
3 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index ebb93d947..6cf14ea84 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -52,6 +52,7 @@
52 - (djm) Bug #529: sshd doesn't work correctly after SIGHUP (copy argv 52 - (djm) Bug #529: sshd doesn't work correctly after SIGHUP (copy argv
53 correctly) 53 correctly)
54 - (djm) Bug #444: Wrong paths after reconfigure 54 - (djm) Bug #444: Wrong paths after reconfigure
55 - (dtucker) HP-UX needs to include <sys/strtio.h> for TIOCSBRK
55 56
5620030514 5720030514
57 - (djm) Bug #117: Don't lie to PAM about username 58 - (djm) Bug #117: Don't lie to PAM about username
@@ -1527,4 +1528,4 @@
1527 save auth method before monitor_reset_key_state(); bugzilla bug #284; 1528 save auth method before monitor_reset_key_state(); bugzilla bug #284;
1528 ok provos@ 1529 ok provos@
1529 1530
1530$Id: ChangeLog,v 1.2722 2003/05/15 11:33:46 djm Exp $ 1531$Id: ChangeLog,v 1.2723 2003/05/15 11:42:59 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index 66d668355..99a85264c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.120 2003/05/15 02:27:08 djm Exp $ 1# $Id: configure.ac,v 1.121 2003/05/15 11:42:59 dtucker Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -445,7 +445,7 @@ AC_CHECK_HEADERS(bstring.h crypt.h endian.h floatingpoint.h \
445 login_cap.h maillock.h netdb.h netgroup.h \ 445 login_cap.h maillock.h netdb.h netgroup.h \
446 netinet/in_systm.h paths.h pty.h readpassphrase.h \ 446 netinet/in_systm.h paths.h pty.h readpassphrase.h \
447 rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \ 447 rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
448 strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \ 448 strings.h sys/strtio.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \
449 sys/mman.h sys/pstat.h sys/select.h sys/stat.h \ 449 sys/mman.h sys/pstat.h sys/select.h sys/stat.h \
450 sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h \ 450 sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h \
451 sys/un.h time.h tmpdir.h ttyent.h usersec.h \ 451 sys/un.h time.h tmpdir.h ttyent.h usersec.h \
diff --git a/includes.h b/includes.h
index db9cfc92e..b968be7f8 100644
--- a/includes.h
+++ b/includes.h
@@ -133,6 +133,9 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
133#ifdef HAVE_SYS_MMAN_H 133#ifdef HAVE_SYS_MMAN_H
134#include <sys/mman.h> /* for MAP_ANONYMOUS */ 134#include <sys/mman.h> /* for MAP_ANONYMOUS */
135#endif 135#endif
136#ifdef HAVE_SYS_STRTIO_H
137#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
138#endif
136 139
137#include <netinet/in_systm.h> /* For typedefs */ 140#include <netinet/in_systm.h> /* For typedefs */
138#include <netinet/in.h> /* For IPv6 macros */ 141#include <netinet/in.h> /* For IPv6 macros */