diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,4 +1,7 @@ | |||
1 | 20050222 | 1 | 20050222 |
2 | - (djm) [configure.ac] in_addr_t test needs sys/types.h too | ||
3 | |||
4 | 20050222 | ||
2 | - (dtucker) [uidswap.c] Skip uid restore test on Cygwin. Patch from | 5 | - (dtucker) [uidswap.c] Skip uid restore test on Cygwin. Patch from |
3 | vinschen at redhat.com. | 6 | vinschen at redhat.com. |
4 | 7 | ||
@@ -2160,4 +2163,4 @@ | |||
2160 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 2163 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
2161 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 2164 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
2162 | 2165 | ||
2163 | $Id: ChangeLog,v 1.3662 2005/02/22 06:57:13 dtucker Exp $ | 2166 | $Id: ChangeLog,v 1.3663 2005/02/24 01:12:34 djm Exp $ |
diff --git a/configure.ac b/configure.ac index 3535b9761..fae62d609 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.246 2005/02/20 12:27:11 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.247 2005/02/24 01:12:35 djm Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -1877,7 +1877,9 @@ TYPE_SOCKLEN_T | |||
1877 | 1877 | ||
1878 | AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>]) | 1878 | AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>]) |
1879 | 1879 | ||
1880 | AC_CHECK_TYPES(in_addr_t,,,[#include <netinet/in.h>]) | 1880 | AC_CHECK_TYPES(in_addr_t,,, |
1881 | [#include <sys/types.h> | ||
1882 | #include <netinet/in.h>]) | ||
1881 | 1883 | ||
1882 | AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [ | 1884 | AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [ |
1883 | AC_TRY_COMPILE( | 1885 | AC_TRY_COMPILE( |