- (djm) [configure.ac] in_addr_t test needs sys/types.h too

This commit is contained in:
Damien Miller 2005-02-24 12:12:34 +11:00
parent 2ea9b18918
commit 848b993639
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,6 @@
20050222
- (djm) [configure.ac] in_addr_t test needs sys/types.h too
20050222
- (dtucker) [uidswap.c] Skip uid restore test on Cygwin. Patch from
vinschen at redhat.com.
@ -2160,4 +2163,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3662 2005/02/22 06:57:13 dtucker Exp $
$Id: ChangeLog,v 1.3663 2005/02/24 01:12:34 djm Exp $

View File

@ -1,4 +1,4 @@
# $Id: configure.ac,v 1.246 2005/02/20 12:27:11 dtucker Exp $
# $Id: configure.ac,v 1.247 2005/02/24 01:12:35 djm Exp $
#
# Copyright (c) 1999-2004 Damien Miller
#
@ -1877,7 +1877,9 @@ TYPE_SOCKLEN_T
AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
AC_CHECK_TYPES(in_addr_t,,,[#include <netinet/in.h>])
AC_CHECK_TYPES(in_addr_t,,,
[#include <sys/types.h>
#include <netinet/in.h>])
AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
AC_TRY_COMPILE(