]> andersk Git - openssh.git/commitdiff
- (bal) Add in check for rpc/types.h since it is needed on
authormouring <mouring>
Fri, 8 Mar 2002 03:11:07 +0000 (03:11 +0000)
committermouring <mouring>
Fri, 8 Mar 2002 03:11:07 +0000 (03:11 +0000)
   some platforms for INADDR_LOOPBACK.  We should retest
   SCO 3 to see if this fixes their problem also.

ChangeLog
configure.ac
defines.h

index 20570b5ba4232f26bf5fa20faa5afaf277fd244b..88b80ec6873eedcc192dd685ba040682d8cc3e9b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,9 @@
      OpenSSH_3.1
  - (djm) Update RPM spec files with new version number
  - (bal) Updated INSTALL to reflect 0.9.6 OpenSSL requirement
+ - (bal) Add in check for rpc/types.h since it is needed on
+   some platforms for INADDR_LOOPBACK.  We should retest
+   SCO 3 to see if this fixes their problem also.
 
 20020305
    - stevesk@cvs.openbsd.org 2002/03/02 09:34:42
index 88841259b521be337d32a18a132ee7101663f5f2..7797269044b2cbab872f98f421256e1333107d3a 100644 (file)
@@ -325,7 +325,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 \
-       security/pam_appl.h shadow.h stddef.h stdint.h \
+       rpc/types.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 \
        sys/stropts.h sys/sysmacros.h sys/time.h \
index 4caea9b2c77255aafbfd1c4568609cd1513b8b8b..8f73ac32cfa71b3234d9503f7fdb3a5a001abad8 100644 (file)
--- a/defines.h
+++ b/defines.h
@@ -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_TYPES_H
+# include <rpc/types.h> /* For INADDR_LOOPBACK */
+#endif
 #ifdef HAVE_SYS_UN_H
 # include <sys/un.h> /* For sockaddr_un */
 #endif
This page took 1.061609 seconds and 5 git commands to generate.