summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-03-08 03:11:07 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-03-08 03:11:07 +0000
commit7577fd83c16ef3415b61ca1bea1b14e1ab8e4228 (patch)
tree893ffc249857b3f2bb4f166434efe05ac9405fb8
parentdc16354aaaba0391b3feb465dba2a5c27ffce9ba (diff)
- (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.
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac4
-rw-r--r--defines.h5
3 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ba6a83f7..be448a24 100644
--- 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
@@ -7815,4 +7818,4 @@
- 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 $
diff --git a/configure.ac b/configure.ac
index 84229411..5e4e659a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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 \
diff --git a/defines.h b/defines.h
index 77ca2281..ac2d9669 100644
--- 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