diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2004-08-02 04:38:16 +0200 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2004-08-02 04:38:16 +0200 |
commit | 252e7ae86c42c531b7ad226fe8c6f7ce1aa9c37e (patch) | |
tree | d6102cda256f10ea06e01bbda37bb65c075e6614 /configure.in | |
parent | developer/modules.xml.ja exists now (diff) | |
download | apache2-252e7ae86c42c531b7ad226fe8c6f7ce1aa9c37e.tar.xz apache2-252e7ae86c42c531b7ad226fe8c6f7ce1aa9c37e.zip |
Teach apxs how to find ap{ru}-$AP{RU}_MAJOR_VERSION-config
(httpd-2.1+ will be APR 1.0 or higher which uses this convention.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104443 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 0922b924c9..944159c7a7 100644 --- a/configure.in +++ b/configure.in @@ -85,6 +85,7 @@ APR_ADDTO(INCLUDES, `$apr_config --includes`) SHLIBPATH_VAR=`$apr_config --shlib-path-var` APR_BINDIR=`$apr_config --bindir` APR_INCLUDEDIR=`$apr_config --includedir` +APR_VERSION=`$apr_config --version` echo $ac_n "${nl}Configuring Apache Portable Runtime Utility library...${nl}" @@ -107,6 +108,7 @@ APR_ADDTO(LDFLAGS, `$apu_config --ldflags`) APR_ADDTO(INCLUDES, `$apu_config --includes`) APU_BINDIR=`$apu_config --bindir` APU_INCLUDEDIR=`$apu_config --includedir` +APU_VERSION=`$apu_config --version` dnl In case we picked up CC and CPP from APR, get that info into the dnl config cache so that PCRE uses it. Otherwise, CC and CPP used for |