369N/Adnl APACHE_HELP_STRING(LHS, RHS)
369N/Adnl Autoconf 2.50 can not handle substr correctly. It does have
369N/Adnl AC_HELP_STRING, so let's try to call it if we can.
369N/Adnl Note: this define must be on one line so that it can be properly returned
369N/AAC_DEFUN(APACHE_HELP_STRING,[ifelse(regexp(AC_ACVERSION, 2\.1), -1, AC_HELP_STRING($1,$2),[ ]$1 substr([ ],len($1))$2)])dnl
369N/Adnl APACHE_SUBST(VARIABLE)
369N/Adnl Makes VARIABLE available in generated files
369N/Adnl (do not use @variable@ in Makefiles, but $(variable))
369N/A APACHE_VAR_SUBST="$APACHE_VAR_SUBST $1"
369N/Adnl APACHE_FAST_OUTPUT(FILENAME)
369N/Adnl Perform substitutions on FILENAME (Makefiles only)
369N/AAC_DEFUN(APACHE_FAST_OUTPUT,[
369N/A APACHE_FAST_OUTPUT_FILES="$APACHE_FAST_OUTPUT_FILES $1"
369N/Adnl APACHE_MKDIR_P_CHECK
369N/Adnl checks whether mkdir -p works
369N/AAC_DEFUN(APACHE_MKDIR_P_CHECK,[
1244N/A AC_CACHE_CHECK(for working mkdir -p, ac_cv_mkdir_p,[
369N/A test -d conftestdir && rm -rf conftestdir
2899N/AAC_DEFUN(APACHE_GEN_CONFIG_VARS,[
2899N/A APACHE_SUBST(localstatedir)
369N/A APACHE_SUBST(libexecdir)
369N/A APACHE_SUBST(htdocsdir)
369N/A APACHE_SUBST(installbuilddir)
369N/A APACHE_SUBST(runtimedir)
369N/A APACHE_SUBST(proxycachedir)
369N/A APACHE_SUBST(other_targets)
369N/A APACHE_SUBST(SH_LDFLAGS)
2051N/A APACHE_SUBST(HTTPD_LDFLAGS)
369N/A APACHE_SUBST(NOTEST_CPPFLAGS)
369N/A APACHE_SUBST(NOTEST_CFLAGS)
369N/A APACHE_SUBST(NOTEST_CXXFLAGS)
369N/A APACHE_SUBST(NOTEST_LDFLAGS)
369N/A APACHE_SUBST(NOTEST_LIBS)
369N/A APACHE_SUBST(EXTRA_CPPFLAGS)
369N/A APACHE_SUBST(EXTRA_CFLAGS)
369N/A APACHE_SUBST(EXTRA_CXXFLAGS)
369N/A APACHE_SUBST(EXTRA_LDFLAGS)
369N/A APACHE_SUBST(EXTRA_LIBS)
369N/A APACHE_SUBST(EXTRA_INCLUDES)
369N/A APACHE_SUBST(MODULE_DIRS)
369N/A APACHE_SUBST(MODULE_CLEANDIRS)
369N/A APACHE_SUBST(CORE_IMPLIB_FILE)
369N/A APACHE_SUBST(CORE_IMPLIB)
3817N/A APACHE_SUBST(INSTALL_PROG_FLAGS)
3817N/A abs_srcdir="`(cd $srcdir && pwd)`"
3817N/A if test "$ac_cv_mkdir_p" = "yes"; then
test -d build || $mkdir_p build
for i in $APACHE_VAR_SUBST; do
AC_DEFUN(APACHE_GEN_MAKEFILES,[
dnl ## APACHE_OUTPUT(file)
dnl ## adds "file" to the list of files generated by AC_OUTPUT
dnl ## This macro can be used several times.
AC_DEFUN(APACHE_OUTPUT, [
APACHE_OUTPUT_FILES="$APACHE_OUTPUT_FILES $1"
dnl If rlim_t is not defined, define it to int
AC_DEFUN(APACHE_TYPE_RLIM_T, [
AC_CACHE_CHECK([for rlim_t], ac_cv_type_rlim_t, [
if test "$ac_cv_type_rlim_t" = "no" ; then
dnl APACHE_MODPATH_INIT(modpath)
AC_DEFUN(APACHE_MODPATH_INIT,[
modpath_current=modules/$1
AC_DEFUN(APACHE_MODPATH_FINISH,[
if test ! -z "$modpath_static" -o ! -z "$modpath_shared"; then
MODULE_DIRS="$MODULE_DIRS $current_dir"
MODULE_CLEANDIRS="$MODULE_CLEANDIRS $current_dir"
dnl APACHE_MODPATH_ADD(name[, shared[, objects [, ldflags[, libs]]]])
AC_DEFUN(APACHE_MODPATH_ADD,[
if test -z "$module_standalone"; then
BUILTIN_LIBS="$BUILTIN_LIBS $modpath_current/$libname"
modpath_static="$modpath_static $libname"
shobjects=`echo $objects | sed 's/\.lo/.slo/g'`
modpath_shared="$modpath_shared $libname"
\$(SH_LINK) -rpath \$(libexecdir) -module -avoid-version $4 $objects $5
dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
dnl yes -- enabled by default. user must explicitly disable.
dnl no -- disabled under default, most, all. user must explicitly enable.
dnl most -- disabled by default. enabled explicitly or with most or all.
dnl static -- enabled as static by default, must be explicitly changed.
dnl "" -- disabled under default, most. enabled explicitly or with all.
dnl basically:
yes/no is a hard setting. "most" means follow the "most"
dnl setting. otherwise, fall under the "all" setting.
dnl explicit
yes/no always overrides.
AC_MSG_CHECKING(whether to enable mod_$1)
define([optname],[--]ifelse($5,yes,disable,enable)[-]translit($1,_,-))dnl
AC_ARG_ENABLE(translit($1,_,-),APACHE_HELP_STRING(optname(),$2),,enable_$1=ifelse($5,,maybe-all,$5))
dnl When --enable-modules=most is set and the module was not explicitly
dnl requested, allow a module to disable itself if its pre-reqs fail.
if test "$module_selection" = "most" -a "$enable_$1" = "most"; then
if test "$enable_$1" = "static"; then
elif test "$enable_$1" = "yes"; then
enable_$1=$module_default
_apmod_extra_msg=" ($module_selection)"
elif test "$enable_$1" = "most"; then
if test "$module_selection" = "most" -o "$module_selection" = "all"; then
enable_$1=$module_default
_apmod_extra_msg=" ($module_selection)"
elif test "$enable_$1" != "yes"; then
elif test "$enable_$1" = "maybe-all"; then
if test "$module_selection" = "all"; then
enable_$1=$module_default
_apmod_extra_msg=" (all)"
if test "$enable_$1" != "no"; then
dnl If we plan to enable it, allow the module to run some autoconf magic
dnl that may disable it because of missing dependencies.
ifelse([$6],,:,[AC_MSG_RESULT([checking dependencies])
AC_MSG_CHECKING(whether to enable mod_$1)
if test "$enable_$1" = "no"; then
if test "$_apmod_error_fatal" = "no"; then
_apmod_extra_msg=" (disabled)"
AC_MSG_ERROR([mod_$1 has been requested but can not be built due to prerequisite failures])
AC_MSG_RESULT($enable_$1$_apmod_extra_msg)
if test "$enable_$1" != "no"; then
enable_$1=`echo $ac_n $enable_$1$ac_c|sed '
s/shared,*//'`
DSO_MODULES="$DSO_MODULES $1"
MODLIST="$MODLIST ifelse($4,,$1,$4)"
if test "$1" = "so"; then
APACHE_MODPATH_ADD($1, $shared, $3)
dnl APACHE_LAYOUT_DEFAULTS
AC_DEFUN(APACHE_LAYOUT_DEFAULTS,[
dnl Apache defaults for autoconf variables.
test "x${exec_prefix}" = "xNONE" && exec_prefix='${prefix}'
dnl Now we need to check the non-autoconf variables.
test "x${cgidir}" = "x" && cgidir='${datadir}/cgi-bin'
test "x${logfiledir}" = "x" && logfiledir='${localstatedir}/logs'
test "x${htdocsdir}" = "x" && htdocsdir='${datadir}/htdocs'
test "x${manualdir}" = "x" && manualdir='${datadir}/manual'
test "x${errordir}" = "x" && errordir='${datadir}/error'
test "x${iconsdir}" = "x" && iconsdir='${datadir}/icons'
test "x${installbuilddir}" = "x" && installbuilddir='${datadir}/build'
test "x${runtimedir}" = "x" && runtimedir='${localstatedir}/logs'
test "x${proxycachedir}" = "x" && proxycachedir='${localstatedir}/proxy'
dnl APACHE_LAYOUT(configlayout, layoutname)
echo "** Error: Cannot use undefined layout '$LAYOUT'"
sed -e "1,/[ ]*<[lL]ayout[ ]*$2[ ]*>[ ]*/d" \
-e '/[ ]*<\/Layout>[ ]*/,$d' \
for var in prefix exec_prefix bindir sbindir libexecdir mandir \
sysconfdir datadir errordir iconsdir htdocsdir cgidir \
includedir localstatedir runtimedir logfiledir libdir \
manualdir proxycachedir installbuilddir; do
val=`echo $val | sed -e 's;\+$;;'`
val=`echo $val | sed -e 's:\(.\)/*$:\1:'`
val=`echo $val | sed -e 's:[\$]\([a-z_]*\):${\1}:g'`
if test "$autosuffix" = "yes"; then
if test "$addtarget" = "yes"; then
AC_DEFUN(APACHE_ENABLE_LAYOUT,[
[ --enable-layout=LAYOUT],[
if test -z "$LAYOUT"; then
AC_MSG_CHECKING(for chosen layout)
AC_MSG_RESULT($layout_name)
dnl APACHE_ENABLE_MODULES
AC_DEFUN(APACHE_ENABLE_MODULES,[
APACHE_HELP_STRING(--enable-modules=MODULE-LIST,Modules to enable),[
if test "$i" = "all" -o "$i" = "most"; then
AC_ARG_ENABLE(mods-shared,
APACHE_HELP_STRING(--enable-mods-shared=MODULE-LIST,Shared modules to enable),[
if test "$i" = "all" -o "$i" = "most"; then
i=`echo $i | sed 's/-/_/g'`
AC_DEFUN(APACHE_REQUIRE_CXX,[
if test -z "$apache_cxx_done"; then
dnl APACHE_CHECK_SSL_TOOLKIT
dnl Find the openssl toolkit installation and check it for the right
dnl version, then add its flags to INCLUDES and LIBS. This should
dnl really be using a custom AC_TRY_COMPILE function to test the includes
dnl and then AC_TRY_LINK to test the libraries directly for the version,
dnl but that will require someone who knows how to program openssl.
AC_DEFUN(APACHE_CHECK_SSL_TOOLKIT,[
if test "x$ap_ssltk_base" = "x"; then
AC_MSG_CHECKING(for
SSL/TLS toolkit base)
AC_ARG_WITH(ssl, APACHE_HELP_STRING(--with-ssl=DIR,
SSL/TLS toolkit (OpenSSL)), [
if test "x$withval" != "xyes" -a "x$withval" != "x"; then
if test "x$ap_ssltk_base" = "x"; then
AC_CACHE_VAL(ap_cv_ssltk,[
# shotgun approach: find all occurrences of the openssl program
# The IFS=... trick eliminates the colons from $PATH, without using an external program
ap_ssltk_try="$ap_ssltk_try $p"
if test "x$ap_ssltk_try" = "x"; then
AC_MSG_ERROR(['openssl' not found in path])
for p in $ap_ssltk_try; do
case "$ap_ssltk_version" in
"OpenSSL "0.9.[[6-9]]* | \
"OpenSSL "0.[[1-9]][[0-9]]* )
ap_cv_ssltk="`(cd $p/.. && pwd)`"
# skip because it is too old or a bad result
if test "x$ap_cv_ssltk" = "x"; then
AC_MSG_ERROR([requires OpenSSL 0.9.6 or higher])
ap_ssltk_base="$ap_cv_ssltk"
if test ! -d $ap_ssltk_base; then
AC_MSG_ERROR([invalid
SSL/TLS toolkit base directory $ap_ssltk_base])
AC_MSG_RESULT($ap_ssltk_base)
AC_MSG_CHECKING(for
SSL/TLS toolkit version)
AC_MSG_RESULT($ap_ssltk_version)
AC_MSG_CHECKING(for
SSL/TLS toolkit includes)
if test "x$ap_ssltk_incdir" = "x"; then
AC_MSG_ERROR([OpenSSL headers not found])
AC_MSG_RESULT($ap_ssltk_incdir)
AC_MSG_CHECKING(for
SSL/TLS toolkit libraries)
if test ".$ap_ssltk_libdir" = .; then
AC_MSG_ERROR([OpenSSL libraries not found])
AC_MSG_RESULT($ap_ssltk_libdir)
dnl # annotate the Apache build environment with determined information
APR_ADDTO(INCLUDES, [-I$ap_ssltk_incdir])
if test "x$ap_ssltk_libdir" != "
x/usr/lib"; then
APR_ADDTO(LDFLAGS, [-L$ap_ssltk_libdir])
if test "x$ap_platform_runtime_link_flag" != "x"; then
APR_ADDTO(LDFLAGS, [$ap_platform_runtime_link_flag$ap_ssltk_libdir])
APR_ADDTO(LIBS, [-lssl -lcrypto])
ap_cv_ssltk="$ap_ssltk_base"
dnl APACHE_PARSE_ARGUMENTS
dnl a reimplementation of autoconf's argument parser,
dnl used here to allow us to co-exist layouts and argument based
AC_DEFUN(APACHE_PARSE_ARGUMENTS,[
# If the previous option needs an argument, assign it.
if test -n "$ac_prev"; then
eval "$ac_prev=\$ac_option"
ac_optarg=`expr "x$ac_option" : 'x[[^=]]*=\(.*\)'`
-bindir | --bindir | --bindi | --bind | --bin | --bi)
-bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
-datadir | --datadir | --datadi | --datad | --data | --dat | --da)
-datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
-exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
| --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
-exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
| --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
| --exec=* | --exe=* | --ex=*)
exec_prefix="$ac_optarg" ;;
-includedir | --includedir | --includedi | --included | --include \
| --includ | --inclu | --incl | --inc)
-includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
| --includ=* | --inclu=* | --incl=* | --inc=*)
includedir="$ac_optarg" ;;
-infodir | --infodir | --infodi | --infod | --info | --inf)
-infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
-libdir | --libdir | --libdi | --libd)
-libdir=* | --libdir=* | --libdi=* | --libd=*)
-libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
| --libexe | --libex | --libe)
-libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
| --libexe=* | --libex=* | --libe=*)
libexecdir="$ac_optarg" ;;
-localstatedir | --localstatedir | --localstatedi | --localstated \
| --localstate | --localstat | --localsta | --localst \
| --locals | --local | --loca | --loc | --lo)
-localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
| --localstate=* | --localstat=* | --localsta=* | --localst=* \
| --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
localstatedir="$ac_optarg" ;;
-mandir | --mandir | --mandi | --mand | --man | --ma | --m)
-mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
-prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
-prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
-sharedstatedir | --sharedstatedir | --sharedstatedi \
| --sharedstated | --sharedstate | --sharedstat | --sharedsta \
| --sharedst | --shareds | --shared | --share | --shar \
ac_prev=sharedstatedir ;;
-sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
| --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
| --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
sharedstatedir="$ac_optarg" ;;
-sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
| --syscon | --sysco | --sysc | --sys | --sy)
-sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
| --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
sysconfdir="$ac_optarg" ;;
# Be sure to have absolute paths.
for ac_var in exec_prefix prefix
eval ac_val=$`echo $ac_var`
[[\\/$]]* | ?:[[\\/]]* | NONE | '' ) ;;
*) AC_MSG_ERROR([expected an absolute path for --$ac_var: $ac_val]);;
dnl APACHE_EXPORT_ARGUMENTS
dnl Export (via APACHE_SUBST) the various path-related variables that
dnl apache will use while generating scripts like autoconf and apxs and
dnl the default config file.
AC_DEFUN(APACHE_SUBST_EXPANDED_ARG,[
APR_EXPAND_VAR(exp_$1, [$]$1)
APR_PATH_RELATIVE(rel_$1, [$]exp_$1, ${prefix})
AC_DEFUN(APACHE_EXPORT_ARGUMENTS,[
APACHE_SUBST_EXPANDED_ARG(exec_prefix)
APACHE_SUBST_EXPANDED_ARG(bindir)
APACHE_SUBST_EXPANDED_ARG(sbindir)
APACHE_SUBST_EXPANDED_ARG(libexecdir)
APACHE_SUBST_EXPANDED_ARG(mandir)
APACHE_SUBST_EXPANDED_ARG(sysconfdir)
APACHE_SUBST_EXPANDED_ARG(datadir)
APACHE_SUBST_EXPANDED_ARG(installbuilddir)
APACHE_SUBST_EXPANDED_ARG(errordir)
APACHE_SUBST_EXPANDED_ARG(iconsdir)
APACHE_SUBST_EXPANDED_ARG(htdocsdir)
APACHE_SUBST_EXPANDED_ARG(manualdir)
APACHE_SUBST_EXPANDED_ARG(cgidir)
APACHE_SUBST_EXPANDED_ARG(includedir)
APACHE_SUBST_EXPANDED_ARG(localstatedir)
APACHE_SUBST_EXPANDED_ARG(runtimedir)
APACHE_SUBST_EXPANDED_ARG(logfiledir)
APACHE_SUBST_EXPANDED_ARG(proxycachedir)