diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 3 | ||||
-rw-r--r-- | defines.h | 5 |
3 files changed, 9 insertions, 3 deletions
@@ -37,6 +37,8 @@ | |||
37 | - (djm) Sync openbsd-compat with OpenBSD CVS too | 37 | - (djm) Sync openbsd-compat with OpenBSD CVS too |
38 | - (djm) Bug #106: Add --without-rpath configure option. Patch from | 38 | - (djm) Bug #106: Add --without-rpath configure option. Patch from |
39 | Nicolas.Williams@ubsw.com | 39 | Nicolas.Williams@ubsw.com |
40 | - (tim) [configure.ac, defines.h ] add rpc/rpc.h for INADDR_LOOPBACK | ||
41 | on SCO OSR3 | ||
40 | 42 | ||
41 | 20020210 | 43 | 20020210 |
42 | - (djm) OpenBSD CVS Sync | 44 | - (djm) OpenBSD CVS Sync |
@@ -7584,4 +7586,4 @@ | |||
7584 | - Wrote replacements for strlcpy and mkdtemp | 7586 | - Wrote replacements for strlcpy and mkdtemp |
7585 | - Released 1.0pre1 | 7587 | - Released 1.0pre1 |
7586 | 7588 | ||
7587 | $Id: ChangeLog,v 1.1850 2002/02/13 12:06:56 djm Exp $ | 7589 | $Id: ChangeLog,v 1.1851 2002/02/13 18:14:52 tim Exp $ |
diff --git a/configure.ac b/configure.ac index 62eeac0b6..873214f71 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.18 2002/02/13 12:06:57 djm Exp $ | 1 | # $Id: configure.ac,v 1.19 2002/02/13 18:14:53 tim Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -395,6 +395,7 @@ AC_CHECK_HEADERS(bstring.h crypt.h endian.h floatingpoint.h \ | |||
395 | getopt.h glob.h lastlog.h limits.h login.h \ | 395 | getopt.h glob.h lastlog.h limits.h login.h \ |
396 | login_cap.h maillock.h netdb.h netgroup.h \ | 396 | login_cap.h maillock.h netdb.h netgroup.h \ |
397 | netinet/in_systm.h paths.h poll.h pty.h \ | 397 | netinet/in_systm.h paths.h poll.h pty.h \ |
398 | rpc/rpc.h \ | ||
398 | security/pam_appl.h shadow.h stddef.h stdint.h \ | 399 | security/pam_appl.h shadow.h stddef.h stdint.h \ |
399 | strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \ | 400 | strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \ |
400 | sys/poll.h sys/queue.h sys/select.h sys/stat.h \ | 401 | sys/poll.h sys/queue.h sys/select.h sys/stat.h \ |
@@ -1,7 +1,7 @@ | |||
1 | #ifndef _DEFINES_H | 1 | #ifndef _DEFINES_H |
2 | #define _DEFINES_H | 2 | #define _DEFINES_H |
3 | 3 | ||
4 | /* $Id: defines.h,v 1.78 2002/01/23 06:54:31 mouring Exp $ */ | 4 | /* $Id: defines.h,v 1.79 2002/02/13 18:14:53 tim Exp $ */ |
5 | 5 | ||
6 | /* Necessary headers */ | 6 | /* Necessary headers */ |
7 | 7 | ||
@@ -11,6 +11,9 @@ | |||
11 | #include <netinet/in_systm.h> /* For typedefs */ | 11 | #include <netinet/in_systm.h> /* For typedefs */ |
12 | #include <netinet/in.h> /* For IPv6 macros */ | 12 | #include <netinet/in.h> /* For IPv6 macros */ |
13 | #include <netinet/ip.h> /* For IPTOS macros */ | 13 | #include <netinet/ip.h> /* For IPTOS macros */ |
14 | #ifdef HAVE_RPC_RPC_H | ||
15 | # include <rpc/rpc.h> /* For INADDR_LOOPBACK on SCO OSR3 */ | ||
16 | #endif | ||
14 | #ifdef HAVE_SYS_UN_H | 17 | #ifdef HAVE_SYS_UN_H |
15 | # include <sys/un.h> /* For sockaddr_un */ | 18 | # include <sys/un.h> /* For sockaddr_un */ |
16 | #endif | 19 | #endif |