diff options
author | Wilfredo Sanchez <wsanchez@apache.org> | 2002-11-29 00:31:37 +0100 |
---|---|---|
committer | Wilfredo Sanchez <wsanchez@apache.org> | 2002-11-29 00:31:37 +0100 |
commit | 5eb2ee00c039147777daa018fe9b22cacef1c09f (patch) | |
tree | fd951f46994893ff20d70b649f5f21fc474f8ba0 /buildconf | |
parent | Don't include apr_network.m4 and apr_threads.m4; we don't use them. (diff) | |
download | apache2-5eb2ee00c039147777daa018fe9b22cacef1c09f.tar.xz apache2-5eb2ee00c039147777daa018fe9b22cacef1c09f.zip |
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-x | buildconf | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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}) |