- (dtucker) HP-UX needs to include <sys/strtio.h> for TIOCSBRK

This commit is contained in:
Darren Tucker 2003-05-15 21:42:59 +10:00
parent eff041d19e
commit 5d0ccf3b24
3 changed files with 7 additions and 3 deletions

View File

@ -52,6 +52,7 @@
- (djm) Bug #529: sshd doesn't work correctly after SIGHUP (copy argv
correctly)
- (djm) Bug #444: Wrong paths after reconfigure
- (dtucker) HP-UX needs to include <sys/strtio.h> for TIOCSBRK
20030514
- (djm) Bug #117: Don't lie to PAM about username
@ -1527,4 +1528,4 @@
save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@
$Id: ChangeLog,v 1.2722 2003/05/15 11:33:46 djm Exp $
$Id: ChangeLog,v 1.2723 2003/05/15 11:42:59 dtucker Exp $

View File

@ -1,4 +1,4 @@
# $Id: configure.ac,v 1.120 2003/05/15 02:27:08 djm Exp $
# $Id: configure.ac,v 1.121 2003/05/15 11:42:59 dtucker Exp $
AC_INIT
AC_CONFIG_SRCDIR([ssh.c])
@ -445,7 +445,7 @@ AC_CHECK_HEADERS(bstring.h crypt.h endian.h floatingpoint.h \
login_cap.h maillock.h netdb.h netgroup.h \
netinet/in_systm.h paths.h pty.h readpassphrase.h \
rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \
strings.h sys/strtio.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \
sys/mman.h sys/pstat.h sys/select.h sys/stat.h \
sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h \
sys/un.h time.h tmpdir.h ttyent.h usersec.h \

View File

@ -133,6 +133,9 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h> /* for MAP_ANONYMOUS */
#endif
#ifdef HAVE_SYS_STRTIO_H
#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
#endif
#include <netinet/in_systm.h> /* For typedefs */
#include <netinet/in.h> /* For IPv6 macros */