summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-06-28 16:31:02 +0000
committerRyan Bloom <rbb@apache.org>2000-06-28 16:31:02 +0000
commit766b60213d79261d0c7fa198d2ab09a8e5568ef4 (patch)
tree81712afdd3f6eb42baf3162b69b9ff91ceeeffaa /acinclude.m4
parent8bcc58ed26a111ff112b85f82f6ec5cf9ffc6182 (diff)
downloadhttpd-766b60213d79261d0c7fa198d2ab09a8e5568ef4.tar.gz
Finish the Configuration cleanup. This basically merges all of the
autoconf scripts that APR provides for other programs into apr_common.m4. Other programs can then just include that file to get the APR checks that are required. Submitted by: Sascha Schumann <sascha@schumann.cx> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85725 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m433
1 files changed, 1 insertions, 32 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index d66c907335..44108e863e 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -168,7 +168,7 @@ AC_DEFUN(APACHE_ONCE,[
fi
])
-sinclude(lib/apr/threads.m4)
+sinclude(lib/apr/apr_common.m4)
sinclude(lib/apr/hints.m4)
dnl
@@ -408,34 +408,3 @@ AC_ARG_ENABLE(modules,
])
])dnl
-AC_DEFUN(APACHE_RUN_SUBDIR_CONFIG_NOW, [
- echo "configuring package in $1 now"
- ac_popdir=`pwd`
- ac_abs_srcdir=`(cd $srcdir/$1 && pwd)`
- apache_config_subdirs="$1"
- cd $1
-
-changequote(, )dnl
- # A "../" for each directory in /$config_subdirs.
- ac_dots=`echo $apache_config_subdirs|sed -e 's%^\./%%' -e 's%[^/]$%&/%' -e 's%[^/]*/%../%g'`
-changequote([, ])dnl
-
- # Make the cache file name correct relative to the subdirectory.
- case "$cache_file" in
- /*) ac_sub_cache_file=$cache_file ;;
- *) # Relative path.
- ac_sub_cache_file="$ac_dots$cache_file" ;;
- esac
-
- # The eval makes quoting arguments work.
-
- if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir
- then :
- echo "$1 configured properly"
- else
- echo "configure failed for $1"
- fi
-
- cd $ac_popdir
-])
-