Add rpc/rpc.h for INADDR_LOOPBACK on SCO OSR3

This commit is contained in:
Tim Rice 2002-02-13 10:14:52 -08:00
parent 150c8b5578
commit 57e3fa8c95
3 changed files with 9 additions and 3 deletions

View File

@ -37,6 +37,8 @@
- (djm) Sync openbsd-compat with OpenBSD CVS too
- (djm) Bug #106: Add --without-rpath configure option. Patch from
Nicolas.Williams@ubsw.com
- (tim) [configure.ac, defines.h ] add rpc/rpc.h for INADDR_LOOPBACK
on SCO OSR3
20020210
- (djm) OpenBSD CVS Sync
@ -7584,4 +7586,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1850 2002/02/13 12:06:56 djm Exp $
$Id: ChangeLog,v 1.1851 2002/02/13 18:14:52 tim Exp $

View File

@ -1,4 +1,4 @@
# $Id: configure.ac,v 1.18 2002/02/13 12:06:57 djm Exp $
# $Id: configure.ac,v 1.19 2002/02/13 18:14:53 tim Exp $
AC_INIT
AC_CONFIG_SRCDIR([ssh.c])
@ -395,6 +395,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 \
rpc/rpc.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 \

View File

@ -1,7 +1,7 @@
#ifndef _DEFINES_H
#define _DEFINES_H
/* $Id: defines.h,v 1.78 2002/01/23 06:54:31 mouring Exp $ */
/* $Id: defines.h,v 1.79 2002/02/13 18:14:53 tim 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_RPC_H
# include <rpc/rpc.h> /* For INADDR_LOOPBACK on SCO OSR3 */
#endif
#ifdef HAVE_SYS_UN_H
# include <sys/un.h> /* For sockaddr_un */
#endif