]> andersk Git - openssh.git/commitdiff
[configure.ac includes.h] add <sys/ptms.h> for grantpt() and friends.
authortim <tim>
Tue, 27 Jan 2004 03:03:39 +0000 (03:03 +0000)
committertim <tim>
Tue, 27 Jan 2004 03:03:39 +0000 (03:03 +0000)
ChangeLog
configure.ac
includes.h

index b7f881baaae53230021c7d8e46df668517be730b..31fed159f01cdf0160e982ecaa942b589afa959a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
  - (tim) Typo in regress/README.regress
  - (tim) [regress/test-exec.sh] RhostsAuthentication is deprecated.
  - (tim) [defines.h] Add defines for HFIXEDSZ and T_SIG
+ - (tim) [configure.ac includes.h] add <sys/ptms.h> for grantpt() and friends.
 
 20040124
  - (djm) Typo in openbsd-compat/bsd-openpty.c; from wendyp AT cray.com
index a639218639ecff9ce3a99d429be0f5e2ca2abdf2..32e046c609694df550e8857efb8359d3c6f61ba9 100644 (file)
@@ -474,7 +474,7 @@ AC_CHECK_HEADERS(bstring.h crypt.h endian.h features.h floatingpoint.h \
        netinet/in_systm.h pam/pam_appl.h paths.h pty.h readpassphrase.h \
        rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
        strings.h sys/strtio.h sys/audit.h sys/bitypes.h sys/bsdtty.h \
-       sys/cdefs.h sys/mman.h sys/pstat.h sys/select.h sys/stat.h \
+       sys/cdefs.h sys/mman.h sys/pstat.h sys/ptms.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 \
        util.h utime.h utmp.h utmpx.h vis.h)
index 764bd57febe1e3d7f6a2cb294393e3c182cbb8d3..d2cc882131aef07d2d155a5a773e2b4f437ada89 100644 (file)
@@ -134,6 +134,9 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
 #ifdef HAVE_SYS_STRTIO_H
 #include <sys/strtio.h>        /* for TIOCCBRK on HP-UX */
 #endif
+#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
+#include <sys/ptms.h>  /* for grantpt() and friends */
+#endif
 
 #include <netinet/in_systm.h> /* For typedefs */
 #include <netinet/in.h> /* For IPv6 macros */
This page took 0.408481 seconds and 5 git commands to generate.