- (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:
parent
dc16354aaa
commit
7577fd83c1
|
@ -14,6 +14,9 @@
|
||||||
OpenSSH_3.1
|
OpenSSH_3.1
|
||||||
- (djm) Update RPM spec files with new version number
|
- (djm) Update RPM spec files with new version number
|
||||||
- (bal) Updated INSTALL to reflect 0.9.6 OpenSSL requirement
|
- (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
|
20020305
|
||||||
- stevesk@cvs.openbsd.org 2002/03/02 09:34:42
|
- stevesk@cvs.openbsd.org 2002/03/02 09:34:42
|
||||||
|
@ -7815,4 +7818,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- 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 $
|
||||||
|
|
|
@ -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_INIT
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
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 \
|
getopt.h glob.h lastlog.h limits.h login.h \
|
||||||
login_cap.h maillock.h netdb.h netgroup.h \
|
login_cap.h maillock.h netdb.h netgroup.h \
|
||||||
netinet/in_systm.h paths.h poll.h pty.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 \
|
strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \
|
||||||
sys/poll.h sys/queue.h sys/select.h sys/stat.h \
|
sys/poll.h sys/queue.h sys/select.h sys/stat.h \
|
||||||
sys/stropts.h sys/sysmacros.h sys/time.h \
|
sys/stropts.h sys/sysmacros.h sys/time.h \
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef _DEFINES_H
|
#ifndef _DEFINES_H
|
||||||
#define _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 */
|
/* Necessary headers */
|
||||||
|
|
||||||
|
@ -11,6 +11,9 @@
|
||||||
#include <netinet/in_systm.h> /* For typedefs */
|
#include <netinet/in_systm.h> /* For typedefs */
|
||||||
#include <netinet/in.h> /* For IPv6 macros */
|
#include <netinet/in.h> /* For IPv6 macros */
|
||||||
#include <netinet/ip.h> /* For IPTOS 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
|
#ifdef HAVE_SYS_UN_H
|
||||||
# include <sys/un.h> /* For sockaddr_un */
|
# include <sys/un.h> /* For sockaddr_un */
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue