diff options
author | fielding <fielding@13f79535-47bb-0310-9956-ffa450edef68> | 2001-03-24 06:00:40 +0000 |
---|---|---|
committer | fielding <fielding@13f79535-47bb-0310-9956-ffa450edef68> | 2001-03-24 06:00:40 +0000 |
commit | 4618d710ea8313b2a1f731d5aeeb0aa9bfab5df4 (patch) | |
tree | d3cbaa33c01b04e758a4226e6d63a6d1e125dc13 /configure.in | |
parent | 4487a1234152852eef392711b27fbc6c907cc4b8 (diff) | |
download | libapr-4618d710ea8313b2a1f731d5aeeb0aa9bfab5df4.tar.gz |
Remove the need for aclocal.m4 by copying libtool.m4 into build and
directly including the macro files into configure.in.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61380 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 155c4c197..5174518a2 100644 --- a/configure.in +++ b/configure.in @@ -7,6 +7,12 @@ AC_INIT(build/apr_common.m4) AC_CONFIG_HEADER(include/arch/unix/apr_private.h) AC_CONFIG_AUX_DIR(build) +sinclude(build/apr_common.m4) +sinclude(build/apr_network.m4) +sinclude(build/apr_threads.m4) +sinclude(build/apr_hints.m4) +sinclude(build/libtool.m4) + AC_CANONICAL_SYSTEM echo "Configuring APR library" OS=$host |