diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2008-06-20 17:33:15 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2008-06-20 17:33:15 +0000 |
commit | 18c17724544464260d0a74f9212dc80843f399d5 (patch) | |
tree | e31907cdb46ba3a2393fb780e6e03d430a019fc1 /configure.in | |
parent | 9233cccaf1fc75bd39fe3620bf423dd062d368d6 (diff) | |
download | httpd-18c17724544464260d0a74f9212dc80843f399d5.tar.gz |
Adopt conditional handling for the new AC_USE_SYSTEM_EXTENSIONS as of 2.60.
Submitted by: Arfrever Frehtes Taifersar Arahesis <arfrever.fta gmail.com>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@670003 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 752311c817..d5cdd17de2 100644 --- a/configure.in +++ b/configure.in @@ -338,8 +338,14 @@ INSTALL="\$(LIBTOOL) --mode=install \$(abs_srcdir)/build/install.sh -c" APACHE_SUBST(MKINSTALLDIRS) APACHE_SUBST(INSTALL) -dnl various OS checks that apparently set required flags +dnl Various OS checks that apparently set required flags +ifdef([AC_USE_SYSTEM_EXTENSIONS], [ AC_USE_SYSTEM_EXTENSIONS +], [ +AC_AIX +AC_MINIX +]) + AC_ISC_POSIX # Ensure that satisfactory versions of apr and apr-util are |