mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-23 18:23:25 +08:00
- (dtucker) HP-UX needs to include <sys/strtio.h> for TIOCSBRK
This commit is contained in:
parent
eff041d19e
commit
5d0ccf3b24
@ -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 $
|
||||
|
@ -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 \
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user