fixes for solaris compilation

This commit is contained in:
brenosilva
2011-04-07 13:36:10 +00:00
parent 4643799ba6
commit 34d2f43a16
5 changed files with 1349 additions and 746 deletions

View File

@@ -744,7 +744,9 @@ ac_includes_default="\
# include <unistd.h> # include <unistd.h>
#endif" #endif"
ac_subst_vars='LTLIBOBJS ac_subst_vars='am__EXEEXT_FALSE
am__EXEEXT_TRUE
LTLIBOBJS
CURL_USES_GNUTLS CURL_USES_GNUTLS
CURL_LDADD CURL_LDADD
CURL_LDFLAGS CURL_LDFLAGS
@@ -812,6 +814,18 @@ BUILD_extentions_FALSE
BUILD_extentions_TRUE BUILD_extentions_TRUE
BUILD_APACHE2_MODULE_FALSE BUILD_APACHE2_MODULE_FALSE
BUILD_APACHE2_MODULE_TRUE BUILD_APACHE2_MODULE_TRUE
NETBSD_FALSE
NETBSD_TRUE
OPENBSD_FALSE
OPENBSD_TRUE
FREEBSD_FALSE
FREEBSD_TRUE
SOLARIS_FALSE
SOLARIS_TRUE
LINUX_FALSE
LINUX_TRUE
MACOSX_FALSE
MACOSX_TRUE
MSC_REGRESSION_DOCROOT_DIR MSC_REGRESSION_DOCROOT_DIR
MSC_REGRESSION_LOGS_DIR MSC_REGRESSION_LOGS_DIR
MSC_REGRESSION_CONF_DIR MSC_REGRESSION_CONF_DIR
@@ -2568,7 +2582,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
am__api_version='1.10' am__api_version='1.11'
# Find a good install program. We prefer a C program (faster), # Find a good install program. We prefer a C program (faster),
# so one script is as good as another. But avoid the broken or # so one script is as good as another. But avoid the broken or
@@ -2668,16 +2682,29 @@ $as_echo_n "checking whether build environment is sane... " >&6; }
# Just in case # Just in case
sleep 1 sleep 1
echo timestamp > conftest.file echo timestamp > conftest.file
# Reject unsafe characters in $srcdir or the absolute working directory
# name. Accept space and tab only in the latter.
am_lf='
'
case `pwd` in
*[\\\"\#\$\&\'\`$am_lf]*)
as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
esac
case $srcdir in
*[\\\"\#\$\&\'\`$am_lf\ \ ]*)
as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
esac
# Do `set' in a subshell so we don't clobber the current shell's # Do `set' in a subshell so we don't clobber the current shell's
# arguments. Must try -L first in case configure is actually a # arguments. Must try -L first in case configure is actually a
# symlink; some systems play weird games with the mod time of symlinks # symlink; some systems play weird games with the mod time of symlinks
# (eg FreeBSD returns the mod time of the symlink's containing # (eg FreeBSD returns the mod time of the symlink's containing
# directory). # directory).
if ( if (
set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
if test "$*" = "X"; then if test "$*" = "X"; then
# -L didn't work. # -L didn't work.
set X `ls -t $srcdir/configure conftest.file` set X `ls -t "$srcdir/configure" conftest.file`
fi fi
rm -f conftest.file rm -f conftest.file
if test "$*" != "X $srcdir/configure conftest.file" \ if test "$*" != "X $srcdir/configure conftest.file" \
@@ -2715,7 +2742,14 @@ program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
# expand $ac_aux_dir to an absolute path # expand $ac_aux_dir to an absolute path
am_aux_dir=`cd $ac_aux_dir && pwd` am_aux_dir=`cd $ac_aux_dir && pwd`
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" if test x"${MISSING+set}" != xset; then
case $am_aux_dir in
*\ * | *\ *)
MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
*)
MISSING="\${SHELL} $am_aux_dir/missing" ;;
esac
fi
# Use eval to expand $SHELL # Use eval to expand $SHELL
if eval "$MISSING --run true"; then if eval "$MISSING --run true"; then
am_missing_run="$MISSING --run " am_missing_run="$MISSING --run "
@@ -2725,6 +2759,115 @@ else
$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
fi fi
if test x"${install_sh}" != xset; then
case $am_aux_dir in
*\ * | *\ *)
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
*)
install_sh="\${SHELL} $am_aux_dir/install-sh"
esac
fi
# Installed binaries are usually stripped using `strip' when the user
# run `make install-strip'. However `strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake
# will honor the `STRIP' environment variable to overrule this program.
if test "$cross_compiling" != no; then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
set dummy ${ac_tool_prefix}strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if test "${ac_cv_prog_STRIP+set}" = set; then :
$as_echo_n "(cached) " >&6
else
if test -n "$STRIP"; then
ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
done
done
IFS=$as_save_IFS
fi
fi
STRIP=$ac_cv_prog_STRIP
if test -n "$STRIP"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
$as_echo "$STRIP" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
fi
if test -z "$ac_cv_prog_STRIP"; then
ac_ct_STRIP=$STRIP
# Extract the first word of "strip", so it can be a program name with args.
set dummy strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_STRIP"; then
ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
ac_cv_prog_ac_ct_STRIP="strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
done
done
IFS=$as_save_IFS
fi
fi
ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
if test -n "$ac_ct_STRIP"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
$as_echo "$ac_ct_STRIP" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
if test "x$ac_ct_STRIP" = x; then
STRIP=":"
else
case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
STRIP=$ac_ct_STRIP
fi
else
STRIP="$ac_cv_prog_STRIP"
fi
fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
if test -z "$MKDIR_P"; then if test -z "$MKDIR_P"; then
@@ -2905,108 +3048,6 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
# Installed binaries are usually stripped using `strip' when the user
# run `make install-strip'. However `strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake
# will honor the `STRIP' environment variable to overrule this program.
if test "$cross_compiling" != no; then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
set dummy ${ac_tool_prefix}strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if test "${ac_cv_prog_STRIP+set}" = set; then :
$as_echo_n "(cached) " >&6
else
if test -n "$STRIP"; then
ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
done
done
IFS=$as_save_IFS
fi
fi
STRIP=$ac_cv_prog_STRIP
if test -n "$STRIP"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
$as_echo "$STRIP" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
fi
if test -z "$ac_cv_prog_STRIP"; then
ac_ct_STRIP=$STRIP
# Extract the first word of "strip", so it can be a program name with args.
set dummy strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_STRIP"; then
ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
ac_cv_prog_ac_ct_STRIP="strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
done
done
IFS=$as_save_IFS
fi
fi
ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
if test -n "$ac_ct_STRIP"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
$as_echo "$ac_ct_STRIP" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
if test "x$ac_ct_STRIP" = x; then
STRIP=":"
else
case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
STRIP=$ac_ct_STRIP
fi
else
STRIP="$ac_cv_prog_STRIP"
fi
fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
# We need awk for the "check" target. The system "awk" is bad on # We need awk for the "check" target. The system "awk" is bad on
# some platforms. # some platforms.
# Always define AMTAR for backward compatibility. # Always define AMTAR for backward compatibility.
@@ -3125,7 +3166,7 @@ ac_config_commands="$ac_config_commands depfiles"
am_make=${MAKE-make} am_make=${MAKE-make}
cat > confinc << 'END' cat > confinc << 'END'
am__doit: am__doit:
@echo done @echo this is the am__doit target
.PHONY: am__doit .PHONY: am__doit
END END
# If we don't find an include directive, just comment out the code. # If we don't find an include directive, just comment out the code.
@@ -3136,24 +3177,24 @@ am__quote=
_am_result=none _am_result=none
# First try GNU make style include. # First try GNU make style include.
echo "include confinc" > confmf echo "include confinc" > confmf
# We grep out `Entering directory' and `Leaving directory' # Ignore all kinds of additional output from `make'.
# messages which can occur if `w' ends up in MAKEFLAGS. case `$am_make -s -f confmf 2> /dev/null` in #(
# In particular we don't look at `^make:' because GNU make might *the\ am__doit\ target*)
# be invoked under some other name (usually "gmake"), in which am__include=include
# case it prints its new name instead of `make'. am__quote=
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then _am_result=GNU
am__include=include ;;
am__quote= esac
_am_result=GNU
fi
# Now try BSD make style include. # Now try BSD make style include.
if test "$am__include" = "#"; then if test "$am__include" = "#"; then
echo '.include "confinc"' > confmf echo '.include "confinc"' > confmf
if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then case `$am_make -s -f confmf 2> /dev/null` in #(
am__include=.include *the\ am__doit\ target*)
am__quote="\"" am__include=.include
_am_result=BSD am__quote="\""
fi _am_result=BSD
;;
esac
fi fi
@@ -4000,6 +4041,11 @@ else
if test "$am_compiler_list" = ""; then if test "$am_compiler_list" = ""; then
am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
fi fi
am__universal=false
case " $depcc " in #(
*\ -arch\ *\ -arch\ *) am__universal=true ;;
esac
for depmode in $am_compiler_list; do for depmode in $am_compiler_list; do
# Setup a source with many dependencies, because some compilers # Setup a source with many dependencies, because some compilers
# like to wrap large dependency lists on column 80 (with \), and # like to wrap large dependency lists on column 80 (with \), and
@@ -4017,7 +4063,17 @@ else
done done
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
# We check with `-c' and `-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this. Also, some Intel
# versions had trouble with output in subdirs
am__obj=sub/conftest.${OBJEXT-o}
am__minus_obj="-o $am__obj"
case $depmode in case $depmode in
gcc)
# This depmode causes a compiler race in universal mode.
test "$am__universal" = false || continue
;;
nosideeffect) nosideeffect)
# after this tag, mechanisms are not by side-effect, so they'll # after this tag, mechanisms are not by side-effect, so they'll
# only be used when explicitly requested # only be used when explicitly requested
@@ -4027,19 +4083,23 @@ else
break break
fi fi
;; ;;
msvisualcpp | msvcmsys)
# This compiler won't grok `-c -o', but also, the minuso test has
# not run yet. These depmodes are late enough in the game, and
# so weak that their functioning should not be impacted.
am__obj=conftest.${OBJEXT-o}
am__minus_obj=
;;
none) break ;; none) break ;;
esac esac
# We check with `-c' and `-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this.
if depmode=$depmode \ if depmode=$depmode \
source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ source=sub/conftest.c object=$am__obj \
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
$SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
>/dev/null 2>conftest.err && >/dev/null 2>conftest.err &&
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
${MAKE-make} -s -f confmf > /dev/null 2>&1; then ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
# icc doesn't choke on unknown options, it will just issue warnings # icc doesn't choke on unknown options, it will just issue warnings
# or remarks (even with -Werror). So we grep stderr for any message # or remarks (even with -Werror). So we grep stderr for any message
@@ -11222,6 +11282,11 @@ else
if test "$am_compiler_list" = ""; then if test "$am_compiler_list" = ""; then
am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
fi fi
am__universal=false
case " $depcc " in #(
*\ -arch\ *\ -arch\ *) am__universal=true ;;
esac
for depmode in $am_compiler_list; do for depmode in $am_compiler_list; do
# Setup a source with many dependencies, because some compilers # Setup a source with many dependencies, because some compilers
# like to wrap large dependency lists on column 80 (with \), and # like to wrap large dependency lists on column 80 (with \), and
@@ -11239,7 +11304,17 @@ else
done done
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
# We check with `-c' and `-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this. Also, some Intel
# versions had trouble with output in subdirs
am__obj=sub/conftest.${OBJEXT-o}
am__minus_obj="-o $am__obj"
case $depmode in case $depmode in
gcc)
# This depmode causes a compiler race in universal mode.
test "$am__universal" = false || continue
;;
nosideeffect) nosideeffect)
# after this tag, mechanisms are not by side-effect, so they'll # after this tag, mechanisms are not by side-effect, so they'll
# only be used when explicitly requested # only be used when explicitly requested
@@ -11249,19 +11324,23 @@ else
break break
fi fi
;; ;;
msvisualcpp | msvcmsys)
# This compiler won't grok `-c -o', but also, the minuso test has
# not run yet. These depmodes are late enough in the game, and
# so weak that their functioning should not be impacted.
am__obj=conftest.${OBJEXT-o}
am__minus_obj=
;;
none) break ;; none) break ;;
esac esac
# We check with `-c' and `-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this.
if depmode=$depmode \ if depmode=$depmode \
source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ source=sub/conftest.c object=$am__obj \
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
$SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
>/dev/null 2>conftest.err && >/dev/null 2>conftest.err &&
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
${MAKE-make} -s -f confmf > /dev/null 2>&1; then ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
# icc doesn't choke on unknown options, it will just issue warnings # icc doesn't choke on unknown options, it will just issue warnings
# or remarks (even with -Werror). So we grep stderr for any message # or remarks (even with -Werror). So we grep stderr for any message
@@ -12168,6 +12247,102 @@ MSC_REGRESSION_DOCROOT_DIR="$MSC_REGRESSION_SERVERROOT_DIR/htdocs"
### Configure Options ### Configure Options
#OS type
CANONICAL_HOST=$host
#AH_TEMPLATE([AIX], [Define if the operating system is AIX])
#AH_TEMPLATE([HPUX], [Define if the operating system is HPUX])
case $host in
*-*-darwin*)
echo "Checking plataform... Identified as Macintosh OS X"
macos=true
;;
*-*-linux*)
echo "Checking plataform... Identified as Linux"
linuxos=true
;;
*-*-solaris*)
echo "Checking plataform... Identified as Solaris"
solarisos=true
;;
*-*-freebsd*)
echo "Checking plataform... Identified as FreeBSD"
freebsdos=true
;;
*-*-netbsd*)
echo "Checking plataform... Identified as FreeBSD"
netbsdos=true
;;
*-*-openbsd*)
echo "Checking plataform... Identified as FreeBSD"
openbsdos=true
;;
*)
echo "Unknown CANONICAL_HOST $host"
exit
;;
esac
if test x$macos = xtrue; then
MACOSX_TRUE=
MACOSX_FALSE='#'
else
MACOSX_TRUE='#'
MACOSX_FALSE=
fi
if test x$linuxos = xtrue; then
LINUX_TRUE=
LINUX_FALSE='#'
else
LINUX_TRUE='#'
LINUX_FALSE=
fi
if test x$solarisos = xtrue; then
SOLARIS_TRUE=
SOLARIS_FALSE='#'
else
SOLARIS_TRUE='#'
SOLARIS_FALSE=
fi
if test x$freebsdos = xtrue; then
FREEBSD_TRUE=
FREEBSD_FALSE='#'
else
FREEBSD_TRUE='#'
FREEBSD_FALSE=
fi
if test x$openbsdos = xtrue; then
OPENBSD_TRUE=
OPENBSD_FALSE='#'
else
OPENBSD_TRUE='#'
OPENBSD_FALSE=
fi
if test x$netbsdos = xtrue; then
NETBSD_TRUE=
NETBSD_FALSE='#'
else
NETBSD_TRUE='#'
NETBSD_FALSE=
fi
#Subdirs
TOPLEVEL_SUBDIRS="tools" TOPLEVEL_SUBDIRS="tools"
# Apache2 Module # Apache2 Module
@@ -13527,6 +13702,14 @@ LIB@&t@OBJS=$ac_libobjs
LTLIBOBJS=$ac_ltlibobjs LTLIBOBJS=$ac_ltlibobjs
if test -n "$EXEEXT"; then
am__EXEEXT_TRUE=
am__EXEEXT_FALSE='#'
else
am__EXEEXT_TRUE='#'
am__EXEEXT_FALSE=
fi
if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
as_fn_error "conditional \"AMDEP\" was never defined. as_fn_error "conditional \"AMDEP\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5 Usually this means the macro was only invoked conditionally." "$LINENO" 5
@@ -13539,6 +13722,30 @@ if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
as_fn_error "conditional \"am__fastdepCC\" was never defined. as_fn_error "conditional \"am__fastdepCC\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5 Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi fi
if test -z "${MACOSX_TRUE}" && test -z "${MACOSX_FALSE}"; then
as_fn_error "conditional \"MACOSX\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${LINUX_TRUE}" && test -z "${LINUX_FALSE}"; then
as_fn_error "conditional \"LINUX\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${SOLARIS_TRUE}" && test -z "${SOLARIS_FALSE}"; then
as_fn_error "conditional \"SOLARIS\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${FREEBSD_TRUE}" && test -z "${FREEBSD_FALSE}"; then
as_fn_error "conditional \"FREEBSD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${OPENBSD_TRUE}" && test -z "${OPENBSD_FALSE}"; then
as_fn_error "conditional \"OPENBSD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${NETBSD_TRUE}" && test -z "${NETBSD_FALSE}"; then
as_fn_error "conditional \"NETBSD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${BUILD_APACHE2_MODULE_TRUE}" && test -z "${BUILD_APACHE2_MODULE_FALSE}"; then if test -z "${BUILD_APACHE2_MODULE_TRUE}" && test -z "${BUILD_APACHE2_MODULE_FALSE}"; then
as_fn_error "conditional \"BUILD_APACHE2_MODULE\" was never defined. as_fn_error "conditional \"BUILD_APACHE2_MODULE\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5 Usually this means the macro was only invoked conditionally." "$LINENO" 5

View File

@@ -744,7 +744,9 @@ ac_includes_default="\
# include <unistd.h> # include <unistd.h>
#endif" #endif"
ac_subst_vars='LTLIBOBJS ac_subst_vars='am__EXEEXT_FALSE
am__EXEEXT_TRUE
LTLIBOBJS
CURL_USES_GNUTLS CURL_USES_GNUTLS
CURL_LDADD CURL_LDADD
CURL_LDFLAGS CURL_LDFLAGS
@@ -812,6 +814,18 @@ BUILD_extentions_FALSE
BUILD_extentions_TRUE BUILD_extentions_TRUE
BUILD_APACHE2_MODULE_FALSE BUILD_APACHE2_MODULE_FALSE
BUILD_APACHE2_MODULE_TRUE BUILD_APACHE2_MODULE_TRUE
NETBSD_FALSE
NETBSD_TRUE
OPENBSD_FALSE
OPENBSD_TRUE
FREEBSD_FALSE
FREEBSD_TRUE
SOLARIS_FALSE
SOLARIS_TRUE
LINUX_FALSE
LINUX_TRUE
MACOSX_FALSE
MACOSX_TRUE
MSC_REGRESSION_DOCROOT_DIR MSC_REGRESSION_DOCROOT_DIR
MSC_REGRESSION_LOGS_DIR MSC_REGRESSION_LOGS_DIR
MSC_REGRESSION_CONF_DIR MSC_REGRESSION_CONF_DIR
@@ -2568,7 +2582,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
am__api_version='1.10' am__api_version='1.11'
# Find a good install program. We prefer a C program (faster), # Find a good install program. We prefer a C program (faster),
# so one script is as good as another. But avoid the broken or # so one script is as good as another. But avoid the broken or
@@ -2668,16 +2682,29 @@ $as_echo_n "checking whether build environment is sane... " >&6; }
# Just in case # Just in case
sleep 1 sleep 1
echo timestamp > conftest.file echo timestamp > conftest.file
# Reject unsafe characters in $srcdir or the absolute working directory
# name. Accept space and tab only in the latter.
am_lf='
'
case `pwd` in
*[\\\"\#\$\&\'\`$am_lf]*)
as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
esac
case $srcdir in
*[\\\"\#\$\&\'\`$am_lf\ \ ]*)
as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
esac
# Do `set' in a subshell so we don't clobber the current shell's # Do `set' in a subshell so we don't clobber the current shell's
# arguments. Must try -L first in case configure is actually a # arguments. Must try -L first in case configure is actually a
# symlink; some systems play weird games with the mod time of symlinks # symlink; some systems play weird games with the mod time of symlinks
# (eg FreeBSD returns the mod time of the symlink's containing # (eg FreeBSD returns the mod time of the symlink's containing
# directory). # directory).
if ( if (
set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
if test "$*" = "X"; then if test "$*" = "X"; then
# -L didn't work. # -L didn't work.
set X `ls -t $srcdir/configure conftest.file` set X `ls -t "$srcdir/configure" conftest.file`
fi fi
rm -f conftest.file rm -f conftest.file
if test "$*" != "X $srcdir/configure conftest.file" \ if test "$*" != "X $srcdir/configure conftest.file" \
@@ -2715,7 +2742,14 @@ program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
# expand $ac_aux_dir to an absolute path # expand $ac_aux_dir to an absolute path
am_aux_dir=`cd $ac_aux_dir && pwd` am_aux_dir=`cd $ac_aux_dir && pwd`
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" if test x"${MISSING+set}" != xset; then
case $am_aux_dir in
*\ * | *\ *)
MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
*)
MISSING="\${SHELL} $am_aux_dir/missing" ;;
esac
fi
# Use eval to expand $SHELL # Use eval to expand $SHELL
if eval "$MISSING --run true"; then if eval "$MISSING --run true"; then
am_missing_run="$MISSING --run " am_missing_run="$MISSING --run "
@@ -2725,6 +2759,115 @@ else
$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
fi fi
if test x"${install_sh}" != xset; then
case $am_aux_dir in
*\ * | *\ *)
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
*)
install_sh="\${SHELL} $am_aux_dir/install-sh"
esac
fi
# Installed binaries are usually stripped using `strip' when the user
# run `make install-strip'. However `strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake
# will honor the `STRIP' environment variable to overrule this program.
if test "$cross_compiling" != no; then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
set dummy ${ac_tool_prefix}strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if test "${ac_cv_prog_STRIP+set}" = set; then :
$as_echo_n "(cached) " >&6
else
if test -n "$STRIP"; then
ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
done
done
IFS=$as_save_IFS
fi
fi
STRIP=$ac_cv_prog_STRIP
if test -n "$STRIP"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
$as_echo "$STRIP" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
fi
if test -z "$ac_cv_prog_STRIP"; then
ac_ct_STRIP=$STRIP
# Extract the first word of "strip", so it can be a program name with args.
set dummy strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_STRIP"; then
ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
ac_cv_prog_ac_ct_STRIP="strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
done
done
IFS=$as_save_IFS
fi
fi
ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
if test -n "$ac_ct_STRIP"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
$as_echo "$ac_ct_STRIP" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
if test "x$ac_ct_STRIP" = x; then
STRIP=":"
else
case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
STRIP=$ac_ct_STRIP
fi
else
STRIP="$ac_cv_prog_STRIP"
fi
fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
if test -z "$MKDIR_P"; then if test -z "$MKDIR_P"; then
@@ -2905,108 +3048,6 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
# Installed binaries are usually stripped using `strip' when the user
# run `make install-strip'. However `strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake
# will honor the `STRIP' environment variable to overrule this program.
if test "$cross_compiling" != no; then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
set dummy ${ac_tool_prefix}strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if test "${ac_cv_prog_STRIP+set}" = set; then :
$as_echo_n "(cached) " >&6
else
if test -n "$STRIP"; then
ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
done
done
IFS=$as_save_IFS
fi
fi
STRIP=$ac_cv_prog_STRIP
if test -n "$STRIP"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
$as_echo "$STRIP" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
fi
if test -z "$ac_cv_prog_STRIP"; then
ac_ct_STRIP=$STRIP
# Extract the first word of "strip", so it can be a program name with args.
set dummy strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_STRIP"; then
ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
ac_cv_prog_ac_ct_STRIP="strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
done
done
IFS=$as_save_IFS
fi
fi
ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
if test -n "$ac_ct_STRIP"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
$as_echo "$ac_ct_STRIP" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
if test "x$ac_ct_STRIP" = x; then
STRIP=":"
else
case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
STRIP=$ac_ct_STRIP
fi
else
STRIP="$ac_cv_prog_STRIP"
fi
fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
# We need awk for the "check" target. The system "awk" is bad on # We need awk for the "check" target. The system "awk" is bad on
# some platforms. # some platforms.
# Always define AMTAR for backward compatibility. # Always define AMTAR for backward compatibility.
@@ -3125,7 +3166,7 @@ ac_config_commands="$ac_config_commands depfiles"
am_make=${MAKE-make} am_make=${MAKE-make}
cat > confinc << 'END' cat > confinc << 'END'
am__doit: am__doit:
@echo done @echo this is the am__doit target
.PHONY: am__doit .PHONY: am__doit
END END
# If we don't find an include directive, just comment out the code. # If we don't find an include directive, just comment out the code.
@@ -3136,24 +3177,24 @@ am__quote=
_am_result=none _am_result=none
# First try GNU make style include. # First try GNU make style include.
echo "include confinc" > confmf echo "include confinc" > confmf
# We grep out `Entering directory' and `Leaving directory' # Ignore all kinds of additional output from `make'.
# messages which can occur if `w' ends up in MAKEFLAGS. case `$am_make -s -f confmf 2> /dev/null` in #(
# In particular we don't look at `^make:' because GNU make might *the\ am__doit\ target*)
# be invoked under some other name (usually "gmake"), in which am__include=include
# case it prints its new name instead of `make'. am__quote=
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then _am_result=GNU
am__include=include ;;
am__quote= esac
_am_result=GNU
fi
# Now try BSD make style include. # Now try BSD make style include.
if test "$am__include" = "#"; then if test "$am__include" = "#"; then
echo '.include "confinc"' > confmf echo '.include "confinc"' > confmf
if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then case `$am_make -s -f confmf 2> /dev/null` in #(
am__include=.include *the\ am__doit\ target*)
am__quote="\"" am__include=.include
_am_result=BSD am__quote="\""
fi _am_result=BSD
;;
esac
fi fi
@@ -4000,6 +4041,11 @@ else
if test "$am_compiler_list" = ""; then if test "$am_compiler_list" = ""; then
am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
fi fi
am__universal=false
case " $depcc " in #(
*\ -arch\ *\ -arch\ *) am__universal=true ;;
esac
for depmode in $am_compiler_list; do for depmode in $am_compiler_list; do
# Setup a source with many dependencies, because some compilers # Setup a source with many dependencies, because some compilers
# like to wrap large dependency lists on column 80 (with \), and # like to wrap large dependency lists on column 80 (with \), and
@@ -4017,7 +4063,17 @@ else
done done
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
# We check with `-c' and `-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this. Also, some Intel
# versions had trouble with output in subdirs
am__obj=sub/conftest.${OBJEXT-o}
am__minus_obj="-o $am__obj"
case $depmode in case $depmode in
gcc)
# This depmode causes a compiler race in universal mode.
test "$am__universal" = false || continue
;;
nosideeffect) nosideeffect)
# after this tag, mechanisms are not by side-effect, so they'll # after this tag, mechanisms are not by side-effect, so they'll
# only be used when explicitly requested # only be used when explicitly requested
@@ -4027,19 +4083,23 @@ else
break break
fi fi
;; ;;
msvisualcpp | msvcmsys)
# This compiler won't grok `-c -o', but also, the minuso test has
# not run yet. These depmodes are late enough in the game, and
# so weak that their functioning should not be impacted.
am__obj=conftest.${OBJEXT-o}
am__minus_obj=
;;
none) break ;; none) break ;;
esac esac
# We check with `-c' and `-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this.
if depmode=$depmode \ if depmode=$depmode \
source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ source=sub/conftest.c object=$am__obj \
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
$SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
>/dev/null 2>conftest.err && >/dev/null 2>conftest.err &&
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
${MAKE-make} -s -f confmf > /dev/null 2>&1; then ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
# icc doesn't choke on unknown options, it will just issue warnings # icc doesn't choke on unknown options, it will just issue warnings
# or remarks (even with -Werror). So we grep stderr for any message # or remarks (even with -Werror). So we grep stderr for any message
@@ -11222,6 +11282,11 @@ else
if test "$am_compiler_list" = ""; then if test "$am_compiler_list" = ""; then
am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
fi fi
am__universal=false
case " $depcc " in #(
*\ -arch\ *\ -arch\ *) am__universal=true ;;
esac
for depmode in $am_compiler_list; do for depmode in $am_compiler_list; do
# Setup a source with many dependencies, because some compilers # Setup a source with many dependencies, because some compilers
# like to wrap large dependency lists on column 80 (with \), and # like to wrap large dependency lists on column 80 (with \), and
@@ -11239,7 +11304,17 @@ else
done done
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
# We check with `-c' and `-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this. Also, some Intel
# versions had trouble with output in subdirs
am__obj=sub/conftest.${OBJEXT-o}
am__minus_obj="-o $am__obj"
case $depmode in case $depmode in
gcc)
# This depmode causes a compiler race in universal mode.
test "$am__universal" = false || continue
;;
nosideeffect) nosideeffect)
# after this tag, mechanisms are not by side-effect, so they'll # after this tag, mechanisms are not by side-effect, so they'll
# only be used when explicitly requested # only be used when explicitly requested
@@ -11249,19 +11324,23 @@ else
break break
fi fi
;; ;;
msvisualcpp | msvcmsys)
# This compiler won't grok `-c -o', but also, the minuso test has
# not run yet. These depmodes are late enough in the game, and
# so weak that their functioning should not be impacted.
am__obj=conftest.${OBJEXT-o}
am__minus_obj=
;;
none) break ;; none) break ;;
esac esac
# We check with `-c' and `-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this.
if depmode=$depmode \ if depmode=$depmode \
source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ source=sub/conftest.c object=$am__obj \
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
$SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
>/dev/null 2>conftest.err && >/dev/null 2>conftest.err &&
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
${MAKE-make} -s -f confmf > /dev/null 2>&1; then ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
# icc doesn't choke on unknown options, it will just issue warnings # icc doesn't choke on unknown options, it will just issue warnings
# or remarks (even with -Werror). So we grep stderr for any message # or remarks (even with -Werror). So we grep stderr for any message
@@ -12168,6 +12247,102 @@ MSC_REGRESSION_DOCROOT_DIR="$MSC_REGRESSION_SERVERROOT_DIR/htdocs"
### Configure Options ### Configure Options
#OS type
CANONICAL_HOST=$host
#AH_TEMPLATE([AIX], [Define if the operating system is AIX])
#AH_TEMPLATE([HPUX], [Define if the operating system is HPUX])
case $host in
*-*-darwin*)
echo "Checking plataform... Identified as Macintosh OS X"
macos=true
;;
*-*-linux*)
echo "Checking plataform... Identified as Linux"
linuxos=true
;;
*-*-solaris*)
echo "Checking plataform... Identified as Solaris"
solarisos=true
;;
*-*-freebsd*)
echo "Checking plataform... Identified as FreeBSD"
freebsdos=true
;;
*-*-netbsd*)
echo "Checking plataform... Identified as FreeBSD"
netbsdos=true
;;
*-*-openbsd*)
echo "Checking plataform... Identified as FreeBSD"
openbsdos=true
;;
*)
echo "Unknown CANONICAL_HOST $host"
exit
;;
esac
if test x$macos = xtrue; then
MACOSX_TRUE=
MACOSX_FALSE='#'
else
MACOSX_TRUE='#'
MACOSX_FALSE=
fi
if test x$linuxos = xtrue; then
LINUX_TRUE=
LINUX_FALSE='#'
else
LINUX_TRUE='#'
LINUX_FALSE=
fi
if test x$solarisos = xtrue; then
SOLARIS_TRUE=
SOLARIS_FALSE='#'
else
SOLARIS_TRUE='#'
SOLARIS_FALSE=
fi
if test x$freebsdos = xtrue; then
FREEBSD_TRUE=
FREEBSD_FALSE='#'
else
FREEBSD_TRUE='#'
FREEBSD_FALSE=
fi
if test x$openbsdos = xtrue; then
OPENBSD_TRUE=
OPENBSD_FALSE='#'
else
OPENBSD_TRUE='#'
OPENBSD_FALSE=
fi
if test x$netbsdos = xtrue; then
NETBSD_TRUE=
NETBSD_FALSE='#'
else
NETBSD_TRUE='#'
NETBSD_FALSE=
fi
#Subdirs
TOPLEVEL_SUBDIRS="tools" TOPLEVEL_SUBDIRS="tools"
# Apache2 Module # Apache2 Module
@@ -13527,6 +13702,14 @@ LIB@&t@OBJS=$ac_libobjs
LTLIBOBJS=$ac_ltlibobjs LTLIBOBJS=$ac_ltlibobjs
if test -n "$EXEEXT"; then
am__EXEEXT_TRUE=
am__EXEEXT_FALSE='#'
else
am__EXEEXT_TRUE='#'
am__EXEEXT_FALSE=
fi
if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
as_fn_error "conditional \"AMDEP\" was never defined. as_fn_error "conditional \"AMDEP\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5 Usually this means the macro was only invoked conditionally." "$LINENO" 5
@@ -13539,6 +13722,30 @@ if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
as_fn_error "conditional \"am__fastdepCC\" was never defined. as_fn_error "conditional \"am__fastdepCC\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5 Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi fi
if test -z "${MACOSX_TRUE}" && test -z "${MACOSX_FALSE}"; then
as_fn_error "conditional \"MACOSX\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${LINUX_TRUE}" && test -z "${LINUX_FALSE}"; then
as_fn_error "conditional \"LINUX\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${SOLARIS_TRUE}" && test -z "${SOLARIS_FALSE}"; then
as_fn_error "conditional \"SOLARIS\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${FREEBSD_TRUE}" && test -z "${FREEBSD_FALSE}"; then
as_fn_error "conditional \"FREEBSD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${OPENBSD_TRUE}" && test -z "${OPENBSD_FALSE}"; then
as_fn_error "conditional \"OPENBSD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${NETBSD_TRUE}" && test -z "${NETBSD_FALSE}"; then
as_fn_error "conditional \"NETBSD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${BUILD_APACHE2_MODULE_TRUE}" && test -z "${BUILD_APACHE2_MODULE_FALSE}"; then if test -z "${BUILD_APACHE2_MODULE_TRUE}" && test -z "${BUILD_APACHE2_MODULE_FALSE}"; then
as_fn_error "conditional \"BUILD_APACHE2_MODULE\" was never defined. as_fn_error "conditional \"BUILD_APACHE2_MODULE\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5 Usually this means the macro was only invoked conditionally." "$LINENO" 5

View File

@@ -30,10 +30,10 @@
'AC_CONFIG_SUBDIRS' => 1, 'AC_CONFIG_SUBDIRS' => 1,
'AM_AUTOMAKE_VERSION' => 1, 'AM_AUTOMAKE_VERSION' => 1,
'LT_CONFIG_LTDL_DIR' => 1, 'LT_CONFIG_LTDL_DIR' => 1,
'AC_REQUIRE_AUX_FILE' => 1,
'AC_CONFIG_LINKS' => 1, 'AC_CONFIG_LINKS' => 1,
'LT_SUPPORTED_TAG' => 1, 'AC_REQUIRE_AUX_FILE' => 1,
'm4_sinclude' => 1, 'm4_sinclude' => 1,
'LT_SUPPORTED_TAG' => 1,
'AM_MAINTAINER_MODE' => 1, 'AM_MAINTAINER_MODE' => 1,
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
'_m4_warn' => 1, '_m4_warn' => 1,
@@ -52,9 +52,9 @@
'AH_OUTPUT' => 1, 'AH_OUTPUT' => 1,
'AC_CONFIG_AUX_DIR' => 1, 'AC_CONFIG_AUX_DIR' => 1,
'_AM_SUBST_NOTMAKE' => 1, '_AM_SUBST_NOTMAKE' => 1,
'm4_pattern_allow' => 1,
'AM_PROG_CC_C_O' => 1, 'AM_PROG_CC_C_O' => 1,
'sinclude' => 1, 'sinclude' => 1,
'm4_pattern_allow' => 1,
'AM_CONDITIONAL' => 1, 'AM_CONDITIONAL' => 1,
'AC_CANONICAL_SYSTEM' => 1, 'AC_CANONICAL_SYSTEM' => 1,
'AC_CONFIG_HEADERS' => 1, 'AC_CONFIG_HEADERS' => 1,
@@ -74,23 +74,24 @@
'/usr/share/autoconf/autoconf/autoconf.m4f', '/usr/share/autoconf/autoconf/autoconf.m4f',
'/usr/share/aclocal/argz.m4', '/usr/share/aclocal/argz.m4',
'/usr/share/aclocal/ltdl.m4', '/usr/share/aclocal/ltdl.m4',
'/usr/share/aclocal-1.10/amversion.m4', '/usr/share/aclocal-1.11/amversion.m4',
'/usr/share/aclocal-1.10/auxdir.m4', '/usr/share/aclocal-1.11/auxdir.m4',
'/usr/share/aclocal-1.10/cond.m4', '/usr/share/aclocal-1.11/cond.m4',
'/usr/share/aclocal-1.10/depend.m4', '/usr/share/aclocal-1.11/depend.m4',
'/usr/share/aclocal-1.10/depout.m4', '/usr/share/aclocal-1.11/depout.m4',
'/usr/share/aclocal-1.10/init.m4', '/usr/share/aclocal-1.11/init.m4',
'/usr/share/aclocal-1.10/install-sh.m4', '/usr/share/aclocal-1.11/install-sh.m4',
'/usr/share/aclocal-1.10/lead-dot.m4', '/usr/share/aclocal-1.11/lead-dot.m4',
'/usr/share/aclocal-1.10/make.m4', '/usr/share/aclocal-1.11/make.m4',
'/usr/share/aclocal-1.10/missing.m4', '/usr/share/aclocal-1.11/missing.m4',
'/usr/share/aclocal-1.10/mkdirp.m4', '/usr/share/aclocal-1.11/mkdirp.m4',
'/usr/share/aclocal-1.10/options.m4', '/usr/share/aclocal-1.11/options.m4',
'/usr/share/aclocal-1.10/runlog.m4', '/usr/share/aclocal-1.11/runlog.m4',
'/usr/share/aclocal-1.10/sanity.m4', '/usr/share/aclocal-1.11/sanity.m4',
'/usr/share/aclocal-1.10/strip.m4', '/usr/share/aclocal-1.11/silent.m4',
'/usr/share/aclocal-1.10/substnot.m4', '/usr/share/aclocal-1.11/strip.m4',
'/usr/share/aclocal-1.10/tar.m4', '/usr/share/aclocal-1.11/substnot.m4',
'/usr/share/aclocal-1.11/tar.m4',
'acinclude/libtool.m4', 'acinclude/libtool.m4',
'acinclude/ltoptions.m4', 'acinclude/ltoptions.m4',
'acinclude/ltsugar.m4', 'acinclude/ltsugar.m4',
@@ -107,6 +108,7 @@
'AC_PROG_LIBTOOL' => 1, 'AC_PROG_LIBTOOL' => 1,
'AM_PROG_MKDIR_P' => 1, 'AM_PROG_MKDIR_P' => 1,
'AM_AUTOMAKE_VERSION' => 1, 'AM_AUTOMAKE_VERSION' => 1,
'AM_SUBST_NOTMAKE' => 1,
'AM_MISSING_PROG' => 1, 'AM_MISSING_PROG' => 1,
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1, 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
'_LT_AC_LANG_C_CONFIG' => 1, '_LT_AC_LANG_C_CONFIG' => 1,
@@ -131,8 +133,8 @@
'LT_FUNC_DLSYM_USCORE' => 1, 'LT_FUNC_DLSYM_USCORE' => 1,
'_LT_AC_LANG_F77' => 1, '_LT_AC_LANG_F77' => 1,
'AC_LIBTOOL_CONFIG' => 1, 'AC_LIBTOOL_CONFIG' => 1,
'_AM_SUBST_NOTMAKE' => 1,
'AC_LTDL_DLLIB' => 1, 'AC_LTDL_DLLIB' => 1,
'_AM_SUBST_NOTMAKE' => 1,
'_AM_AUTOCONF_VERSION' => 1, '_AM_AUTOCONF_VERSION' => 1,
'AM_DISABLE_SHARED' => 1, 'AM_DISABLE_SHARED' => 1,
'_LTDL_SETUP' => 1, '_LTDL_SETUP' => 1,
@@ -166,6 +168,7 @@
'AC_LIBTOOL_RC' => 1, 'AC_LIBTOOL_RC' => 1,
'_LT_AC_PROG_ECHO_BACKSLASH' => 1, '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
'AC_DISABLE_FAST_INSTALL' => 1, 'AC_DISABLE_FAST_INSTALL' => 1,
'AM_SILENT_RULES' => 1,
'include' => 1, 'include' => 1,
'_LT_AC_TRY_DLOPEN_SELF' => 1, '_LT_AC_TRY_DLOPEN_SELF' => 1,
'_LT_AC_SYS_LIBPATH_AIX' => 1, '_LT_AC_SYS_LIBPATH_AIX' => 1,

View File

@@ -1,8 +1,8 @@
m4trace:aclocal.m4:880: -1- m4_include([acinclude/libtool.m4]) m4trace:aclocal.m4:952: -1- m4_include([acinclude/libtool.m4])
m4trace:aclocal.m4:881: -1- m4_include([acinclude/ltoptions.m4]) m4trace:aclocal.m4:953: -1- m4_include([acinclude/ltoptions.m4])
m4trace:aclocal.m4:882: -1- m4_include([acinclude/ltsugar.m4]) m4trace:aclocal.m4:954: -1- m4_include([acinclude/ltsugar.m4])
m4trace:aclocal.m4:883: -1- m4_include([acinclude/ltversion.m4]) m4trace:aclocal.m4:955: -1- m4_include([acinclude/ltversion.m4])
m4trace:aclocal.m4:884: -1- m4_include([acinclude/lt~obsolete.m4]) m4trace:aclocal.m4:956: -1- m4_include([acinclude/lt~obsolete.m4])
m4trace:configure.ac:9: -1- AC_INIT([modsecurity], [2.5], [support@modsecurity.org]) m4trace:configure.ac:9: -1- AC_INIT([modsecurity], [2.5], [support@modsecurity.org])
m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?A[CHUM]_]) m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?A[CHUM]_])
m4trace:configure.ac:9: -1- m4_pattern_forbid([_AC_]) m4trace:configure.ac:9: -1- m4_pattern_forbid([_AC_])
@@ -155,7 +155,7 @@ m4trace:configure.ac:13: -1- AC_CONFIG_HEADERS([modsecurity_config_auto.h])
m4trace:configure.ac:14: -1- AC_CONFIG_AUX_DIR([build]) m4trace:configure.ac:14: -1- AC_CONFIG_AUX_DIR([build])
m4trace:configure.ac:17: -1- AM_INIT_AUTOMAKE([-Wall -Werror foreign]) m4trace:configure.ac:17: -1- AM_INIT_AUTOMAKE([-Wall -Werror foreign])
m4trace:configure.ac:17: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) m4trace:configure.ac:17: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
m4trace:configure.ac:17: -1- AM_AUTOMAKE_VERSION([1.10.2]) m4trace:configure.ac:17: -1- AM_AUTOMAKE_VERSION([1.11.1])
m4trace:configure.ac:17: -1- AC_REQUIRE_AUX_FILE([install-sh]) m4trace:configure.ac:17: -1- AC_REQUIRE_AUX_FILE([install-sh])
m4trace:configure.ac:17: -1- AC_SUBST([INSTALL_PROGRAM]) m4trace:configure.ac:17: -1- AC_SUBST([INSTALL_PROGRAM])
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([INSTALL_PROGRAM]) m4trace:configure.ac:17: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
@@ -663,288 +663,364 @@ m4trace:configure.ac:67: -1- m4_pattern_allow([^MSC_REGRESSION_LOGS_DIR$])
m4trace:configure.ac:68: -1- AC_SUBST([MSC_REGRESSION_DOCROOT_DIR]) m4trace:configure.ac:68: -1- AC_SUBST([MSC_REGRESSION_DOCROOT_DIR])
m4trace:configure.ac:68: -1- AC_SUBST_TRACE([MSC_REGRESSION_DOCROOT_DIR]) m4trace:configure.ac:68: -1- AC_SUBST_TRACE([MSC_REGRESSION_DOCROOT_DIR])
m4trace:configure.ac:68: -1- m4_pattern_allow([^MSC_REGRESSION_DOCROOT_DIR$]) m4trace:configure.ac:68: -1- m4_pattern_allow([^MSC_REGRESSION_DOCROOT_DIR$])
m4trace:configure.ac:88: -1- AM_CONDITIONAL([BUILD_APACHE2_MODULE], [test "$build_apache2_module" -eq 1]) m4trace:configure.ac:74: -1- AC_CANONICAL_HOST
m4trace:configure.ac:88: -1- AC_SUBST([BUILD_APACHE2_MODULE_TRUE]) m4trace:configure.ac:78: -1- AH_OUTPUT([LINUX], [/* Define if the operating system is LINUX */
m4trace:configure.ac:88: -1- AC_SUBST_TRACE([BUILD_APACHE2_MODULE_TRUE]) @%:@undef LINUX])
m4trace:configure.ac:88: -1- m4_pattern_allow([^BUILD_APACHE2_MODULE_TRUE$]) m4trace:configure.ac:79: -1- AH_OUTPUT([OPENBSD], [/* Define if the operating system is OpenBSD */
m4trace:configure.ac:88: -1- AC_SUBST([BUILD_APACHE2_MODULE_FALSE]) @%:@undef OPENBSD])
m4trace:configure.ac:88: -1- AC_SUBST_TRACE([BUILD_APACHE2_MODULE_FALSE]) m4trace:configure.ac:80: -1- AH_OUTPUT([SOLARIS], [/* Define if the operating system is SOLARIS */
m4trace:configure.ac:88: -1- m4_pattern_allow([^BUILD_APACHE2_MODULE_FALSE$]) @%:@undef SOLARIS])
m4trace:configure.ac:88: -1- _AM_SUBST_NOTMAKE([BUILD_APACHE2_MODULE_TRUE]) m4trace:configure.ac:82: -1- AH_OUTPUT([MACOSX], [/* Define if the operating system is Macintosh OSX */
m4trace:configure.ac:88: -1- _AM_SUBST_NOTMAKE([BUILD_APACHE2_MODULE_FALSE]) @%:@undef MACOSX])
m4trace:configure.ac:108: -1- AM_CONDITIONAL([BUILD_extentions], [test "$build_extentions" -eq 1]) m4trace:configure.ac:83: -1- AH_OUTPUT([FREEBSD], [/* Define if the operating system is FREEBSD */
m4trace:configure.ac:108: -1- AC_SUBST([BUILD_extentions_TRUE]) @%:@undef FREEBSD])
m4trace:configure.ac:108: -1- AC_SUBST_TRACE([BUILD_extentions_TRUE]) m4trace:configure.ac:84: -1- AH_OUTPUT([NETBSD], [/* Define if the operating system is NetBSD */
m4trace:configure.ac:108: -1- m4_pattern_allow([^BUILD_extentions_TRUE$]) @%:@undef NETBSD])
m4trace:configure.ac:108: -1- AC_SUBST([BUILD_extentions_FALSE]) m4trace:configure.ac:118: -1- AM_CONDITIONAL([MACOSX], [test x$macos = xtrue])
m4trace:configure.ac:108: -1- AC_SUBST_TRACE([BUILD_extentions_FALSE]) m4trace:configure.ac:118: -1- AC_SUBST([MACOSX_TRUE])
m4trace:configure.ac:108: -1- m4_pattern_allow([^BUILD_extentions_FALSE$]) m4trace:configure.ac:118: -1- AC_SUBST_TRACE([MACOSX_TRUE])
m4trace:configure.ac:108: -1- _AM_SUBST_NOTMAKE([BUILD_extentions_TRUE]) m4trace:configure.ac:118: -1- m4_pattern_allow([^MACOSX_TRUE$])
m4trace:configure.ac:108: -1- _AM_SUBST_NOTMAKE([BUILD_extentions_FALSE]) m4trace:configure.ac:118: -1- AC_SUBST([MACOSX_FALSE])
m4trace:configure.ac:128: -1- AM_CONDITIONAL([BUILD_MLOGC], [test "$build_mlogc" -eq 1]) m4trace:configure.ac:118: -1- AC_SUBST_TRACE([MACOSX_FALSE])
m4trace:configure.ac:128: -1- AC_SUBST([BUILD_MLOGC_TRUE]) m4trace:configure.ac:118: -1- m4_pattern_allow([^MACOSX_FALSE$])
m4trace:configure.ac:128: -1- AC_SUBST_TRACE([BUILD_MLOGC_TRUE]) m4trace:configure.ac:118: -1- _AM_SUBST_NOTMAKE([MACOSX_TRUE])
m4trace:configure.ac:128: -1- m4_pattern_allow([^BUILD_MLOGC_TRUE$]) m4trace:configure.ac:118: -1- _AM_SUBST_NOTMAKE([MACOSX_FALSE])
m4trace:configure.ac:128: -1- AC_SUBST([BUILD_MLOGC_FALSE]) m4trace:configure.ac:119: -1- AM_CONDITIONAL([LINUX], [test x$linuxos = xtrue])
m4trace:configure.ac:128: -1- AC_SUBST_TRACE([BUILD_MLOGC_FALSE]) m4trace:configure.ac:119: -1- AC_SUBST([LINUX_TRUE])
m4trace:configure.ac:128: -1- m4_pattern_allow([^BUILD_MLOGC_FALSE$]) m4trace:configure.ac:119: -1- AC_SUBST_TRACE([LINUX_TRUE])
m4trace:configure.ac:128: -1- _AM_SUBST_NOTMAKE([BUILD_MLOGC_TRUE]) m4trace:configure.ac:119: -1- m4_pattern_allow([^LINUX_TRUE$])
m4trace:configure.ac:128: -1- _AM_SUBST_NOTMAKE([BUILD_MLOGC_FALSE]) m4trace:configure.ac:119: -1- AC_SUBST([LINUX_FALSE])
m4trace:configure.ac:147: -1- AM_CONDITIONAL([BUILD_ALP2], [test "$build_alp2" -eq 1]) m4trace:configure.ac:119: -1- AC_SUBST_TRACE([LINUX_FALSE])
m4trace:configure.ac:147: -1- AC_SUBST([BUILD_ALP2_TRUE]) m4trace:configure.ac:119: -1- m4_pattern_allow([^LINUX_FALSE$])
m4trace:configure.ac:147: -1- AC_SUBST_TRACE([BUILD_ALP2_TRUE]) m4trace:configure.ac:119: -1- _AM_SUBST_NOTMAKE([LINUX_TRUE])
m4trace:configure.ac:147: -1- m4_pattern_allow([^BUILD_ALP2_TRUE$]) m4trace:configure.ac:119: -1- _AM_SUBST_NOTMAKE([LINUX_FALSE])
m4trace:configure.ac:147: -1- AC_SUBST([BUILD_ALP2_FALSE]) m4trace:configure.ac:120: -1- AM_CONDITIONAL([SOLARIS], [test x$solarisos = xtrue])
m4trace:configure.ac:147: -1- AC_SUBST_TRACE([BUILD_ALP2_FALSE]) m4trace:configure.ac:120: -1- AC_SUBST([SOLARIS_TRUE])
m4trace:configure.ac:147: -1- m4_pattern_allow([^BUILD_ALP2_FALSE$]) m4trace:configure.ac:120: -1- AC_SUBST_TRACE([SOLARIS_TRUE])
m4trace:configure.ac:147: -1- _AM_SUBST_NOTMAKE([BUILD_ALP2_TRUE]) m4trace:configure.ac:120: -1- m4_pattern_allow([^SOLARIS_TRUE$])
m4trace:configure.ac:147: -1- _AM_SUBST_NOTMAKE([BUILD_ALP2_FALSE]) m4trace:configure.ac:120: -1- AC_SUBST([SOLARIS_FALSE])
m4trace:configure.ac:166: -1- AM_CONDITIONAL([BUILD_DOCS], [test "$build_docs" -eq 1]) m4trace:configure.ac:120: -1- AC_SUBST_TRACE([SOLARIS_FALSE])
m4trace:configure.ac:166: -1- AC_SUBST([BUILD_DOCS_TRUE]) m4trace:configure.ac:120: -1- m4_pattern_allow([^SOLARIS_FALSE$])
m4trace:configure.ac:166: -1- AC_SUBST_TRACE([BUILD_DOCS_TRUE]) m4trace:configure.ac:120: -1- _AM_SUBST_NOTMAKE([SOLARIS_TRUE])
m4trace:configure.ac:166: -1- m4_pattern_allow([^BUILD_DOCS_TRUE$]) m4trace:configure.ac:120: -1- _AM_SUBST_NOTMAKE([SOLARIS_FALSE])
m4trace:configure.ac:166: -1- AC_SUBST([BUILD_DOCS_FALSE]) m4trace:configure.ac:121: -1- AM_CONDITIONAL([FREEBSD], [test x$freebsdos = xtrue])
m4trace:configure.ac:166: -1- AC_SUBST_TRACE([BUILD_DOCS_FALSE]) m4trace:configure.ac:121: -1- AC_SUBST([FREEBSD_TRUE])
m4trace:configure.ac:166: -1- m4_pattern_allow([^BUILD_DOCS_FALSE$]) m4trace:configure.ac:121: -1- AC_SUBST_TRACE([FREEBSD_TRUE])
m4trace:configure.ac:166: -1- _AM_SUBST_NOTMAKE([BUILD_DOCS_TRUE]) m4trace:configure.ac:121: -1- m4_pattern_allow([^FREEBSD_TRUE$])
m4trace:configure.ac:166: -1- _AM_SUBST_NOTMAKE([BUILD_DOCS_FALSE]) m4trace:configure.ac:121: -1- AC_SUBST([FREEBSD_FALSE])
m4trace:configure.ac:464: -1- sinclude([build/find_pcre.m4]) m4trace:configure.ac:121: -1- AC_SUBST_TRACE([FREEBSD_FALSE])
m4trace:configure.ac:465: -1- sinclude([build/find_apr.m4]) m4trace:configure.ac:121: -1- m4_pattern_allow([^FREEBSD_FALSE$])
m4trace:configure.ac:466: -1- sinclude([build/find_apu.m4]) m4trace:configure.ac:121: -1- _AM_SUBST_NOTMAKE([FREEBSD_TRUE])
m4trace:configure.ac:467: -1- sinclude([build/find_xml.m4]) m4trace:configure.ac:121: -1- _AM_SUBST_NOTMAKE([FREEBSD_FALSE])
m4trace:configure.ac:468: -1- sinclude([build/find_lua.m4]) m4trace:configure.ac:122: -1- AM_CONDITIONAL([OPENBSD], [test x$openbsdos = xtrue])
m4trace:configure.ac:469: -1- sinclude([build/find_curl.m4]) m4trace:configure.ac:122: -1- AC_SUBST([OPENBSD_TRUE])
m4trace:configure.ac:500: -1- AC_SUBST([TOPLEVEL_SUBDIRS]) m4trace:configure.ac:122: -1- AC_SUBST_TRACE([OPENBSD_TRUE])
m4trace:configure.ac:500: -1- AC_SUBST_TRACE([TOPLEVEL_SUBDIRS]) m4trace:configure.ac:122: -1- m4_pattern_allow([^OPENBSD_TRUE$])
m4trace:configure.ac:500: -1- m4_pattern_allow([^TOPLEVEL_SUBDIRS$]) m4trace:configure.ac:122: -1- AC_SUBST([OPENBSD_FALSE])
m4trace:configure.ac:501: -1- AC_SUBST([EXTRA_CFLAGS]) m4trace:configure.ac:122: -1- AC_SUBST_TRACE([OPENBSD_FALSE])
m4trace:configure.ac:501: -1- AC_SUBST_TRACE([EXTRA_CFLAGS]) m4trace:configure.ac:122: -1- m4_pattern_allow([^OPENBSD_FALSE$])
m4trace:configure.ac:501: -1- m4_pattern_allow([^EXTRA_CFLAGS$]) m4trace:configure.ac:122: -1- _AM_SUBST_NOTMAKE([OPENBSD_TRUE])
m4trace:configure.ac:502: -1- AC_SUBST([MODSEC_EXTRA_CFLAGS]) m4trace:configure.ac:122: -1- _AM_SUBST_NOTMAKE([OPENBSD_FALSE])
m4trace:configure.ac:502: -1- AC_SUBST_TRACE([MODSEC_EXTRA_CFLAGS]) m4trace:configure.ac:123: -1- AM_CONDITIONAL([NETBSD], [test x$netbsdos = xtrue])
m4trace:configure.ac:502: -1- m4_pattern_allow([^MODSEC_EXTRA_CFLAGS$]) m4trace:configure.ac:123: -1- AC_SUBST([NETBSD_TRUE])
m4trace:configure.ac:503: -1- AC_SUBST([APXS]) m4trace:configure.ac:123: -1- AC_SUBST_TRACE([NETBSD_TRUE])
m4trace:configure.ac:503: -1- AC_SUBST_TRACE([APXS]) m4trace:configure.ac:123: -1- m4_pattern_allow([^NETBSD_TRUE$])
m4trace:configure.ac:503: -1- m4_pattern_allow([^APXS$]) m4trace:configure.ac:123: -1- AC_SUBST([NETBSD_FALSE])
m4trace:configure.ac:504: -1- AC_SUBST([APXS_WRAPPER]) m4trace:configure.ac:123: -1- AC_SUBST_TRACE([NETBSD_FALSE])
m4trace:configure.ac:504: -1- AC_SUBST_TRACE([APXS_WRAPPER]) m4trace:configure.ac:123: -1- m4_pattern_allow([^NETBSD_FALSE$])
m4trace:configure.ac:504: -1- m4_pattern_allow([^APXS_WRAPPER$]) m4trace:configure.ac:123: -1- _AM_SUBST_NOTMAKE([NETBSD_TRUE])
m4trace:configure.ac:505: -1- AC_SUBST([APXS_INCLUDEDIR]) m4trace:configure.ac:123: -1- _AM_SUBST_NOTMAKE([NETBSD_FALSE])
m4trace:configure.ac:505: -1- AC_SUBST_TRACE([APXS_INCLUDEDIR]) m4trace:configure.ac:142: -1- AM_CONDITIONAL([BUILD_APACHE2_MODULE], [test "$build_apache2_module" -eq 1])
m4trace:configure.ac:505: -1- m4_pattern_allow([^APXS_INCLUDEDIR$]) m4trace:configure.ac:142: -1- AC_SUBST([BUILD_APACHE2_MODULE_TRUE])
m4trace:configure.ac:506: -1- AC_SUBST([APXS_INCLUDES]) m4trace:configure.ac:142: -1- AC_SUBST_TRACE([BUILD_APACHE2_MODULE_TRUE])
m4trace:configure.ac:506: -1- AC_SUBST_TRACE([APXS_INCLUDES]) m4trace:configure.ac:142: -1- m4_pattern_allow([^BUILD_APACHE2_MODULE_TRUE$])
m4trace:configure.ac:506: -1- m4_pattern_allow([^APXS_INCLUDES$]) m4trace:configure.ac:142: -1- AC_SUBST([BUILD_APACHE2_MODULE_FALSE])
m4trace:configure.ac:507: -1- AC_SUBST([APXS_EXTRA_CFLAGS]) m4trace:configure.ac:142: -1- AC_SUBST_TRACE([BUILD_APACHE2_MODULE_FALSE])
m4trace:configure.ac:507: -1- AC_SUBST_TRACE([APXS_EXTRA_CFLAGS]) m4trace:configure.ac:142: -1- m4_pattern_allow([^BUILD_APACHE2_MODULE_FALSE$])
m4trace:configure.ac:507: -1- m4_pattern_allow([^APXS_EXTRA_CFLAGS$]) m4trace:configure.ac:142: -1- _AM_SUBST_NOTMAKE([BUILD_APACHE2_MODULE_TRUE])
m4trace:configure.ac:508: -1- AC_SUBST([MODSEC_APXS_EXTRA_CFLAGS]) m4trace:configure.ac:142: -1- _AM_SUBST_NOTMAKE([BUILD_APACHE2_MODULE_FALSE])
m4trace:configure.ac:508: -1- AC_SUBST_TRACE([MODSEC_APXS_EXTRA_CFLAGS]) m4trace:configure.ac:162: -1- AM_CONDITIONAL([BUILD_extentions], [test "$build_extentions" -eq 1])
m4trace:configure.ac:508: -1- m4_pattern_allow([^MODSEC_APXS_EXTRA_CFLAGS$]) m4trace:configure.ac:162: -1- AC_SUBST([BUILD_extentions_TRUE])
m4trace:configure.ac:509: -1- AC_SUBST([APXS_LDFLAGS]) m4trace:configure.ac:162: -1- AC_SUBST_TRACE([BUILD_extentions_TRUE])
m4trace:configure.ac:509: -1- AC_SUBST_TRACE([APXS_LDFLAGS]) m4trace:configure.ac:162: -1- m4_pattern_allow([^BUILD_extentions_TRUE$])
m4trace:configure.ac:509: -1- m4_pattern_allow([^APXS_LDFLAGS$]) m4trace:configure.ac:162: -1- AC_SUBST([BUILD_extentions_FALSE])
m4trace:configure.ac:510: -1- AC_SUBST([APXS_LIBS]) m4trace:configure.ac:162: -1- AC_SUBST_TRACE([BUILD_extentions_FALSE])
m4trace:configure.ac:510: -1- AC_SUBST_TRACE([APXS_LIBS]) m4trace:configure.ac:162: -1- m4_pattern_allow([^BUILD_extentions_FALSE$])
m4trace:configure.ac:510: -1- m4_pattern_allow([^APXS_LIBS$]) m4trace:configure.ac:162: -1- _AM_SUBST_NOTMAKE([BUILD_extentions_TRUE])
m4trace:configure.ac:511: -1- AC_SUBST([APXS_CFLAGS]) m4trace:configure.ac:162: -1- _AM_SUBST_NOTMAKE([BUILD_extentions_FALSE])
m4trace:configure.ac:511: -1- AC_SUBST_TRACE([APXS_CFLAGS]) m4trace:configure.ac:182: -1- AM_CONDITIONAL([BUILD_MLOGC], [test "$build_mlogc" -eq 1])
m4trace:configure.ac:511: -1- m4_pattern_allow([^APXS_CFLAGS$]) m4trace:configure.ac:182: -1- AC_SUBST([BUILD_MLOGC_TRUE])
m4trace:configure.ac:512: -1- AC_SUBST([APXS_LIBTOOL]) m4trace:configure.ac:182: -1- AC_SUBST_TRACE([BUILD_MLOGC_TRUE])
m4trace:configure.ac:512: -1- AC_SUBST_TRACE([APXS_LIBTOOL]) m4trace:configure.ac:182: -1- m4_pattern_allow([^BUILD_MLOGC_TRUE$])
m4trace:configure.ac:512: -1- m4_pattern_allow([^APXS_LIBTOOL$]) m4trace:configure.ac:182: -1- AC_SUBST([BUILD_MLOGC_FALSE])
m4trace:configure.ac:513: -1- AC_SUBST([APXS_CC]) m4trace:configure.ac:182: -1- AC_SUBST_TRACE([BUILD_MLOGC_FALSE])
m4trace:configure.ac:513: -1- AC_SUBST_TRACE([APXS_CC]) m4trace:configure.ac:182: -1- m4_pattern_allow([^BUILD_MLOGC_FALSE$])
m4trace:configure.ac:513: -1- m4_pattern_allow([^APXS_CC$]) m4trace:configure.ac:182: -1- _AM_SUBST_NOTMAKE([BUILD_MLOGC_TRUE])
m4trace:configure.ac:514: -1- AC_SUBST([APXS_LIBDIR]) m4trace:configure.ac:182: -1- _AM_SUBST_NOTMAKE([BUILD_MLOGC_FALSE])
m4trace:configure.ac:514: -1- AC_SUBST_TRACE([APXS_LIBDIR]) m4trace:configure.ac:201: -1- AM_CONDITIONAL([BUILD_ALP2], [test "$build_alp2" -eq 1])
m4trace:configure.ac:514: -1- m4_pattern_allow([^APXS_LIBDIR$]) m4trace:configure.ac:201: -1- AC_SUBST([BUILD_ALP2_TRUE])
m4trace:configure.ac:515: -1- AC_SUBST([APXS_BINDIR]) m4trace:configure.ac:201: -1- AC_SUBST_TRACE([BUILD_ALP2_TRUE])
m4trace:configure.ac:515: -1- AC_SUBST_TRACE([APXS_BINDIR]) m4trace:configure.ac:201: -1- m4_pattern_allow([^BUILD_ALP2_TRUE$])
m4trace:configure.ac:515: -1- m4_pattern_allow([^APXS_BINDIR$]) m4trace:configure.ac:201: -1- AC_SUBST([BUILD_ALP2_FALSE])
m4trace:configure.ac:516: -1- AC_SUBST([APXS_SBINDIR]) m4trace:configure.ac:201: -1- AC_SUBST_TRACE([BUILD_ALP2_FALSE])
m4trace:configure.ac:516: -1- AC_SUBST_TRACE([APXS_SBINDIR]) m4trace:configure.ac:201: -1- m4_pattern_allow([^BUILD_ALP2_FALSE$])
m4trace:configure.ac:516: -1- m4_pattern_allow([^APXS_SBINDIR$]) m4trace:configure.ac:201: -1- _AM_SUBST_NOTMAKE([BUILD_ALP2_TRUE])
m4trace:configure.ac:517: -1- AC_SUBST([APXS_PROGNAME]) m4trace:configure.ac:201: -1- _AM_SUBST_NOTMAKE([BUILD_ALP2_FALSE])
m4trace:configure.ac:517: -1- AC_SUBST_TRACE([APXS_PROGNAME]) m4trace:configure.ac:220: -1- AM_CONDITIONAL([BUILD_DOCS], [test "$build_docs" -eq 1])
m4trace:configure.ac:517: -1- m4_pattern_allow([^APXS_PROGNAME$]) m4trace:configure.ac:220: -1- AC_SUBST([BUILD_DOCS_TRUE])
m4trace:configure.ac:518: -1- AC_SUBST([APXS_LIBEXECDIR]) m4trace:configure.ac:220: -1- AC_SUBST_TRACE([BUILD_DOCS_TRUE])
m4trace:configure.ac:518: -1- AC_SUBST_TRACE([APXS_LIBEXECDIR]) m4trace:configure.ac:220: -1- m4_pattern_allow([^BUILD_DOCS_TRUE$])
m4trace:configure.ac:518: -1- m4_pattern_allow([^APXS_LIBEXECDIR$]) m4trace:configure.ac:220: -1- AC_SUBST([BUILD_DOCS_FALSE])
m4trace:configure.ac:519: -1- AC_SUBST([APXS_MODULES]) m4trace:configure.ac:220: -1- AC_SUBST_TRACE([BUILD_DOCS_FALSE])
m4trace:configure.ac:519: -1- AC_SUBST_TRACE([APXS_MODULES]) m4trace:configure.ac:220: -1- m4_pattern_allow([^BUILD_DOCS_FALSE$])
m4trace:configure.ac:519: -1- m4_pattern_allow([^APXS_MODULES$]) m4trace:configure.ac:220: -1- _AM_SUBST_NOTMAKE([BUILD_DOCS_TRUE])
m4trace:configure.ac:520: -1- AC_SUBST([APXS_HTTPD]) m4trace:configure.ac:220: -1- _AM_SUBST_NOTMAKE([BUILD_DOCS_FALSE])
m4trace:configure.ac:520: -1- AC_SUBST_TRACE([APXS_HTTPD]) m4trace:configure.ac:518: -1- sinclude([build/find_pcre.m4])
m4trace:configure.ac:520: -1- m4_pattern_allow([^APXS_HTTPD$]) m4trace:configure.ac:519: -1- sinclude([build/find_apr.m4])
m4trace:configure.ac:522: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:520: -1- sinclude([build/find_apu.m4])
m4trace:configure.ac:521: -1- sinclude([build/find_xml.m4])
m4trace:configure.ac:522: -1- sinclude([build/find_lua.m4])
m4trace:configure.ac:523: -1- sinclude([build/find_curl.m4])
m4trace:configure.ac:554: -1- AC_SUBST([TOPLEVEL_SUBDIRS])
m4trace:configure.ac:554: -1- AC_SUBST_TRACE([TOPLEVEL_SUBDIRS])
m4trace:configure.ac:554: -1- m4_pattern_allow([^TOPLEVEL_SUBDIRS$])
m4trace:configure.ac:555: -1- AC_SUBST([EXTRA_CFLAGS])
m4trace:configure.ac:555: -1- AC_SUBST_TRACE([EXTRA_CFLAGS])
m4trace:configure.ac:555: -1- m4_pattern_allow([^EXTRA_CFLAGS$])
m4trace:configure.ac:556: -1- AC_SUBST([MODSEC_EXTRA_CFLAGS])
m4trace:configure.ac:556: -1- AC_SUBST_TRACE([MODSEC_EXTRA_CFLAGS])
m4trace:configure.ac:556: -1- m4_pattern_allow([^MODSEC_EXTRA_CFLAGS$])
m4trace:configure.ac:557: -1- AC_SUBST([APXS])
m4trace:configure.ac:557: -1- AC_SUBST_TRACE([APXS])
m4trace:configure.ac:557: -1- m4_pattern_allow([^APXS$])
m4trace:configure.ac:558: -1- AC_SUBST([APXS_WRAPPER])
m4trace:configure.ac:558: -1- AC_SUBST_TRACE([APXS_WRAPPER])
m4trace:configure.ac:558: -1- m4_pattern_allow([^APXS_WRAPPER$])
m4trace:configure.ac:559: -1- AC_SUBST([APXS_INCLUDEDIR])
m4trace:configure.ac:559: -1- AC_SUBST_TRACE([APXS_INCLUDEDIR])
m4trace:configure.ac:559: -1- m4_pattern_allow([^APXS_INCLUDEDIR$])
m4trace:configure.ac:560: -1- AC_SUBST([APXS_INCLUDES])
m4trace:configure.ac:560: -1- AC_SUBST_TRACE([APXS_INCLUDES])
m4trace:configure.ac:560: -1- m4_pattern_allow([^APXS_INCLUDES$])
m4trace:configure.ac:561: -1- AC_SUBST([APXS_EXTRA_CFLAGS])
m4trace:configure.ac:561: -1- AC_SUBST_TRACE([APXS_EXTRA_CFLAGS])
m4trace:configure.ac:561: -1- m4_pattern_allow([^APXS_EXTRA_CFLAGS$])
m4trace:configure.ac:562: -1- AC_SUBST([MODSEC_APXS_EXTRA_CFLAGS])
m4trace:configure.ac:562: -1- AC_SUBST_TRACE([MODSEC_APXS_EXTRA_CFLAGS])
m4trace:configure.ac:562: -1- m4_pattern_allow([^MODSEC_APXS_EXTRA_CFLAGS$])
m4trace:configure.ac:563: -1- AC_SUBST([APXS_LDFLAGS])
m4trace:configure.ac:563: -1- AC_SUBST_TRACE([APXS_LDFLAGS])
m4trace:configure.ac:563: -1- m4_pattern_allow([^APXS_LDFLAGS$])
m4trace:configure.ac:564: -1- AC_SUBST([APXS_LIBS])
m4trace:configure.ac:564: -1- AC_SUBST_TRACE([APXS_LIBS])
m4trace:configure.ac:564: -1- m4_pattern_allow([^APXS_LIBS$])
m4trace:configure.ac:565: -1- AC_SUBST([APXS_CFLAGS])
m4trace:configure.ac:565: -1- AC_SUBST_TRACE([APXS_CFLAGS])
m4trace:configure.ac:565: -1- m4_pattern_allow([^APXS_CFLAGS$])
m4trace:configure.ac:566: -1- AC_SUBST([APXS_LIBTOOL])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([APXS_LIBTOOL])
m4trace:configure.ac:566: -1- m4_pattern_allow([^APXS_LIBTOOL$])
m4trace:configure.ac:567: -1- AC_SUBST([APXS_CC])
m4trace:configure.ac:567: -1- AC_SUBST_TRACE([APXS_CC])
m4trace:configure.ac:567: -1- m4_pattern_allow([^APXS_CC$])
m4trace:configure.ac:568: -1- AC_SUBST([APXS_LIBDIR])
m4trace:configure.ac:568: -1- AC_SUBST_TRACE([APXS_LIBDIR])
m4trace:configure.ac:568: -1- m4_pattern_allow([^APXS_LIBDIR$])
m4trace:configure.ac:569: -1- AC_SUBST([APXS_BINDIR])
m4trace:configure.ac:569: -1- AC_SUBST_TRACE([APXS_BINDIR])
m4trace:configure.ac:569: -1- m4_pattern_allow([^APXS_BINDIR$])
m4trace:configure.ac:570: -1- AC_SUBST([APXS_SBINDIR])
m4trace:configure.ac:570: -1- AC_SUBST_TRACE([APXS_SBINDIR])
m4trace:configure.ac:570: -1- m4_pattern_allow([^APXS_SBINDIR$])
m4trace:configure.ac:571: -1- AC_SUBST([APXS_PROGNAME])
m4trace:configure.ac:571: -1- AC_SUBST_TRACE([APXS_PROGNAME])
m4trace:configure.ac:571: -1- m4_pattern_allow([^APXS_PROGNAME$])
m4trace:configure.ac:572: -1- AC_SUBST([APXS_LIBEXECDIR])
m4trace:configure.ac:572: -1- AC_SUBST_TRACE([APXS_LIBEXECDIR])
m4trace:configure.ac:572: -1- m4_pattern_allow([^APXS_LIBEXECDIR$])
m4trace:configure.ac:573: -1- AC_SUBST([APXS_MODULES])
m4trace:configure.ac:573: -1- AC_SUBST_TRACE([APXS_MODULES])
m4trace:configure.ac:573: -1- m4_pattern_allow([^APXS_MODULES$])
m4trace:configure.ac:574: -1- AC_SUBST([APXS_HTTPD])
m4trace:configure.ac:574: -1- AC_SUBST_TRACE([APXS_HTTPD])
m4trace:configure.ac:574: -1- m4_pattern_allow([^APXS_HTTPD$])
m4trace:configure.ac:576: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_pcre.m4:14: CHECK_PCRE is expanded from... build/find_pcre.m4:14: CHECK_PCRE is expanded from...
configure.ac:522: the top level]) configure.ac:576: the top level])
m4trace:configure.ac:522: -1- AC_SUBST([PCRE_CONFIG]) m4trace:configure.ac:576: -1- AC_SUBST([PCRE_CONFIG])
m4trace:configure.ac:522: -1- AC_SUBST_TRACE([PCRE_CONFIG]) m4trace:configure.ac:576: -1- AC_SUBST_TRACE([PCRE_CONFIG])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_CONFIG$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_CONFIG$])
m4trace:configure.ac:522: -1- AC_SUBST([PCRE_VERSION]) m4trace:configure.ac:576: -1- AC_SUBST([PCRE_VERSION])
m4trace:configure.ac:522: -1- AC_SUBST_TRACE([PCRE_VERSION]) m4trace:configure.ac:576: -1- AC_SUBST_TRACE([PCRE_VERSION])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_VERSION$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_VERSION$])
m4trace:configure.ac:522: -1- AC_SUBST([PCRE_CPPFLAGS]) m4trace:configure.ac:576: -1- AC_SUBST([PCRE_CPPFLAGS])
m4trace:configure.ac:522: -1- AC_SUBST_TRACE([PCRE_CPPFLAGS]) m4trace:configure.ac:576: -1- AC_SUBST_TRACE([PCRE_CPPFLAGS])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_CPPFLAGS$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_CPPFLAGS$])
m4trace:configure.ac:522: -1- AC_SUBST([PCRE_CFLAGS]) m4trace:configure.ac:576: -1- AC_SUBST([PCRE_CFLAGS])
m4trace:configure.ac:522: -1- AC_SUBST_TRACE([PCRE_CFLAGS]) m4trace:configure.ac:576: -1- AC_SUBST_TRACE([PCRE_CFLAGS])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_CFLAGS$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_CFLAGS$])
m4trace:configure.ac:522: -1- AC_SUBST([PCRE_LDFLAGS]) m4trace:configure.ac:576: -1- AC_SUBST([PCRE_LDFLAGS])
m4trace:configure.ac:522: -1- AC_SUBST_TRACE([PCRE_LDFLAGS]) m4trace:configure.ac:576: -1- AC_SUBST_TRACE([PCRE_LDFLAGS])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_LDFLAGS$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_LDFLAGS$])
m4trace:configure.ac:522: -1- AC_SUBST([PCRE_LDADD]) m4trace:configure.ac:576: -1- AC_SUBST([PCRE_LDADD])
m4trace:configure.ac:522: -1- AC_SUBST_TRACE([PCRE_LDADD]) m4trace:configure.ac:576: -1- AC_SUBST_TRACE([PCRE_LDADD])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_LDADD$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_LDADD$])
m4trace:configure.ac:524: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:578: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_apr.m4:15: CHECK_APR is expanded from... build/find_apr.m4:15: CHECK_APR is expanded from...
configure.ac:524: the top level]) configure.ac:578: the top level])
m4trace:configure.ac:524: -1- AC_SUBST([APR_CONFIG]) m4trace:configure.ac:578: -1- AC_SUBST([APR_CONFIG])
m4trace:configure.ac:524: -1- AC_SUBST_TRACE([APR_CONFIG]) m4trace:configure.ac:578: -1- AC_SUBST_TRACE([APR_CONFIG])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_CONFIG$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_CONFIG$])
m4trace:configure.ac:524: -1- AC_SUBST([APR_VERSION]) m4trace:configure.ac:578: -1- AC_SUBST([APR_VERSION])
m4trace:configure.ac:524: -1- AC_SUBST_TRACE([APR_VERSION]) m4trace:configure.ac:578: -1- AC_SUBST_TRACE([APR_VERSION])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_VERSION$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_VERSION$])
m4trace:configure.ac:524: -1- AC_SUBST([APR_CFLAGS]) m4trace:configure.ac:578: -1- AC_SUBST([APR_CFLAGS])
m4trace:configure.ac:524: -1- AC_SUBST_TRACE([APR_CFLAGS]) m4trace:configure.ac:578: -1- AC_SUBST_TRACE([APR_CFLAGS])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_CFLAGS$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_CFLAGS$])
m4trace:configure.ac:524: -1- AC_SUBST([APR_CPPFLAGS]) m4trace:configure.ac:578: -1- AC_SUBST([APR_CPPFLAGS])
m4trace:configure.ac:524: -1- AC_SUBST_TRACE([APR_CPPFLAGS]) m4trace:configure.ac:578: -1- AC_SUBST_TRACE([APR_CPPFLAGS])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_CPPFLAGS$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_CPPFLAGS$])
m4trace:configure.ac:524: -1- AC_SUBST([APR_LDFLAGS]) m4trace:configure.ac:578: -1- AC_SUBST([APR_LDFLAGS])
m4trace:configure.ac:524: -1- AC_SUBST_TRACE([APR_LDFLAGS]) m4trace:configure.ac:578: -1- AC_SUBST_TRACE([APR_LDFLAGS])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_LDFLAGS$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_LDFLAGS$])
m4trace:configure.ac:524: -1- AC_SUBST([APR_LDADD]) m4trace:configure.ac:578: -1- AC_SUBST([APR_LDADD])
m4trace:configure.ac:524: -1- AC_SUBST_TRACE([APR_LDADD]) m4trace:configure.ac:578: -1- AC_SUBST_TRACE([APR_LDADD])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_LDADD$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_LDADD$])
m4trace:configure.ac:525: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:579: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_apu.m4:14: CHECK_APU is expanded from... build/find_apu.m4:14: CHECK_APU is expanded from...
configure.ac:525: the top level]) configure.ac:579: the top level])
m4trace:configure.ac:525: -1- AC_SUBST([APU_CONFIG]) m4trace:configure.ac:579: -1- AC_SUBST([APU_CONFIG])
m4trace:configure.ac:525: -1- AC_SUBST_TRACE([APU_CONFIG]) m4trace:configure.ac:579: -1- AC_SUBST_TRACE([APU_CONFIG])
m4trace:configure.ac:525: -1- m4_pattern_allow([^APU_CONFIG$]) m4trace:configure.ac:579: -1- m4_pattern_allow([^APU_CONFIG$])
m4trace:configure.ac:525: -1- AC_SUBST([APU_VERSION]) m4trace:configure.ac:579: -1- AC_SUBST([APU_VERSION])
m4trace:configure.ac:525: -1- AC_SUBST_TRACE([APU_VERSION]) m4trace:configure.ac:579: -1- AC_SUBST_TRACE([APU_VERSION])
m4trace:configure.ac:525: -1- m4_pattern_allow([^APU_VERSION$]) m4trace:configure.ac:579: -1- m4_pattern_allow([^APU_VERSION$])
m4trace:configure.ac:525: -1- AC_SUBST([APU_CFLAGS]) m4trace:configure.ac:579: -1- AC_SUBST([APU_CFLAGS])
m4trace:configure.ac:525: -1- AC_SUBST_TRACE([APU_CFLAGS]) m4trace:configure.ac:579: -1- AC_SUBST_TRACE([APU_CFLAGS])
m4trace:configure.ac:525: -1- m4_pattern_allow([^APU_CFLAGS$]) m4trace:configure.ac:579: -1- m4_pattern_allow([^APU_CFLAGS$])
m4trace:configure.ac:525: -1- AC_SUBST([APU_LDFLAGS]) m4trace:configure.ac:579: -1- AC_SUBST([APU_LDFLAGS])
m4trace:configure.ac:525: -1- AC_SUBST_TRACE([APU_LDFLAGS]) m4trace:configure.ac:579: -1- AC_SUBST_TRACE([APU_LDFLAGS])
m4trace:configure.ac:525: -1- m4_pattern_allow([^APU_LDFLAGS$]) m4trace:configure.ac:579: -1- m4_pattern_allow([^APU_LDFLAGS$])
m4trace:configure.ac:525: -1- AC_SUBST([APU_LDADD]) m4trace:configure.ac:579: -1- AC_SUBST([APU_LDADD])
m4trace:configure.ac:525: -1- AC_SUBST_TRACE([APU_LDADD]) m4trace:configure.ac:579: -1- AC_SUBST_TRACE([APU_LDADD])
m4trace:configure.ac:525: -1- m4_pattern_allow([^APU_LDADD$]) m4trace:configure.ac:579: -1- m4_pattern_allow([^APU_LDADD$])
m4trace:configure.ac:527: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:581: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_xml.m4:14: CHECK_LIBXML2 is expanded from... build/find_xml.m4:14: CHECK_LIBXML2 is expanded from...
configure.ac:527: the top level]) configure.ac:581: the top level])
m4trace:configure.ac:527: -1- AC_SUBST([LIBXML2_CONFIG]) m4trace:configure.ac:581: -1- AC_SUBST([LIBXML2_CONFIG])
m4trace:configure.ac:527: -1- AC_SUBST_TRACE([LIBXML2_CONFIG]) m4trace:configure.ac:581: -1- AC_SUBST_TRACE([LIBXML2_CONFIG])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_CONFIG$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_CONFIG$])
m4trace:configure.ac:527: -1- AC_SUBST([LIBXML2_VERSION]) m4trace:configure.ac:581: -1- AC_SUBST([LIBXML2_VERSION])
m4trace:configure.ac:527: -1- AC_SUBST_TRACE([LIBXML2_VERSION]) m4trace:configure.ac:581: -1- AC_SUBST_TRACE([LIBXML2_VERSION])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_VERSION$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_VERSION$])
m4trace:configure.ac:527: -1- AC_SUBST([LIBXML2_CFLAGS]) m4trace:configure.ac:581: -1- AC_SUBST([LIBXML2_CFLAGS])
m4trace:configure.ac:527: -1- AC_SUBST_TRACE([LIBXML2_CFLAGS]) m4trace:configure.ac:581: -1- AC_SUBST_TRACE([LIBXML2_CFLAGS])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_CFLAGS$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_CFLAGS$])
m4trace:configure.ac:527: -1- AC_SUBST([LIBXML2_CPPFLAGS]) m4trace:configure.ac:581: -1- AC_SUBST([LIBXML2_CPPFLAGS])
m4trace:configure.ac:527: -1- AC_SUBST_TRACE([LIBXML2_CPPFLAGS]) m4trace:configure.ac:581: -1- AC_SUBST_TRACE([LIBXML2_CPPFLAGS])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_CPPFLAGS$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_CPPFLAGS$])
m4trace:configure.ac:527: -1- AC_SUBST([LIBXML2_LDADD]) m4trace:configure.ac:581: -1- AC_SUBST([LIBXML2_LDADD])
m4trace:configure.ac:527: -1- AC_SUBST_TRACE([LIBXML2_LDADD]) m4trace:configure.ac:581: -1- AC_SUBST_TRACE([LIBXML2_LDADD])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_LDADD$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_LDADD$])
m4trace:configure.ac:527: -1- AC_SUBST([LIBXML2_LDFLAGS]) m4trace:configure.ac:581: -1- AC_SUBST([LIBXML2_LDFLAGS])
m4trace:configure.ac:527: -1- AC_SUBST_TRACE([LIBXML2_LDFLAGS]) m4trace:configure.ac:581: -1- AC_SUBST_TRACE([LIBXML2_LDFLAGS])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_LDFLAGS$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_LDFLAGS$])
m4trace:configure.ac:528: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:582: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_lua.m4:17: CHECK_LUA is expanded from... build/find_lua.m4:17: CHECK_LUA is expanded from...
configure.ac:528: the top level]) configure.ac:582: the top level])
m4trace:configure.ac:528: -1- AC_SUBST([LUA_CONFIG]) m4trace:configure.ac:582: -1- AC_SUBST([LUA_CONFIG])
m4trace:configure.ac:528: -1- AC_SUBST_TRACE([LUA_CONFIG]) m4trace:configure.ac:582: -1- AC_SUBST_TRACE([LUA_CONFIG])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_CONFIG$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_CONFIG$])
m4trace:configure.ac:528: -1- AC_SUBST([LUA_VERSION]) m4trace:configure.ac:582: -1- AC_SUBST([LUA_VERSION])
m4trace:configure.ac:528: -1- AC_SUBST_TRACE([LUA_VERSION]) m4trace:configure.ac:582: -1- AC_SUBST_TRACE([LUA_VERSION])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_VERSION$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_VERSION$])
m4trace:configure.ac:528: -1- AC_SUBST([LUA_CFLAGS]) m4trace:configure.ac:582: -1- AC_SUBST([LUA_CFLAGS])
m4trace:configure.ac:528: -1- AC_SUBST_TRACE([LUA_CFLAGS]) m4trace:configure.ac:582: -1- AC_SUBST_TRACE([LUA_CFLAGS])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_CFLAGS$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_CFLAGS$])
m4trace:configure.ac:528: -1- AC_SUBST([LUA_CPPFLAGS]) m4trace:configure.ac:582: -1- AC_SUBST([LUA_CPPFLAGS])
m4trace:configure.ac:528: -1- AC_SUBST_TRACE([LUA_CPPFLAGS]) m4trace:configure.ac:582: -1- AC_SUBST_TRACE([LUA_CPPFLAGS])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_CPPFLAGS$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_CPPFLAGS$])
m4trace:configure.ac:528: -1- AC_SUBST([LUA_LDADD]) m4trace:configure.ac:582: -1- AC_SUBST([LUA_LDADD])
m4trace:configure.ac:528: -1- AC_SUBST_TRACE([LUA_LDADD]) m4trace:configure.ac:582: -1- AC_SUBST_TRACE([LUA_LDADD])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_LDADD$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_LDADD$])
m4trace:configure.ac:528: -1- AC_SUBST([LUA_LDFLAGS]) m4trace:configure.ac:582: -1- AC_SUBST([LUA_LDFLAGS])
m4trace:configure.ac:528: -1- AC_SUBST_TRACE([LUA_LDFLAGS]) m4trace:configure.ac:582: -1- AC_SUBST_TRACE([LUA_LDFLAGS])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_LDFLAGS$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_LDFLAGS$])
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:587: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_curl.m4:15: CHECK_CURL is expanded from... build/find_curl.m4:15: CHECK_CURL is expanded from...
configure.ac:533: the top level]) configure.ac:587: the top level])
m4trace:configure.ac:533: -1- AC_SUBST([CURL_CONFIG]) m4trace:configure.ac:587: -1- AC_SUBST([CURL_CONFIG])
m4trace:configure.ac:533: -1- AC_SUBST_TRACE([CURL_CONFIG]) m4trace:configure.ac:587: -1- AC_SUBST_TRACE([CURL_CONFIG])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_CONFIG$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_CONFIG$])
m4trace:configure.ac:533: -1- AC_SUBST([CURL_VERSION]) m4trace:configure.ac:587: -1- AC_SUBST([CURL_VERSION])
m4trace:configure.ac:533: -1- AC_SUBST_TRACE([CURL_VERSION]) m4trace:configure.ac:587: -1- AC_SUBST_TRACE([CURL_VERSION])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_VERSION$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_VERSION$])
m4trace:configure.ac:533: -1- AC_SUBST([CURL_CPPFLAGS]) m4trace:configure.ac:587: -1- AC_SUBST([CURL_CPPFLAGS])
m4trace:configure.ac:533: -1- AC_SUBST_TRACE([CURL_CPPFLAGS]) m4trace:configure.ac:587: -1- AC_SUBST_TRACE([CURL_CPPFLAGS])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_CPPFLAGS$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_CPPFLAGS$])
m4trace:configure.ac:533: -1- AC_SUBST([CURL_CFLAGS]) m4trace:configure.ac:587: -1- AC_SUBST([CURL_CFLAGS])
m4trace:configure.ac:533: -1- AC_SUBST_TRACE([CURL_CFLAGS]) m4trace:configure.ac:587: -1- AC_SUBST_TRACE([CURL_CFLAGS])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_CFLAGS$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_CFLAGS$])
m4trace:configure.ac:533: -1- AC_SUBST([CURL_LDFLAGS]) m4trace:configure.ac:587: -1- AC_SUBST([CURL_LDFLAGS])
m4trace:configure.ac:533: -1- AC_SUBST_TRACE([CURL_LDFLAGS]) m4trace:configure.ac:587: -1- AC_SUBST_TRACE([CURL_LDFLAGS])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_LDFLAGS$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_LDFLAGS$])
m4trace:configure.ac:533: -1- AC_SUBST([CURL_LDADD]) m4trace:configure.ac:587: -1- AC_SUBST([CURL_LDADD])
m4trace:configure.ac:533: -1- AC_SUBST_TRACE([CURL_LDADD]) m4trace:configure.ac:587: -1- AC_SUBST_TRACE([CURL_LDADD])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_LDADD$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_LDADD$])
m4trace:configure.ac:533: -1- AC_SUBST([CURL_USES_GNUTLS]) m4trace:configure.ac:587: -1- AC_SUBST([CURL_USES_GNUTLS])
m4trace:configure.ac:533: -1- AC_SUBST_TRACE([CURL_USES_GNUTLS]) m4trace:configure.ac:587: -1- AC_SUBST_TRACE([CURL_USES_GNUTLS])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_USES_GNUTLS$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_USES_GNUTLS$])
m4trace:configure.ac:536: -1- AC_CONFIG_FILES([Makefile]) m4trace:configure.ac:590: -1- AC_CONFIG_FILES([Makefile])
m4trace:configure.ac:537: -1- AC_CONFIG_FILES([tools/Makefile]) m4trace:configure.ac:591: -1- AC_CONFIG_FILES([tools/Makefile])
m4trace:configure.ac:539: -1- AC_CONFIG_FILES([alp2/Makefile]) m4trace:configure.ac:593: -1- AC_CONFIG_FILES([alp2/Makefile])
m4trace:configure.ac:542: -1- AC_CONFIG_FILES([apache2/Makefile]) m4trace:configure.ac:596: -1- AC_CONFIG_FILES([apache2/Makefile])
m4trace:configure.ac:545: -1- AC_CONFIG_FILES([ext/Makefile]) m4trace:configure.ac:599: -1- AC_CONFIG_FILES([ext/Makefile])
m4trace:configure.ac:547: -1- AC_CONFIG_FILES([build/apxs-wrapper], [chmod +x build/apxs-wrapper]) m4trace:configure.ac:601: -1- AC_CONFIG_FILES([build/apxs-wrapper], [chmod +x build/apxs-wrapper])
m4trace:configure.ac:550: -1- AC_CONFIG_FILES([mlogc/mlogc-batch-load.pl], [chmod +x mlogc/mlogc-batch-load.pl]) m4trace:configure.ac:604: -1- AC_CONFIG_FILES([mlogc/mlogc-batch-load.pl], [chmod +x mlogc/mlogc-batch-load.pl])
m4trace:configure.ac:552: -1- AC_CONFIG_FILES([tests/run-unit-tests.pl], [chmod +x tests/run-unit-tests.pl]) m4trace:configure.ac:606: -1- AC_CONFIG_FILES([tests/run-unit-tests.pl], [chmod +x tests/run-unit-tests.pl])
m4trace:configure.ac:553: -1- AC_CONFIG_FILES([tests/run-regression-tests.pl], [chmod +x tests/run-regression-tests.pl]) m4trace:configure.ac:607: -1- AC_CONFIG_FILES([tests/run-regression-tests.pl], [chmod +x tests/run-regression-tests.pl])
m4trace:configure.ac:554: -1- AC_CONFIG_FILES([tests/gen_rx-pm.pl], [chmod +x tests/gen_rx-pm.pl]) m4trace:configure.ac:608: -1- AC_CONFIG_FILES([tests/gen_rx-pm.pl], [chmod +x tests/gen_rx-pm.pl])
m4trace:configure.ac:555: -1- AC_CONFIG_FILES([tests/csv_rx-pm.pl], [chmod +x tests/csv_rx-pm.pl]) m4trace:configure.ac:609: -1- AC_CONFIG_FILES([tests/csv_rx-pm.pl], [chmod +x tests/csv_rx-pm.pl])
m4trace:configure.ac:556: -1- AC_CONFIG_FILES([tests/regression/server_root/conf/httpd.conf]) m4trace:configure.ac:610: -1- AC_CONFIG_FILES([tests/regression/server_root/conf/httpd.conf])
m4trace:configure.ac:559: -1- AC_CONFIG_FILES([tools/rules-updater.pl], [chmod +x tools/rules-updater.pl]) m4trace:configure.ac:613: -1- AC_CONFIG_FILES([tools/rules-updater.pl], [chmod +x tools/rules-updater.pl])
m4trace:configure.ac:562: -1- AC_CONFIG_FILES([mlogc/Makefile]) m4trace:configure.ac:616: -1- AC_CONFIG_FILES([mlogc/Makefile])
m4trace:configure.ac:564: -1- AC_CONFIG_FILES([tests/Makefile]) m4trace:configure.ac:618: -1- AC_CONFIG_FILES([tests/Makefile])
m4trace:configure.ac:566: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) m4trace:configure.ac:620: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) m4trace:configure.ac:620: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
m4trace:configure.ac:566: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:620: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:566: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) m4trace:configure.ac:620: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([LTLIBOBJS]) m4trace:configure.ac:620: -1- AC_SUBST_TRACE([LTLIBOBJS])
m4trace:configure.ac:566: -1- m4_pattern_allow([^LTLIBOBJS$]) m4trace:configure.ac:620: -1- m4_pattern_allow([^LTLIBOBJS$])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([top_builddir]) m4trace:configure.ac:620: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([top_build_prefix]) m4trace:configure.ac:620: -1- AC_SUBST([am__EXEEXT_TRUE])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([srcdir]) m4trace:configure.ac:620: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([abs_srcdir]) m4trace:configure.ac:620: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([top_srcdir]) m4trace:configure.ac:620: -1- AC_SUBST([am__EXEEXT_FALSE])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([abs_top_srcdir]) m4trace:configure.ac:620: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([builddir]) m4trace:configure.ac:620: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([abs_builddir]) m4trace:configure.ac:620: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([abs_top_builddir]) m4trace:configure.ac:620: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([INSTALL]) m4trace:configure.ac:620: -1- AC_SUBST_TRACE([top_builddir])
m4trace:configure.ac:566: -1- AC_SUBST_TRACE([MKDIR_P]) m4trace:configure.ac:620: -1- AC_SUBST_TRACE([top_build_prefix])
m4trace:configure.ac:566: -1- AC_REQUIRE_AUX_FILE([ltmain.sh]) m4trace:configure.ac:620: -1- AC_SUBST_TRACE([srcdir])
m4trace:configure.ac:620: -1- AC_SUBST_TRACE([abs_srcdir])
m4trace:configure.ac:620: -1- AC_SUBST_TRACE([top_srcdir])
m4trace:configure.ac:620: -1- AC_SUBST_TRACE([abs_top_srcdir])
m4trace:configure.ac:620: -1- AC_SUBST_TRACE([builddir])
m4trace:configure.ac:620: -1- AC_SUBST_TRACE([abs_builddir])
m4trace:configure.ac:620: -1- AC_SUBST_TRACE([abs_top_builddir])
m4trace:configure.ac:620: -1- AC_SUBST_TRACE([INSTALL])
m4trace:configure.ac:620: -1- AC_SUBST_TRACE([MKDIR_P])
m4trace:configure.ac:620: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])

View File

@@ -593,28 +593,29 @@ m4trace:/usr/share/aclocal/ltdl.m4:802: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4
m4trace:/usr/share/aclocal/ltdl.m4:802: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete. m4trace:/usr/share/aclocal/ltdl.m4:802: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
You should run autoupdate.])dnl You should run autoupdate.])dnl
m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])]) m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
m4trace:/usr/share/aclocal-1.10/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.10' m4trace:/usr/share/aclocal-1.11/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11'
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
dnl require some minimum version. Point them to the right macro. dnl require some minimum version. Point them to the right macro.
m4_if([$1], [1.10.2], [], m4_if([$1], [1.11.1], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
]) ])
m4trace:/usr/share/aclocal-1.10/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.10.2])dnl m4trace:/usr/share/aclocal-1.11/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl
m4_ifndef([AC_AUTOCONF_VERSION], m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
m4trace:/usr/share/aclocal-1.10/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. m4trace:/usr/share/aclocal-1.11/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
AC_PREREQ([2.50])dnl AC_PREREQ([2.50])dnl
# expand $ac_aux_dir to an absolute path # expand $ac_aux_dir to an absolute path
am_aux_dir=`cd $ac_aux_dir && pwd` am_aux_dir=`cd $ac_aux_dir && pwd`
]) ])
m4trace:/usr/share/aclocal-1.10/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_TRUE])dnl
AC_SUBST([$1_FALSE])dnl AC_SUBST([$1_FALSE])dnl
_AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl
_AM_SUBST_NOTMAKE([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl
m4_define([_AM_COND_VALUE_$1], [$2])dnl
if $2; then if $2; then
$1_TRUE= $1_TRUE=
$1_FALSE='#' $1_FALSE='#'
@@ -627,7 +628,7 @@ AC_CONFIG_COMMANDS_PRE(
AC_MSG_ERROR([[conditional "$1" was never defined. AC_MSG_ERROR([[conditional "$1" was never defined.
Usually this means the macro was only invoked conditionally.]]) Usually this means the macro was only invoked conditionally.]])
fi])]) fi])])
m4trace:/usr/share/aclocal-1.10/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl
AC_REQUIRE([AM_DEP_TRACK])dnl AC_REQUIRE([AM_DEP_TRACK])dnl
@@ -664,6 +665,16 @@ AC_CACHE_CHECK([dependency style of $depcc],
if test "$am_compiler_list" = ""; then if test "$am_compiler_list" = ""; then
am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
fi fi
am__universal=false
m4_case([$1], [CC],
[case " $depcc " in #(
*\ -arch\ *\ -arch\ *) am__universal=true ;;
esac],
[CXX],
[case " $depcc " in #(
*\ -arch\ *\ -arch\ *) am__universal=true ;;
esac])
for depmode in $am_compiler_list; do for depmode in $am_compiler_list; do
# Setup a source with many dependencies, because some compilers # Setup a source with many dependencies, because some compilers
# like to wrap large dependency lists on column 80 (with \), and # like to wrap large dependency lists on column 80 (with \), and
@@ -681,7 +692,17 @@ AC_CACHE_CHECK([dependency style of $depcc],
done done
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
# We check with `-c' and `-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this. Also, some Intel
# versions had trouble with output in subdirs
am__obj=sub/conftest.${OBJEXT-o}
am__minus_obj="-o $am__obj"
case $depmode in case $depmode in
gcc)
# This depmode causes a compiler race in universal mode.
test "$am__universal" = false || continue
;;
nosideeffect) nosideeffect)
# after this tag, mechanisms are not by side-effect, so they'll # after this tag, mechanisms are not by side-effect, so they'll
# only be used when explicitly requested # only be used when explicitly requested
@@ -691,19 +712,23 @@ AC_CACHE_CHECK([dependency style of $depcc],
break break
fi fi
;; ;;
msvisualcpp | msvcmsys)
# This compiler won't grok `-c -o', but also, the minuso test has
# not run yet. These depmodes are late enough in the game, and
# so weak that their functioning should not be impacted.
am__obj=conftest.${OBJEXT-o}
am__minus_obj=
;;
none) break ;; none) break ;;
esac esac
# We check with `-c' and `-o' for the sake of the "dashmstdout"
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this.
if depmode=$depmode \ if depmode=$depmode \
source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ source=sub/conftest.c object=$am__obj \
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
$SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
>/dev/null 2>conftest.err && >/dev/null 2>conftest.err &&
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
${MAKE-make} -s -f confmf > /dev/null 2>&1; then ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
# icc doesn't choke on unknown options, it will just issue warnings # icc doesn't choke on unknown options, it will just issue warnings
# or remarks (even with -Werror). So we grep stderr for any message # or remarks (even with -Werror). So we grep stderr for any message
@@ -731,10 +756,10 @@ AM_CONDITIONAL([am__fastdep$1], [
test "x$enable_dependency_tracking" != xno \ test "x$enable_dependency_tracking" != xno \
&& test "$am_cv_$1_dependencies_compiler_type" = gcc3]) && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
]) ])
m4trace:/usr/share/aclocal-1.10/depend.m4:139: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl m4trace:/usr/share/aclocal-1.11/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
]) ])
m4trace:/usr/share/aclocal-1.10/depend.m4:147: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, m4trace:/usr/share/aclocal-1.11/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
[ --disable-dependency-tracking speeds up one-time build [ --disable-dependency-tracking speeds up one-time build
--enable-dependency-tracking do not reject slow dependency extractors]) --enable-dependency-tracking do not reject slow dependency extractors])
if test "x$enable_dependency_tracking" != xno; then if test "x$enable_dependency_tracking" != xno; then
@@ -745,7 +770,7 @@ AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
AC_SUBST([AMDEPBACKSLASH])dnl AC_SUBST([AMDEPBACKSLASH])dnl
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
]) ])
m4trace:/usr/share/aclocal-1.10/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
# Autoconf 2.62 quotes --file arguments for eval, but not when files # Autoconf 2.62 quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval # are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting. # if we detect the quoting.
@@ -796,11 +821,11 @@ m4trace:/usr/share/aclocal-1.10/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENC
done done
} }
]) ])
m4trace:/usr/share/aclocal-1.10/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
[AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
]) ])
m4trace:/usr/share/aclocal-1.10/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.60])dnl m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl
dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl Autoconf wants to disallow AM_ names. We explicitly allow
dnl the ones we care about. dnl the ones we care about.
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
@@ -851,8 +876,8 @@ AM_MISSING_PROG(AUTOCONF, autoconf)
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(AUTOHEADER, autoheader)
AM_MISSING_PROG(MAKEINFO, makeinfo) AM_MISSING_PROG(MAKEINFO, makeinfo)
AM_PROG_INSTALL_SH AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
AM_PROG_INSTALL_STRIP AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
AC_REQUIRE([AM_PROG_MKDIR_P])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl
# We need awk for the "check" target. The system "awk" is bad on # We need awk for the "check" target. The system "awk" is bad on
# some platforms. # some platforms.
@@ -860,24 +885,31 @@ AC_REQUIRE([AC_PROG_AWK])dnl
AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl
AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
[_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
[_AM_PROG_TAR([v7])])]) [_AM_PROG_TAR([v7])])])
_AM_IF_OPTION([no-dependencies],, _AM_IF_OPTION([no-dependencies],,
[AC_PROVIDE_IFELSE([AC_PROG_CC], [AC_PROVIDE_IFELSE([AC_PROG_CC],
[_AM_DEPENDENCIES(CC)], [_AM_DEPENDENCIES(CC)],
[define([AC_PROG_CC], [define([AC_PROG_CC],
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
AC_PROVIDE_IFELSE([AC_PROG_CXX], AC_PROVIDE_IFELSE([AC_PROG_CXX],
[_AM_DEPENDENCIES(CXX)], [_AM_DEPENDENCIES(CXX)],
[define([AC_PROG_CXX], [define([AC_PROG_CXX],
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
AC_PROVIDE_IFELSE([AC_PROG_OBJC], AC_PROVIDE_IFELSE([AC_PROG_OBJC],
[_AM_DEPENDENCIES(OBJC)], [_AM_DEPENDENCIES(OBJC)],
[define([AC_PROG_OBJC], [define([AC_PROG_OBJC],
defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
]) ])
_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
AC_CONFIG_COMMANDS_PRE(dnl
[m4_provide_if([_AM_COMPILER_EXEEXT],
[AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
]) ])
m4trace:/usr/share/aclocal-1.10/init.m4:113: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
_am_arg=$1 _am_arg=$1
_am_stamp_count=1 _am_stamp_count=1
for _am_header in $config_headers :; do for _am_header in $config_headers :; do
@@ -889,10 +921,17 @@ for _am_header in $config_headers :; do
esac esac
done done
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
m4trace:/usr/share/aclocal-1.10/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl m4trace:/usr/share/aclocal-1.11/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} if test x"${install_sh}" != xset; then
case $am_aux_dir in
*\ * | *\ *)
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
*)
install_sh="\${SHELL} $am_aux_dir/install-sh"
esac
fi
AC_SUBST(install_sh)]) AC_SUBST(install_sh)])
m4trace:/usr/share/aclocal-1.10/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
mkdir .tst 2>/dev/null mkdir .tst 2>/dev/null
if test -d .tst; then if test -d .tst; then
am__leading_dot=. am__leading_dot=.
@@ -901,10 +940,10 @@ else
fi fi
rmdir .tst 2>/dev/null rmdir .tst 2>/dev/null
AC_SUBST([am__leading_dot])]) AC_SUBST([am__leading_dot])])
m4trace:/usr/share/aclocal-1.10/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
cat > confinc << 'END' cat > confinc << 'END'
am__doit: am__doit:
@echo done @echo this is the am__doit target
.PHONY: am__doit .PHONY: am__doit
END END
# If we don't find an include directive, just comment out the code. # If we don't find an include directive, just comment out the code.
@@ -914,36 +953,43 @@ am__quote=
_am_result=none _am_result=none
# First try GNU make style include. # First try GNU make style include.
echo "include confinc" > confmf echo "include confinc" > confmf
# We grep out `Entering directory' and `Leaving directory' # Ignore all kinds of additional output from `make'.
# messages which can occur if `w' ends up in MAKEFLAGS. case `$am_make -s -f confmf 2> /dev/null` in #(
# In particular we don't look at `^make:' because GNU make might *the\ am__doit\ target*)
# be invoked under some other name (usually "gmake"), in which am__include=include
# case it prints its new name instead of `make'. am__quote=
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then _am_result=GNU
am__include=include ;;
am__quote= esac
_am_result=GNU
fi
# Now try BSD make style include. # Now try BSD make style include.
if test "$am__include" = "#"; then if test "$am__include" = "#"; then
echo '.include "confinc"' > confmf echo '.include "confinc"' > confmf
if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then case `$am_make -s -f confmf 2> /dev/null` in #(
am__include=.include *the\ am__doit\ target*)
am__quote="\"" am__include=.include
_am_result=BSD am__quote="\""
fi _am_result=BSD
;;
esac
fi fi
AC_SUBST([am__include]) AC_SUBST([am__include])
AC_SUBST([am__quote]) AC_SUBST([am__quote])
AC_MSG_RESULT([$_am_result]) AC_MSG_RESULT([$_am_result])
rm -f confinc confmf rm -f confinc confmf
]) ])
m4trace:/usr/share/aclocal-1.10/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
$1=${$1-"${am_missing_run}$2"} $1=${$1-"${am_missing_run}$2"}
AC_SUBST($1)]) AC_SUBST($1)])
m4trace:/usr/share/aclocal-1.10/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
AC_REQUIRE_AUX_FILE([missing])dnl AC_REQUIRE_AUX_FILE([missing])dnl
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" if test x"${MISSING+set}" != xset; then
case $am_aux_dir in
*\ * | *\ *)
MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
*)
MISSING="\${SHELL} $am_aux_dir/missing" ;;
esac
fi
# Use eval to expand $SHELL # Use eval to expand $SHELL
if eval "$MISSING --run true"; then if eval "$MISSING --run true"; then
am_missing_run="$MISSING --run " am_missing_run="$MISSING --run "
@@ -952,7 +998,7 @@ else
AC_MSG_WARN([`missing' script is too old or missing]) AC_MSG_WARN([`missing' script is too old or missing])
fi fi
]) ])
m4trace:/usr/share/aclocal-1.10/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl m4trace:/usr/share/aclocal-1.11/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl
AC_REQUIRE([AC_PROG_MKDIR_P])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl
dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
dnl while keeping a definition of mkdir_p for backward compatibility. dnl while keeping a definition of mkdir_p for backward compatibility.
@@ -967,29 +1013,42 @@ case $mkdir_p in
*/*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
esac esac
]) ])
m4trace:/usr/share/aclocal-1.10/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) m4trace:/usr/share/aclocal-1.11/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
m4trace:/usr/share/aclocal-1.10/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) m4trace:/usr/share/aclocal-1.11/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
m4trace:/usr/share/aclocal-1.10/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) m4trace:/usr/share/aclocal-1.11/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
m4trace:/usr/share/aclocal-1.10/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) m4trace:/usr/share/aclocal-1.11/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
m4trace:/usr/share/aclocal-1.10/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD m4trace:/usr/share/aclocal-1.11/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
ac_status=$? ac_status=$?
echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
(exit $ac_status); }]) (exit $ac_status); }])
m4trace:/usr/share/aclocal-1.10/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
# Just in case # Just in case
sleep 1 sleep 1
echo timestamp > conftest.file echo timestamp > conftest.file
# Reject unsafe characters in $srcdir or the absolute working directory
# name. Accept space and tab only in the latter.
am_lf='
'
case `pwd` in
*[[\\\"\#\$\&\'\`$am_lf]]*)
AC_MSG_ERROR([unsafe absolute working directory name]);;
esac
case $srcdir in
*[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
esac
# Do `set' in a subshell so we don't clobber the current shell's # Do `set' in a subshell so we don't clobber the current shell's
# arguments. Must try -L first in case configure is actually a # arguments. Must try -L first in case configure is actually a
# symlink; some systems play weird games with the mod time of symlinks # symlink; some systems play weird games with the mod time of symlinks
# (eg FreeBSD returns the mod time of the symlink's containing # (eg FreeBSD returns the mod time of the symlink's containing
# directory). # directory).
if ( if (
set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
if test "$[*]" = "X"; then if test "$[*]" = "X"; then
# -L didn't work. # -L didn't work.
set X `ls -t $srcdir/configure conftest.file` set X `ls -t "$srcdir/configure" conftest.file`
fi fi
rm -f conftest.file rm -f conftest.file
if test "$[*]" != "X $srcdir/configure conftest.file" \ if test "$[*]" != "X $srcdir/configure conftest.file" \
@@ -1013,7 +1072,20 @@ else
Check your system clock]) Check your system clock])
fi fi
AC_MSG_RESULT(yes)]) AC_MSG_RESULT(yes)])
m4trace:/usr/share/aclocal-1.10/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules],
[ --enable-silent-rules less verbose build output (undo: `make V=1')
--disable-silent-rules verbose build output (undo: `make V=0')])
case $enable_silent_rules in
yes) AM_DEFAULT_VERBOSITY=0;;
no) AM_DEFAULT_VERBOSITY=1;;
*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
esac
AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
AM_BACKSLASH='\'
AC_SUBST([AM_BACKSLASH])dnl
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
])
m4trace:/usr/share/aclocal-1.11/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
# Installed binaries are usually stripped using `strip' when the user # Installed binaries are usually stripped using `strip' when the user
# run `make install-strip'. However `strip' might not be the right # run `make install-strip'. However `strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake # tool to use in cross-compilation environments, therefore Automake
@@ -1024,8 +1096,9 @@ if test "$cross_compiling" != no; then
fi fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
AC_SUBST([INSTALL_STRIP_PROGRAM])]) AC_SUBST([INSTALL_STRIP_PROGRAM])])
m4trace:/usr/share/aclocal-1.10/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE]) m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
m4trace:/usr/share/aclocal-1.10/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
AM_MISSING_PROG([AMTAR], [tar]) AM_MISSING_PROG([AMTAR], [tar])
m4_if([$1], [v7], m4_if([$1], [v7],
[am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
@@ -2061,7 +2134,7 @@ m4trace:configure.ac:9: -1- m4_pattern_allow([^target_alias$])
m4trace:configure.ac:17: -1- AM_INIT_AUTOMAKE([-Wall -Werror foreign]) m4trace:configure.ac:17: -1- AM_INIT_AUTOMAKE([-Wall -Werror foreign])
m4trace:configure.ac:17: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) m4trace:configure.ac:17: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
m4trace:configure.ac:17: -1- AM_SET_CURRENT_AUTOMAKE_VERSION m4trace:configure.ac:17: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
m4trace:configure.ac:17: -1- AM_AUTOMAKE_VERSION([1.10.2]) m4trace:configure.ac:17: -1- AM_AUTOMAKE_VERSION([1.11.1])
m4trace:configure.ac:17: -1- _AM_AUTOCONF_VERSION([2.65]) m4trace:configure.ac:17: -1- _AM_AUTOCONF_VERSION([2.65])
m4trace:configure.ac:17: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) m4trace:configure.ac:17: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
m4trace:configure.ac:17: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) m4trace:configure.ac:17: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
@@ -2109,7 +2182,7 @@ m4trace:configure.ac:17: -1- m4_pattern_allow([^SET_MAKE$])
m4trace:configure.ac:17: -1- AM_SET_LEADING_DOT m4trace:configure.ac:17: -1- AM_SET_LEADING_DOT
m4trace:configure.ac:17: -1- m4_pattern_allow([^am__leading_dot$]) m4trace:configure.ac:17: -1- m4_pattern_allow([^am__leading_dot$])
m4trace:configure.ac:17: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], m4trace:configure.ac:17: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
[_AM_PROG_TAR([v7])])]) [_AM_PROG_TAR([v7])])])
m4trace:configure.ac:17: -2- _AM_MANGLE_OPTION([tar-ustar]) m4trace:configure.ac:17: -2- _AM_MANGLE_OPTION([tar-ustar])
m4trace:configure.ac:17: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])]) m4trace:configure.ac:17: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
m4trace:configure.ac:17: -2- _AM_MANGLE_OPTION([tar-pax]) m4trace:configure.ac:17: -2- _AM_MANGLE_OPTION([tar-pax])
@@ -2119,19 +2192,21 @@ m4trace:configure.ac:17: -1- m4_pattern_allow([^AMTAR$])
m4trace:configure.ac:17: -1- m4_pattern_allow([^am__tar$]) m4trace:configure.ac:17: -1- m4_pattern_allow([^am__tar$])
m4trace:configure.ac:17: -1- m4_pattern_allow([^am__untar$]) m4trace:configure.ac:17: -1- m4_pattern_allow([^am__untar$])
m4trace:configure.ac:17: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC], m4trace:configure.ac:17: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
[_AM_DEPENDENCIES(CC)], [_AM_DEPENDENCIES(CC)],
[define([AC_PROG_CC], [define([AC_PROG_CC],
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
AC_PROVIDE_IFELSE([AC_PROG_CXX], AC_PROVIDE_IFELSE([AC_PROG_CXX],
[_AM_DEPENDENCIES(CXX)], [_AM_DEPENDENCIES(CXX)],
[define([AC_PROG_CXX], [define([AC_PROG_CXX],
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
AC_PROVIDE_IFELSE([AC_PROG_OBJC], AC_PROVIDE_IFELSE([AC_PROG_OBJC],
[_AM_DEPENDENCIES(OBJC)], [_AM_DEPENDENCIES(OBJC)],
[define([AC_PROG_OBJC], [define([AC_PROG_OBJC],
defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
]) ])
m4trace:configure.ac:17: -2- _AM_MANGLE_OPTION([no-dependencies]) m4trace:configure.ac:17: -2- _AM_MANGLE_OPTION([no-dependencies])
m4trace:configure.ac:17: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])
m4trace:configure.ac:17: -2- _AM_MANGLE_OPTION([silent-rules])
m4trace:configure.ac:20: -1- LT_INIT([dlopen]) m4trace:configure.ac:20: -1- LT_INIT([dlopen])
m4trace:configure.ac:20: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$]) m4trace:configure.ac:20: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
m4trace:configure.ac:20: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$]) m4trace:configure.ac:20: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
@@ -2282,31 +2357,61 @@ m4trace:configure.ac:65: -1- m4_pattern_allow([^MSC_REGRESSION_SERVERROOT_DIR$])
m4trace:configure.ac:66: -1- m4_pattern_allow([^MSC_REGRESSION_CONF_DIR$]) m4trace:configure.ac:66: -1- m4_pattern_allow([^MSC_REGRESSION_CONF_DIR$])
m4trace:configure.ac:67: -1- m4_pattern_allow([^MSC_REGRESSION_LOGS_DIR$]) m4trace:configure.ac:67: -1- m4_pattern_allow([^MSC_REGRESSION_LOGS_DIR$])
m4trace:configure.ac:68: -1- m4_pattern_allow([^MSC_REGRESSION_DOCROOT_DIR$]) m4trace:configure.ac:68: -1- m4_pattern_allow([^MSC_REGRESSION_DOCROOT_DIR$])
m4trace:configure.ac:88: -1- AM_CONDITIONAL([BUILD_APACHE2_MODULE], [test "$build_apache2_module" -eq 1]) m4trace:configure.ac:118: -1- AM_CONDITIONAL([MACOSX], [test x$macos = xtrue])
m4trace:configure.ac:88: -1- m4_pattern_allow([^BUILD_APACHE2_MODULE_TRUE$]) m4trace:configure.ac:118: -1- m4_pattern_allow([^MACOSX_TRUE$])
m4trace:configure.ac:88: -1- m4_pattern_allow([^BUILD_APACHE2_MODULE_FALSE$]) m4trace:configure.ac:118: -1- m4_pattern_allow([^MACOSX_FALSE$])
m4trace:configure.ac:88: -1- _AM_SUBST_NOTMAKE([BUILD_APACHE2_MODULE_TRUE]) m4trace:configure.ac:118: -1- _AM_SUBST_NOTMAKE([MACOSX_TRUE])
m4trace:configure.ac:88: -1- _AM_SUBST_NOTMAKE([BUILD_APACHE2_MODULE_FALSE]) m4trace:configure.ac:118: -1- _AM_SUBST_NOTMAKE([MACOSX_FALSE])
m4trace:configure.ac:108: -1- AM_CONDITIONAL([BUILD_extentions], [test "$build_extentions" -eq 1]) m4trace:configure.ac:119: -1- AM_CONDITIONAL([LINUX], [test x$linuxos = xtrue])
m4trace:configure.ac:108: -1- m4_pattern_allow([^BUILD_extentions_TRUE$]) m4trace:configure.ac:119: -1- m4_pattern_allow([^LINUX_TRUE$])
m4trace:configure.ac:108: -1- m4_pattern_allow([^BUILD_extentions_FALSE$]) m4trace:configure.ac:119: -1- m4_pattern_allow([^LINUX_FALSE$])
m4trace:configure.ac:108: -1- _AM_SUBST_NOTMAKE([BUILD_extentions_TRUE]) m4trace:configure.ac:119: -1- _AM_SUBST_NOTMAKE([LINUX_TRUE])
m4trace:configure.ac:108: -1- _AM_SUBST_NOTMAKE([BUILD_extentions_FALSE]) m4trace:configure.ac:119: -1- _AM_SUBST_NOTMAKE([LINUX_FALSE])
m4trace:configure.ac:128: -1- AM_CONDITIONAL([BUILD_MLOGC], [test "$build_mlogc" -eq 1]) m4trace:configure.ac:120: -1- AM_CONDITIONAL([SOLARIS], [test x$solarisos = xtrue])
m4trace:configure.ac:128: -1- m4_pattern_allow([^BUILD_MLOGC_TRUE$]) m4trace:configure.ac:120: -1- m4_pattern_allow([^SOLARIS_TRUE$])
m4trace:configure.ac:128: -1- m4_pattern_allow([^BUILD_MLOGC_FALSE$]) m4trace:configure.ac:120: -1- m4_pattern_allow([^SOLARIS_FALSE$])
m4trace:configure.ac:128: -1- _AM_SUBST_NOTMAKE([BUILD_MLOGC_TRUE]) m4trace:configure.ac:120: -1- _AM_SUBST_NOTMAKE([SOLARIS_TRUE])
m4trace:configure.ac:128: -1- _AM_SUBST_NOTMAKE([BUILD_MLOGC_FALSE]) m4trace:configure.ac:120: -1- _AM_SUBST_NOTMAKE([SOLARIS_FALSE])
m4trace:configure.ac:147: -1- AM_CONDITIONAL([BUILD_ALP2], [test "$build_alp2" -eq 1]) m4trace:configure.ac:121: -1- AM_CONDITIONAL([FREEBSD], [test x$freebsdos = xtrue])
m4trace:configure.ac:147: -1- m4_pattern_allow([^BUILD_ALP2_TRUE$]) m4trace:configure.ac:121: -1- m4_pattern_allow([^FREEBSD_TRUE$])
m4trace:configure.ac:147: -1- m4_pattern_allow([^BUILD_ALP2_FALSE$]) m4trace:configure.ac:121: -1- m4_pattern_allow([^FREEBSD_FALSE$])
m4trace:configure.ac:147: -1- _AM_SUBST_NOTMAKE([BUILD_ALP2_TRUE]) m4trace:configure.ac:121: -1- _AM_SUBST_NOTMAKE([FREEBSD_TRUE])
m4trace:configure.ac:147: -1- _AM_SUBST_NOTMAKE([BUILD_ALP2_FALSE]) m4trace:configure.ac:121: -1- _AM_SUBST_NOTMAKE([FREEBSD_FALSE])
m4trace:configure.ac:166: -1- AM_CONDITIONAL([BUILD_DOCS], [test "$build_docs" -eq 1]) m4trace:configure.ac:122: -1- AM_CONDITIONAL([OPENBSD], [test x$openbsdos = xtrue])
m4trace:configure.ac:166: -1- m4_pattern_allow([^BUILD_DOCS_TRUE$]) m4trace:configure.ac:122: -1- m4_pattern_allow([^OPENBSD_TRUE$])
m4trace:configure.ac:166: -1- m4_pattern_allow([^BUILD_DOCS_FALSE$]) m4trace:configure.ac:122: -1- m4_pattern_allow([^OPENBSD_FALSE$])
m4trace:configure.ac:166: -1- _AM_SUBST_NOTMAKE([BUILD_DOCS_TRUE]) m4trace:configure.ac:122: -1- _AM_SUBST_NOTMAKE([OPENBSD_TRUE])
m4trace:configure.ac:166: -1- _AM_SUBST_NOTMAKE([BUILD_DOCS_FALSE]) m4trace:configure.ac:122: -1- _AM_SUBST_NOTMAKE([OPENBSD_FALSE])
m4trace:configure.ac:123: -1- AM_CONDITIONAL([NETBSD], [test x$netbsdos = xtrue])
m4trace:configure.ac:123: -1- m4_pattern_allow([^NETBSD_TRUE$])
m4trace:configure.ac:123: -1- m4_pattern_allow([^NETBSD_FALSE$])
m4trace:configure.ac:123: -1- _AM_SUBST_NOTMAKE([NETBSD_TRUE])
m4trace:configure.ac:123: -1- _AM_SUBST_NOTMAKE([NETBSD_FALSE])
m4trace:configure.ac:142: -1- AM_CONDITIONAL([BUILD_APACHE2_MODULE], [test "$build_apache2_module" -eq 1])
m4trace:configure.ac:142: -1- m4_pattern_allow([^BUILD_APACHE2_MODULE_TRUE$])
m4trace:configure.ac:142: -1- m4_pattern_allow([^BUILD_APACHE2_MODULE_FALSE$])
m4trace:configure.ac:142: -1- _AM_SUBST_NOTMAKE([BUILD_APACHE2_MODULE_TRUE])
m4trace:configure.ac:142: -1- _AM_SUBST_NOTMAKE([BUILD_APACHE2_MODULE_FALSE])
m4trace:configure.ac:162: -1- AM_CONDITIONAL([BUILD_extentions], [test "$build_extentions" -eq 1])
m4trace:configure.ac:162: -1- m4_pattern_allow([^BUILD_extentions_TRUE$])
m4trace:configure.ac:162: -1- m4_pattern_allow([^BUILD_extentions_FALSE$])
m4trace:configure.ac:162: -1- _AM_SUBST_NOTMAKE([BUILD_extentions_TRUE])
m4trace:configure.ac:162: -1- _AM_SUBST_NOTMAKE([BUILD_extentions_FALSE])
m4trace:configure.ac:182: -1- AM_CONDITIONAL([BUILD_MLOGC], [test "$build_mlogc" -eq 1])
m4trace:configure.ac:182: -1- m4_pattern_allow([^BUILD_MLOGC_TRUE$])
m4trace:configure.ac:182: -1- m4_pattern_allow([^BUILD_MLOGC_FALSE$])
m4trace:configure.ac:182: -1- _AM_SUBST_NOTMAKE([BUILD_MLOGC_TRUE])
m4trace:configure.ac:182: -1- _AM_SUBST_NOTMAKE([BUILD_MLOGC_FALSE])
m4trace:configure.ac:201: -1- AM_CONDITIONAL([BUILD_ALP2], [test "$build_alp2" -eq 1])
m4trace:configure.ac:201: -1- m4_pattern_allow([^BUILD_ALP2_TRUE$])
m4trace:configure.ac:201: -1- m4_pattern_allow([^BUILD_ALP2_FALSE$])
m4trace:configure.ac:201: -1- _AM_SUBST_NOTMAKE([BUILD_ALP2_TRUE])
m4trace:configure.ac:201: -1- _AM_SUBST_NOTMAKE([BUILD_ALP2_FALSE])
m4trace:configure.ac:220: -1- AM_CONDITIONAL([BUILD_DOCS], [test "$build_docs" -eq 1])
m4trace:configure.ac:220: -1- m4_pattern_allow([^BUILD_DOCS_TRUE$])
m4trace:configure.ac:220: -1- m4_pattern_allow([^BUILD_DOCS_FALSE$])
m4trace:configure.ac:220: -1- _AM_SUBST_NOTMAKE([BUILD_DOCS_TRUE])
m4trace:configure.ac:220: -1- _AM_SUBST_NOTMAKE([BUILD_DOCS_FALSE])
m4trace:build/find_pcre.m4:14: -1- AC_DEFUN([CHECK_PCRE], [dnl m4trace:build/find_pcre.m4:14: -1- AC_DEFUN([CHECK_PCRE], [dnl
AC_ARG_WITH( AC_ARG_WITH(
@@ -2852,101 +2957,106 @@ else
ifelse([$1], , , $1) ifelse([$1], , , $1)
fi fi
]) ])
m4trace:configure.ac:500: -1- m4_pattern_allow([^TOPLEVEL_SUBDIRS$]) m4trace:configure.ac:554: -1- m4_pattern_allow([^TOPLEVEL_SUBDIRS$])
m4trace:configure.ac:501: -1- m4_pattern_allow([^EXTRA_CFLAGS$]) m4trace:configure.ac:555: -1- m4_pattern_allow([^EXTRA_CFLAGS$])
m4trace:configure.ac:502: -1- m4_pattern_allow([^MODSEC_EXTRA_CFLAGS$]) m4trace:configure.ac:556: -1- m4_pattern_allow([^MODSEC_EXTRA_CFLAGS$])
m4trace:configure.ac:503: -1- m4_pattern_allow([^APXS$]) m4trace:configure.ac:557: -1- m4_pattern_allow([^APXS$])
m4trace:configure.ac:504: -1- m4_pattern_allow([^APXS_WRAPPER$]) m4trace:configure.ac:558: -1- m4_pattern_allow([^APXS_WRAPPER$])
m4trace:configure.ac:505: -1- m4_pattern_allow([^APXS_INCLUDEDIR$]) m4trace:configure.ac:559: -1- m4_pattern_allow([^APXS_INCLUDEDIR$])
m4trace:configure.ac:506: -1- m4_pattern_allow([^APXS_INCLUDES$]) m4trace:configure.ac:560: -1- m4_pattern_allow([^APXS_INCLUDES$])
m4trace:configure.ac:507: -1- m4_pattern_allow([^APXS_EXTRA_CFLAGS$]) m4trace:configure.ac:561: -1- m4_pattern_allow([^APXS_EXTRA_CFLAGS$])
m4trace:configure.ac:508: -1- m4_pattern_allow([^MODSEC_APXS_EXTRA_CFLAGS$]) m4trace:configure.ac:562: -1- m4_pattern_allow([^MODSEC_APXS_EXTRA_CFLAGS$])
m4trace:configure.ac:509: -1- m4_pattern_allow([^APXS_LDFLAGS$]) m4trace:configure.ac:563: -1- m4_pattern_allow([^APXS_LDFLAGS$])
m4trace:configure.ac:510: -1- m4_pattern_allow([^APXS_LIBS$]) m4trace:configure.ac:564: -1- m4_pattern_allow([^APXS_LIBS$])
m4trace:configure.ac:511: -1- m4_pattern_allow([^APXS_CFLAGS$]) m4trace:configure.ac:565: -1- m4_pattern_allow([^APXS_CFLAGS$])
m4trace:configure.ac:512: -1- m4_pattern_allow([^APXS_LIBTOOL$]) m4trace:configure.ac:566: -1- m4_pattern_allow([^APXS_LIBTOOL$])
m4trace:configure.ac:513: -1- m4_pattern_allow([^APXS_CC$]) m4trace:configure.ac:567: -1- m4_pattern_allow([^APXS_CC$])
m4trace:configure.ac:514: -1- m4_pattern_allow([^APXS_LIBDIR$]) m4trace:configure.ac:568: -1- m4_pattern_allow([^APXS_LIBDIR$])
m4trace:configure.ac:515: -1- m4_pattern_allow([^APXS_BINDIR$]) m4trace:configure.ac:569: -1- m4_pattern_allow([^APXS_BINDIR$])
m4trace:configure.ac:516: -1- m4_pattern_allow([^APXS_SBINDIR$]) m4trace:configure.ac:570: -1- m4_pattern_allow([^APXS_SBINDIR$])
m4trace:configure.ac:517: -1- m4_pattern_allow([^APXS_PROGNAME$]) m4trace:configure.ac:571: -1- m4_pattern_allow([^APXS_PROGNAME$])
m4trace:configure.ac:518: -1- m4_pattern_allow([^APXS_LIBEXECDIR$]) m4trace:configure.ac:572: -1- m4_pattern_allow([^APXS_LIBEXECDIR$])
m4trace:configure.ac:519: -1- m4_pattern_allow([^APXS_MODULES$]) m4trace:configure.ac:573: -1- m4_pattern_allow([^APXS_MODULES$])
m4trace:configure.ac:520: -1- m4_pattern_allow([^APXS_HTTPD$]) m4trace:configure.ac:574: -1- m4_pattern_allow([^APXS_HTTPD$])
m4trace:configure.ac:522: -1- CHECK_PCRE([]) m4trace:configure.ac:576: -1- CHECK_PCRE([])
m4trace:configure.ac:522: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:576: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_pcre.m4:14: CHECK_PCRE is expanded from... build/find_pcre.m4:14: CHECK_PCRE is expanded from...
configure.ac:522: the top level]) configure.ac:576: the top level])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_CONFIG$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_CONFIG$])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_VERSION$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_VERSION$])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_CPPFLAGS$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_CPPFLAGS$])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_CFLAGS$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_CFLAGS$])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_LDFLAGS$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_LDFLAGS$])
m4trace:configure.ac:522: -1- m4_pattern_allow([^PCRE_LDADD$]) m4trace:configure.ac:576: -1- m4_pattern_allow([^PCRE_LDADD$])
m4trace:configure.ac:524: -1- CHECK_APR([]) m4trace:configure.ac:578: -1- CHECK_APR([])
m4trace:configure.ac:524: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:578: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_apr.m4:15: CHECK_APR is expanded from... build/find_apr.m4:15: CHECK_APR is expanded from...
configure.ac:524: the top level]) configure.ac:578: the top level])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_CONFIG$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_CONFIG$])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_VERSION$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_VERSION$])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_CFLAGS$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_CFLAGS$])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_CPPFLAGS$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_CPPFLAGS$])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_LDFLAGS$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_LDFLAGS$])
m4trace:configure.ac:524: -1- m4_pattern_allow([^APR_LDADD$]) m4trace:configure.ac:578: -1- m4_pattern_allow([^APR_LDADD$])
m4trace:configure.ac:525: -1- CHECK_APU([]) m4trace:configure.ac:579: -1- CHECK_APU([])
m4trace:configure.ac:525: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:579: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_apu.m4:14: CHECK_APU is expanded from... build/find_apu.m4:14: CHECK_APU is expanded from...
configure.ac:525: the top level]) configure.ac:579: the top level])
m4trace:configure.ac:525: -1- m4_pattern_allow([^APU_CONFIG$]) m4trace:configure.ac:579: -1- m4_pattern_allow([^APU_CONFIG$])
m4trace:configure.ac:525: -1- m4_pattern_allow([^APU_VERSION$]) m4trace:configure.ac:579: -1- m4_pattern_allow([^APU_VERSION$])
m4trace:configure.ac:525: -1- m4_pattern_allow([^APU_CFLAGS$]) m4trace:configure.ac:579: -1- m4_pattern_allow([^APU_CFLAGS$])
m4trace:configure.ac:525: -1- m4_pattern_allow([^APU_LDFLAGS$]) m4trace:configure.ac:579: -1- m4_pattern_allow([^APU_LDFLAGS$])
m4trace:configure.ac:525: -1- m4_pattern_allow([^APU_LDADD$]) m4trace:configure.ac:579: -1- m4_pattern_allow([^APU_LDADD$])
m4trace:configure.ac:527: -1- CHECK_LIBXML2([]) m4trace:configure.ac:581: -1- CHECK_LIBXML2([])
m4trace:configure.ac:527: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:581: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_xml.m4:14: CHECK_LIBXML2 is expanded from... build/find_xml.m4:14: CHECK_LIBXML2 is expanded from...
configure.ac:527: the top level]) configure.ac:581: the top level])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_CONFIG$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_CONFIG$])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_VERSION$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_VERSION$])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_CFLAGS$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_CFLAGS$])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_CPPFLAGS$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_CPPFLAGS$])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_LDADD$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_LDADD$])
m4trace:configure.ac:527: -1- m4_pattern_allow([^LIBXML2_LDFLAGS$]) m4trace:configure.ac:581: -1- m4_pattern_allow([^LIBXML2_LDFLAGS$])
m4trace:configure.ac:528: -1- CHECK_LUA([]) m4trace:configure.ac:582: -1- CHECK_LUA([])
m4trace:configure.ac:528: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:582: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_lua.m4:17: CHECK_LUA is expanded from... build/find_lua.m4:17: CHECK_LUA is expanded from...
configure.ac:528: the top level]) configure.ac:582: the top level])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_CONFIG$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_CONFIG$])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_VERSION$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_VERSION$])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_CFLAGS$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_CFLAGS$])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_CPPFLAGS$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_CPPFLAGS$])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_LDADD$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_LDADD$])
m4trace:configure.ac:528: -1- m4_pattern_allow([^LUA_LDFLAGS$]) m4trace:configure.ac:582: -1- m4_pattern_allow([^LUA_LDFLAGS$])
m4trace:configure.ac:533: -1- CHECK_CURL([]) m4trace:configure.ac:587: -1- CHECK_CURL([])
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. m4trace:configure.ac:587: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from... ../../lib/autoconf/general.m4:1473: AC_ARG_WITH is expanded from...
build/find_curl.m4:15: CHECK_CURL is expanded from... build/find_curl.m4:15: CHECK_CURL is expanded from...
configure.ac:533: the top level]) configure.ac:587: the top level])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_CONFIG$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_CONFIG$])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_VERSION$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_VERSION$])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_CPPFLAGS$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_CPPFLAGS$])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_CFLAGS$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_CFLAGS$])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_LDFLAGS$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_LDFLAGS$])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_LDADD$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_LDADD$])
m4trace:configure.ac:533: -1- m4_pattern_allow([^CURL_USES_GNUTLS$]) m4trace:configure.ac:587: -1- m4_pattern_allow([^CURL_USES_GNUTLS$])
m4trace:configure.ac:566: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:620: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:566: -1- m4_pattern_allow([^LTLIBOBJS$]) m4trace:configure.ac:620: -1- m4_pattern_allow([^LTLIBOBJS$])
m4trace:configure.ac:566: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"]) m4trace:configure.ac:620: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
m4trace:configure.ac:566: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS m4trace:configure.ac:620: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
m4trace:configure.ac:566: -1- _LT_PROG_LTMAIN m4trace:configure.ac:620: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
m4trace:configure.ac:620: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
m4trace:configure.ac:620: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
m4trace:configure.ac:620: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
m4trace:configure.ac:620: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
m4trace:configure.ac:620: -1- _LT_PROG_LTMAIN