diff options
author | gstein <gstein@13f79535-47bb-0310-9956-ffa450edef68> | 2002-08-22 20:34:16 +0000 |
---|---|---|
committer | gstein <gstein@13f79535-47bb-0310-9956-ffa450edef68> | 2002-08-22 20:34:16 +0000 |
commit | 67584aacf12efb993595ffdc502db6c259282c5b (patch) | |
tree | 7bb7cd61fb962fe1367c61c15324241d6f4eb245 /build/apr_common.m4 | |
parent | 32fbc220fa4eb0f3ab6467001ca2d3a5f4f3adc6 (diff) | |
download | libapr-67584aacf12efb993595ffdc502db6c259282c5b.tar.gz |
* substitute APR_MAJOR_VERSION to the Makefile so that other
substitutions can refer to it (eg. APR_LIBNAME)
* add a param to APR_ENABLE_LAYOUT to specify the default ("apr" in
our case, not "Apache")
* change the default APR layout to support parallel installation;
rename the old layout to "classic"
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63826 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/apr_common.m4')
-rw-r--r-- | build/apr_common.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/apr_common.m4 b/build/apr_common.m4 index a37ade4ff..c46a03eed 100644 --- a/build/apr_common.m4 +++ b/build/apr_common.m4 @@ -707,7 +707,7 @@ AC_DEFUN(APR_LAYOUT,[ ])dnl dnl -dnl APR_ENABLE_LAYOUT +dnl APR_ENABLE_LAYOUT(default layout name) dnl AC_DEFUN(APR_ENABLE_LAYOUT,[ AC_ARG_ENABLE(layout, @@ -716,7 +716,7 @@ AC_ARG_ENABLE(layout, ]) if test -z "$LAYOUT"; then - LAYOUT="Apache" + LAYOUT="$1" fi APR_LAYOUT($srcdir/config.layout, $LAYOUT) |