]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Add rpc/rpc.h for INADDR_LOOPBACK on SCO OSR3
authorTim Rice <tim@multitalents.net>
Wed, 13 Feb 2002 18:14:52 +0000 (10:14 -0800)
committerTim Rice <tim@multitalents.net>
Wed, 13 Feb 2002 18:14:52 +0000 (10:14 -0800)
ChangeLog
configure.ac
defines.h

index 70cc5278f89097886d3da3abc2153fc6c4e00384..eaffef4934ec29b8c579804183d1cc9be3750a36 100644 (file)
--- 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
  - 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 $
index 62eeac0b6eca4b1713cba239e959fa99e6bae528..873214f714239c47d1ca7e272a40129544342fb9 100644 (file)
@@ -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 \
index 9236962babb0a8c248c11e586b4d5c7def4d0457..b5d254b317c531dc7d85e6fdd2808480b6cae6d4 100644 (file)
--- 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