diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | includes.h | 3 |
3 files changed, 7 insertions, 3 deletions
@@ -2,6 +2,7 @@ | |||
2 | - (tim) Typo in regress/README.regress | 2 | - (tim) Typo in regress/README.regress |
3 | - (tim) [regress/test-exec.sh] RhostsAuthentication is deprecated. | 3 | - (tim) [regress/test-exec.sh] RhostsAuthentication is deprecated. |
4 | - (tim) [defines.h] Add defines for HFIXEDSZ and T_SIG | 4 | - (tim) [defines.h] Add defines for HFIXEDSZ and T_SIG |
5 | - (tim) [configure.ac includes.h] add <sys/ptms.h> for grantpt() and friends. | ||
5 | 6 | ||
6 | 20040124 | 7 | 20040124 |
7 | - (djm) Typo in openbsd-compat/bsd-openpty.c; from wendyp AT cray.com | 8 | - (djm) Typo in openbsd-compat/bsd-openpty.c; from wendyp AT cray.com |
@@ -1734,4 +1735,4 @@ | |||
1734 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1735 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1735 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1736 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1736 | 1737 | ||
1737 | $Id: ChangeLog,v 1.3190 2004/01/27 00:02:17 tim Exp $ | 1738 | $Id: ChangeLog,v 1.3191 2004/01/27 03:03:39 tim Exp $ |
diff --git a/configure.ac b/configure.ac index 51be4534b..3b04182d5 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.188 2004/01/24 02:35:16 tim Exp $ | 1 | # $Id: configure.ac,v 1.189 2004/01/27 03:03:39 tim Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -474,7 +474,7 @@ AC_CHECK_HEADERS(bstring.h crypt.h endian.h features.h floatingpoint.h \ | |||
474 | netinet/in_systm.h pam/pam_appl.h paths.h pty.h readpassphrase.h \ | 474 | netinet/in_systm.h pam/pam_appl.h paths.h pty.h readpassphrase.h \ |
475 | rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \ | 475 | rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \ |
476 | strings.h sys/strtio.h sys/audit.h sys/bitypes.h sys/bsdtty.h \ | 476 | strings.h sys/strtio.h sys/audit.h sys/bitypes.h sys/bsdtty.h \ |
477 | sys/cdefs.h sys/mman.h sys/pstat.h sys/select.h sys/stat.h \ | 477 | sys/cdefs.h sys/mman.h sys/pstat.h sys/ptms.h sys/select.h sys/stat.h \ |
478 | sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h \ | 478 | sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h \ |
479 | sys/un.h time.h tmpdir.h ttyent.h usersec.h \ | 479 | sys/un.h time.h tmpdir.h ttyent.h usersec.h \ |
480 | util.h utime.h utmp.h utmpx.h vis.h) | 480 | util.h utime.h utmp.h utmpx.h vis.h) |
diff --git a/includes.h b/includes.h index 764bd57fe..d2cc88213 100644 --- a/includes.h +++ b/includes.h | |||
@@ -134,6 +134,9 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } | |||
134 | #ifdef HAVE_SYS_STRTIO_H | 134 | #ifdef HAVE_SYS_STRTIO_H |
135 | #include <sys/strtio.h> /* for TIOCCBRK on HP-UX */ | 135 | #include <sys/strtio.h> /* for TIOCCBRK on HP-UX */ |
136 | #endif | 136 | #endif |
137 | #if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX) | ||
138 | #include <sys/ptms.h> /* for grantpt() and friends */ | ||
139 | #endif | ||
137 | 140 | ||
138 | #include <netinet/in_systm.h> /* For typedefs */ | 141 | #include <netinet/in_systm.h> /* For typedefs */ |
139 | #include <netinet/in.h> /* For IPv6 macros */ | 142 | #include <netinet/in.h> /* For IPv6 macros */ |