summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorWilfredo Sanchez <wsanchez@apache.org>2002-11-28 23:31:37 +0000
committerWilfredo Sanchez <wsanchez@apache.org>2002-11-28 23:31:37 +0000
commit5eb2ee00c039147777daa018fe9b22cacef1c09f (patch)
treefd951f46994893ff20d70b649f5f21fc474f8ba0 /buildconf
parentc0d64a95bd8dc259e6125847f5236819ac5d803e (diff)
downloadhttpd-5eb2ee00c039147777daa018fe9b22cacef1c09f.tar.gz
Changes to reduce dependency on in-tree apr and apr-util.
Change AC_CONFIG_AUX_DIR in configure to build from srclib/apr/build. Have buildconf copy the needed files (config.guess, config.sub, PrintPath) from srclib/apr/build to build. Change binbuild.sh to stop using srclib/apr. This gets to to where ./configure --with-apr --with-apr-util actually works without an in-tree apr and apr-util, though we still need them in-tree to run buildconf. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97671 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf5
1 files changed, 5 insertions, 0 deletions
diff --git a/buildconf b/buildconf
index a16aa60cec..7e1cc7de48 100755
--- a/buildconf
+++ b/buildconf
@@ -117,6 +117,11 @@ echo rebuilding $aprutil_configure
exit 1
}
+echo copying build files
+cp srclib/apr/build/config.guess build
+cp srclib/apr/build/config.sub build
+cp srclib/apr/build/PrintPath build
+
echo rebuilding $pcre_configure
(cd srclib/pcre && ${AUTOCONF:-autoconf})