summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 ba6a83f7f..be448a245 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,9 @@
14 OpenSSH_3.1 14 OpenSSH_3.1
15 - (djm) Update RPM spec files with new version number 15 - (djm) Update RPM spec files with new version number
16 - (bal) Updated INSTALL to reflect 0.9.6 OpenSSL requirement 16 - (bal) Updated INSTALL to reflect 0.9.6 OpenSSL requirement
17 - (bal) Add in check for rpc/types.h since it is needed on
18 some platforms for INADDR_LOOPBACK. We should retest
19 SCO 3 to see if this fixes their problem also.
17 20
1820020305 2120020305
19 - stevesk@cvs.openbsd.org 2002/03/02 09:34:42 22 - stevesk@cvs.openbsd.org 2002/03/02 09:34:42
@@ -7815,4 +7818,4 @@
7815 - Wrote replacements for strlcpy and mkdtemp 7818 - Wrote replacements for strlcpy and mkdtemp
7816 - Released 1.0pre1 7819 - Released 1.0pre1
7817 7820
7818$Id: ChangeLog,v 1.1914 2002/03/07 17:49:39 mouring Exp $ 7821$Id: ChangeLog,v 1.1915 2002/03/08 03:11:07 mouring Exp $
diff --git a/configure.ac b/configure.ac
index 84229411e..5e4e659a9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.23 2002/02/27 06:12:35 tim Exp $ 1# $Id: configure.ac,v 1.24 2002/03/08 03:11:08 mouring Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -325,7 +325,7 @@ AC_CHECK_HEADERS(bstring.h crypt.h endian.h floatingpoint.h \
325 getopt.h glob.h lastlog.h limits.h login.h \ 325 getopt.h glob.h lastlog.h limits.h login.h \
326 login_cap.h maillock.h netdb.h netgroup.h \ 326 login_cap.h maillock.h netdb.h netgroup.h \
327 netinet/in_systm.h paths.h poll.h pty.h \ 327 netinet/in_systm.h paths.h poll.h pty.h \
328 security/pam_appl.h shadow.h stddef.h stdint.h \ 328 rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
329 strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \ 329 strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \
330 sys/poll.h sys/queue.h sys/select.h sys/stat.h \ 330 sys/poll.h sys/queue.h sys/select.h sys/stat.h \
331 sys/stropts.h sys/sysmacros.h sys/time.h \ 331 sys/stropts.h sys/sysmacros.h sys/time.h \
diff --git a/defines.h b/defines.h
index 77ca2281b..ac2d96691 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
1#ifndef _DEFINES_H 1#ifndef _DEFINES_H
2#define _DEFINES_H 2#define _DEFINES_H
3 3
4/* $Id: defines.h,v 1.80 2002/02/26 16:40:49 tim Exp $ */ 4/* $Id: defines.h,v 1.81 2002/03/08 03:11:08 mouring Exp $ */
5 5
6/* Necessary headers */ 6/* Necessary headers */
7 7
@@ -11,6 +11,9 @@
11#include <netinet/in_systm.h> /* For typedefs */ 11#include <netinet/in_systm.h> /* For typedefs */
12#include <netinet/in.h> /* For IPv6 macros */ 12#include <netinet/in.h> /* For IPv6 macros */
13#include <netinet/ip.h> /* For IPTOS macros */ 13#include <netinet/ip.h> /* For IPTOS macros */
14#ifdef HAVE_RPC_TYPES_H
15# include <rpc/types.h> /* For INADDR_LOOPBACK */
16#endif
14#ifdef HAVE_SYS_UN_H 17#ifdef HAVE_SYS_UN_H
15# include <sys/un.h> /* For sockaddr_un */ 18# include <sys/un.h> /* For sockaddr_un */
16#endif 19#endif