diff options
author | Ben Laurie <ben@apache.org> | 1999-12-19 17:36:19 +0100 |
---|---|---|
committer | Ben Laurie <ben@apache.org> | 1999-12-19 17:36:19 +0100 |
commit | c0dd97c44ca872aeb9256086511957b5c495a9d1 (patch) | |
tree | 2e3739a0befee18e33f111c854d52db27c75b7fb /buildconf | |
parent | minor fixes (diff) | |
download | apache2-c0dd97c44ca872aeb9256086511957b5c495a9d1.tar.xz apache2-c0dd97c44ca872aeb9256086511957b5c495a9d1.zip |
Build APR, too.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84318 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -105,3 +105,28 @@ else echo "buildconf: created or modified configure" fi +# Now do APR... + +echo "buildconf: setting up APR" + +cd lib/apr + +mv configure configure.old 2>/dev/null +autoconf +if cmp configure.old configure > /dev/null 2>&1; then + echo "buildconf: keeping configure" + mv configure.old configure +else + echo "buildconf: created or modified configure" +fi + +cd ../.. + +# Now run the configs... + +rm config.cache +./configure + +cd lib/apr +rm config.cache +./configure |