]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (bal) Add in check for rpc/types.h since it is needed on
authorBen Lindstrom <mouring@eviladmin.org>
Fri, 8 Mar 2002 03:11:07 +0000 (03:11 +0000)
committerBen Lindstrom <mouring@eviladmin.org>
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 ba6a83f7fc4253d86d645857b065985042f6b2d4..be448a24582959a1d6019d2311ec4d343daf3c24 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
  - Wrote replacements for strlcpy and mkdtemp
  - Released 1.0pre1
 
-$Id: ChangeLog,v 1.1914 2002/03/07 17:49:39 mouring Exp $
+$Id: ChangeLog,v 1.1915 2002/03/08 03:11:07 mouring Exp $
index 84229411e415b3a030cff6393d0fbffd45687702..5e4e659a93cb9854d842b904dd6b5f30b4a5459c 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.23 2002/02/27 06:12:35 tim Exp $
+# $Id: configure.ac,v 1.24 2002/03/08 03:11:08 mouring Exp $
 
 AC_INIT
 AC_CONFIG_SRCDIR([ssh.c])
@@ -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 77ca2281b4d30b887b05cca51abf29058296a243..ac2d966919655d523cd410ba5992deee86756a97 100644 (file)
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
 #ifndef _DEFINES_H
 #define _DEFINES_H
 
-/* $Id: defines.h,v 1.80 2002/02/26 16:40:49 tim Exp $ */
+/* $Id: defines.h,v 1.81 2002/03/08 03:11:08 mouring 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_TYPES_H
+# include <rpc/types.h> /* For INADDR_LOOPBACK */
+#endif
 #ifdef HAVE_SYS_UN_H
 # include <sys/un.h> /* For sockaddr_un */
 #endif