]> andersk Git - openssh.git/commitdiff
- (djm) [configure.ac] in_addr_t test needs sys/types.h too
authordjm <djm>
Thu, 24 Feb 2005 01:12:34 +0000 (01:12 +0000)
committerdjm <djm>
Thu, 24 Feb 2005 01:12:34 +0000 (01:12 +0000)
ChangeLog
configure.ac

index 0f01db99ea0d187e1e5e1689b4f47e556e2069c8..55d7e8453ca555c9a1d62243ffa48e1a593df615 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 73db21644052978e9e0156597607eec1a02ebc46..b7632ae4121554d89ff19e6dd5572b03525a9f46 100644 (file)
@@ -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(
This page took 1.293987 seconds and 5 git commands to generate.