diff options
author | Tim Rice <tim@multitalents.net> | 2005-06-02 20:28:29 -0700 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2005-06-02 20:28:29 -0700 |
commit | fcc7ff1de8db0647357a5846e4d629f4ca54a6b9 (patch) | |
tree | 9115ef0b1fe1f11321bd4d7dbf2aab87ac6d9c82 /configure.ac | |
parent | 4dbacffe7bd6160c66c89093969eba469fb90b55 (diff) |
- (tim) [configure.ac] Some platforms need sys/types.h for arpa/nameser.h.
Take AC_CHECK_HEADERS test out of ultrix section. It caused other platforms
to skip builtin standard includes tests. (first AC_CHECK_HEADERS test
must be run on all platforms) Add missing ;; to case statement. OK dtucker@
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 61132acd0..bca35a633 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.271 2005/06/02 03:09:28 tim Exp $ | 1 | # $Id: configure.ac,v 1.272 2005/06/03 03:28:29 tim Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -479,7 +479,8 @@ mips-sony-bsd|mips-sony-newsos4) | |||
479 | AC_DEFINE(BROKEN_GETGROUPS, [], [getgroups(0,NULL) will return -1]) | 479 | AC_DEFINE(BROKEN_GETGROUPS, [], [getgroups(0,NULL) will return -1]) |
480 | AC_DEFINE(BROKEN_MMAP, [], [Ultrix mmap can't map files]) | 480 | AC_DEFINE(BROKEN_MMAP, [], [Ultrix mmap can't map files]) |
481 | AC_DEFINE(NEED_SETPRGP, [], [Need setpgrp to acquire controlling tty]) | 481 | AC_DEFINE(NEED_SETPRGP, [], [Need setpgrp to acquire controlling tty]) |
482 | AC_CHECK_HEADERS(sys/syslog.h) | 482 | AC_DEFINE(HAVE_SYS_SYSLOG_H, 1, [Force use of sys/syslog.h on Ultrix]) |
483 | ;; | ||
483 | esac | 484 | esac |
484 | 485 | ||
485 | # Allow user to specify flags | 486 | # Allow user to specify flags |
@@ -2540,7 +2541,8 @@ int main() | |||
2540 | ]) | 2541 | ]) |
2541 | AC_CHECK_FUNCS(_getshort _getlong) | 2542 | AC_CHECK_FUNCS(_getshort _getlong) |
2542 | AC_CHECK_DECLS([_getshort, _getlong], , , | 2543 | AC_CHECK_DECLS([_getshort, _getlong], , , |
2543 | [#include <arpa/nameser.h>]) | 2544 | [#include <sys/types.h> |
2545 | #include <arpa/nameser.h>]) | ||
2544 | AC_CHECK_MEMBER(HEADER.ad, | 2546 | AC_CHECK_MEMBER(HEADER.ad, |
2545 | [AC_DEFINE(HAVE_HEADER_AD)],, | 2547 | [AC_DEFINE(HAVE_HEADER_AD)],, |
2546 | [#include <arpa/nameser.h>]) | 2548 | [#include <arpa/nameser.h>]) |