summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-02-13 10:14:52 -0800
committerTim Rice <tim@multitalents.net>2002-02-13 10:14:52 -0800
commit57e3fa8c957fb2f991dbe90f38c6717870d5d5df (patch)
tree31a4f910a2968fa58d97bb490de2c14897446b89
parent150c8b557892f21ca87c5d36865d00724712c6a9 (diff)
Add rpc/rpc.h for INADDR_LOOPBACK on SCO OSR3
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac3
-rw-r--r--defines.h5
3 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 70cc5278..eaffef49 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -37,6 +37,8 @@
- (djm) Sync openbsd-compat with OpenBSD CVS too
- (djm) Bug #106: Add --without-rpath configure option. Patch from
Nicolas.Williams@ubsw.com
+ - (tim) [configure.ac, defines.h ] add rpc/rpc.h for INADDR_LOOPBACK
+ on SCO OSR3
20020210
- (djm) OpenBSD CVS Sync
@@ -7584,4 +7586,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1850 2002/02/13 12:06:56 djm Exp $
+$Id: ChangeLog,v 1.1851 2002/02/13 18:14:52 tim Exp $
diff --git a/configure.ac b/configure.ac
index 62eeac0b..873214f7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.18 2002/02/13 12:06:57 djm Exp $
+# $Id: configure.ac,v 1.19 2002/02/13 18:14:53 tim Exp $
AC_INIT
AC_CONFIG_SRCDIR([ssh.c])
@@ -395,6 +395,7 @@ AC_CHECK_HEADERS(bstring.h crypt.h endian.h floatingpoint.h \
getopt.h glob.h lastlog.h limits.h login.h \
login_cap.h maillock.h netdb.h netgroup.h \
netinet/in_systm.h paths.h poll.h pty.h \
+ rpc/rpc.h \
security/pam_appl.h shadow.h stddef.h stdint.h \
strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \
sys/poll.h sys/queue.h sys/select.h sys/stat.h \
diff --git a/defines.h b/defines.h
index 9236962b..b5d254b3 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
#ifndef _DEFINES_H
#define _DEFINES_H
-/* $Id: defines.h,v 1.78 2002/01/23 06:54:31 mouring Exp $ */
+/* $Id: defines.h,v 1.79 2002/02/13 18:14:53 tim Exp $ */
/* Necessary headers */
@@ -11,6 +11,9 @@
#include <netinet/in_systm.h> /* For typedefs */
#include <netinet/in.h> /* For IPv6 macros */
#include <netinet/ip.h> /* For IPTOS macros */
+#ifdef HAVE_RPC_RPC_H
+# include <rpc/rpc.h> /* For INADDR_LOOPBACK on SCO OSR3 */
+#endif
#ifdef HAVE_SYS_UN_H
# include <sys/un.h> /* For sockaddr_un */
#endif