summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authordjm <djm>2005-02-24 01:12:34 +0000
committerdjm <djm>2005-02-24 01:12:34 +0000
commitbdc487b7d1b86adff266e0b053d622890e7d7730 (patch)
tree75f7175e79b4a466a044b960d3b4874d8517c862 /configure.ac
parentf1c87592cb248d5a323537173ccc36b936946011 (diff)
downloadopenssh-bdc487b7d1b86adff266e0b053d622890e7d7730.tar.gz
- (djm) [configure.ac] in_addr_t test needs sys/types.h too
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 3535b976..fae62d60 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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(