- (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.
This commit is contained in:
Ben Lindstrom 2002-03-08 03:11:07 +00:00
parent dc16354aaa
commit 7577fd83c1
3 changed files with 10 additions and 4 deletions

View File

@ -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 $

View 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 \

View File

@ -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