diff options
author | Stefan Fritsch <sf@apache.org> | 2010-06-14 20:53:02 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2010-06-14 20:53:02 +0200 |
commit | ca23fa130c766ce0febf610b0e02ffbcab6bdb82 (patch) | |
tree | fe0eeea3e488c918c36cb6149c0cf1b93413f149 /configure.in | |
parent | Fix MPM event/libserf build problems: If libserf was installed during build, (diff) | |
download | apache2-ca23fa130c766ce0febf610b0e02ffbcab6bdb82.tar.xz apache2-ca23fa130c766ce0febf610b0e02ffbcab6bdb82.zip |
prevent an error message if an old autoconf without AC_PROG_CC_C99 is used but
print a meaningful warning instead
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@954588 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 252a3599cf..765f59506e 100644 --- a/configure.in +++ b/configure.in @@ -171,7 +171,7 @@ AC_PROG_CC AC_PROG_CPP dnl Try to get c99 support for variadic macros -AC_PROG_CC_C99 +ifdef([AC_PROG_CC_C99], [AC_PROG_CC_C99]) if test "x${cache_file}" = "x/dev/null"; then # Likewise, ensure that CC and CPP are passed through to the pcre |