summaryrefslogtreecommitdiff
path: root/build/apr_common.m4
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2003-04-05 21:42:20 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2003-04-05 21:42:20 +0000
commite94d4894923f8870892bbd67f07c562bc2f9bd16 (patch)
tree57c0b139df84ed748d7762ef4f935932d68adca3 /build/apr_common.m4
parent296b7430a8130f10f303bdee095e907d7e46db9d (diff)
downloadapr-e94d4894923f8870892bbd67f07c562bc2f9bd16.tar.gz
Add parameter to APR_SUBDIR_CONFIG to drop options passed to configure
before the subdir's configure is invoked. Also, add documentation notes on what this macro does and autoconf version caveats that need to be watched out for! Inspired by: Jeff's patch to httpd-2.0 (which was inspired by me on dev@httpd) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64475 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/apr_common.m4')
-rw-r--r--build/apr_common.m435
1 files changed, 33 insertions, 2 deletions
diff --git a/build/apr_common.m4 b/build/apr_common.m4
index 8dbe89423..29e69bbbb 100644
--- a/build/apr_common.m4
+++ b/build/apr_common.m4
@@ -74,7 +74,24 @@ AC_DEFUN(APR_MKDIR_P_CHECK,[
])
dnl
-dnl APR_SUBDIR_CONFIG(dir [, sub-package-cmdline-args])
+dnl APR_SUBDIR_CONFIG(dir [, sub-package-cmdline-args, args-to-drop])
+dnl
+dnl dir: directory to find configure in
+dnl sub-package-cmdline-args: arguments to add to the invocation (optional)
+dnl args-to-drop: arguments to drop from the invocation (optional)
+dnl
+dnl Note: This macro relies on ac_configure_args being set properly.
+dnl
+dnl The args-to-drop argument is shoved into a case statement, so
+dnl multiple arguments can be separated with a |.
+dnl
+dnl Note: Older versions of autoconf do not single-quote args, while 2.54+
+dnl places quotes around every argument. So, if you want to drop the
+dnl argument called --enable-layout, you must pass the third argument as:
+dnl [--enable-layout=*|\'--enable-layout=*]
+dnl
+dnl Trying to optimize this is left as an exercise to the reader who wants
+dnl to put up with more autoconf craziness. I give up.
dnl
AC_DEFUN(APR_SUBDIR_CONFIG, [
# save our work to this point; this allows the sub-package to use it
@@ -102,13 +119,27 @@ changequote([, ])dnl
ac_sub_cache_file="$ac_popdir/$cache_file" ;;
esac
+ ifelse($3, [], [apr_configure_args=$ac_configure_args],[
+ apr_configure_args=
+ apr_sep=
+ for apr_configure_arg in $ac_configure_args
+ do
+ case "$apr_configure_arg" in
+ $3)
+ continue ;;
+ esac
+ apr_configure_args="$apr_configure_args$apr_sep'$apr_configure_arg'"
+ apr_sep=" "
+ done
+ ])
+
dnl The eval makes quoting arguments work - specifically $2 where the
dnl quoting mechanisms used is "" rather than [].
dnl
dnl We need to execute another shell because some autoconf/shell combinations
dnl will choke after doing repeated APR_SUBDIR_CONFIG()s. (Namely Solaris
dnl and autoconf-2.54+)
- if eval $SHELL $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir $2
+ if eval $SHELL $ac_abs_srcdir/configure $apr_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir $2
then :
echo "$1 configured properly"
else