]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Revert r1869541 and always run httpd's buildconf against the Debian APR,
authorJoe Orton <jorton@apache.org>
Fri, 8 Nov 2019 11:23:19 +0000 (11:23 +0000)
committerJoe Orton <jorton@apache.org>
Fri, 8 Nov 2019 11:23:19 +0000 (11:23 +0000)
which does include the *.m4 files.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1869543 13f79535-47bb-0310-9956-ffa450edef68

test/travis_run_linux.sh

index dd89e325aff043cc3911571ac87ac93646366139..37b74877fe808a1e93a7b7ad4c69dc1b92a6c281 100755 (executable)
@@ -1,10 +1,7 @@
 #!/bin/bash -ex
-if test -v APR_VERSION -a -v APU_VERSION; then
-    ./buildconf --with-apr=$HOME/root/apr-${APR_VERSION}/bin/apr-1-config \
-                --with-apr-util=$HOME/root/apu-${APU_VERSION}/bin/apu-1-config
-else
-    ./buildconf --with-apr=/usr/bin/apr-1-config
-fi
+### Installed apr/apr-util don't include the *.m4 files but the
+### Debian packages helpfully install them, so use the system APR to buildconf
+./buildconf --with-apr=/usr/bin/apr-1-config
 # For trunk, "make check" is sufficient to run the test suite.
 # For 2.4.x, the test suite must be run manually
 if test ! -v SKIP_TESTING; then