Fix build issues on various Linux/*BSD

This commit is contained in:
Peter Haag 2016-01-10 16:28:37 +01:00
parent a12087c1e9
commit ef7697f000
16 changed files with 1305 additions and 814 deletions

View File

@ -1,3 +1,8 @@
2016-01-10 v.1.6.14
- Fix CentOS compile issues with flow-tools converter
- Fix FreeBSD,OpenBSD build problems
- Fix timestamp overflow in sflow.c
2015-12-23 2015-12-23
- Fix IP Fragmentation in sflow collector - Fix IP Fragmentation in sflow collector
- Create libnfdump for dynamic linking - Create libnfdump for dynamic linking
@ -13,7 +18,7 @@
- Fix CommonRecordV0Type conversion bug - Fix CommonRecordV0Type conversion bug
- Fix nfexport bug, if only one single map exists - Fix nfexport bug, if only one single map exists
2014-11-16 2014-11-16 v.1.6.13
- Fix v1 extension size bug - Fix v1 extension size bug
- Add htonll check for autoconf - Add htonll check for autoconf
- Fix AddExtensionMap compare bug - Fix AddExtensionMap compare bug

View File

@ -1,7 +1,7 @@
The nfdump project is distributed under the BSD license: The nfdump project is distributed under the BSD license:
Copyright (c) 2015, Peter Haag Copyright (c) 2016, Peter Haag
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without

View File

@ -1,4 +1,4 @@
SUBDIRS = . bin man SUBDIRS = . bin man
EXTRA_DIST = CreateSubHierarchy.pl LICENSE BSD-license.txt extra/PortTracker.pm extra/nfdump.spec bootstrap flows EXTRA_DIST = CreateSubHierarchy.pl LICENSE BSD-license.txt extra/PortTracker.pm extra/nfdump.spec bootstrap

View File

@ -266,6 +266,7 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@ PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@ PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@ PATH_SEPARATOR = @PATH_SEPARATOR@
PCAP_LIBS = @PCAP_LIBS@
RANLIB = @RANLIB@ RANLIB = @RANLIB@
RRD_LIBS = @RRD_LIBS@ RRD_LIBS = @RRD_LIBS@
SED = @SED@ SED = @SED@
@ -328,7 +329,7 @@ top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@ top_builddir = @top_builddir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
SUBDIRS = . bin man SUBDIRS = . bin man
EXTRA_DIST = CreateSubHierarchy.pl LICENSE BSD-license.txt extra/PortTracker.pm extra/nfdump.spec bootstrap flows EXTRA_DIST = CreateSubHierarchy.pl LICENSE BSD-license.txt extra/PortTracker.pm extra/nfdump.spec bootstrap
all: config.h all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive $(MAKE) $(AM_MAKEFLAGS) all-recursive

View File

@ -642,6 +642,7 @@ FTS_OBJ
LFLAGS LFLAGS
FT_LDFLAGS FT_LDFLAGS
FT_INCLUDES FT_INCLUDES
PCAP_LIBS
BUILDNFPCAPD_FALSE BUILDNFPCAPD_FALSE
BUILDNFPCAPD_TRUE BUILDNFPCAPD_TRUE
READPCAP_FALSE READPCAP_FALSE
@ -793,6 +794,7 @@ enable_nel
enable_fixtimebug enable_fixtimebug
with_ftpath with_ftpath
with_rrdpath with_rrdpath
with_pcappath
enable_ftconv enable_ftconv
enable_nfprofile enable_nfprofile
enable_nftrack enable_nftrack
@ -1466,6 +1468,7 @@ Optional Packages:
compiler's sysroot if not specified). compiler's sysroot if not specified).
--with-ftpath=PATH Expect flow-tool sources in PATH; default /usr/local/flow-tools/ --with-ftpath=PATH Expect flow-tool sources in PATH; default /usr/local/flow-tools/
--with-rrdpath=PATH Expect RRD installed in PATH; default /usr/local --with-rrdpath=PATH Expect RRD installed in PATH; default /usr/local
--with-pcappath=PATH Expect RRD installed in PATH; default /usr/local
Some influential environment variables: Some influential environment variables:
CC C compiler command CC C compiler command
@ -13320,6 +13323,20 @@ fi
fi fi
@%:@ Check whether --with-pcappath was given.
if test "${with_pcappath+set}" = set; then :
withval=$with_pcappath; if test "x$with_pcappath" = "xyes" ; then
CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
LDFLAGS="${LDFLAGS} -L/usr/local/lib"
else
CPPFLAGS="${CPPFLAGS} -I${with_pcappath}/include"
LDFLAGS="${LDFLAGS} -L${with_pcappath}/lib"
fi
fi
#Tidz up? esp not using in source dist flow-tools #Tidz up? esp not using in source dist flow-tools
@%:@ Check whether --enable-ftconv was given. @%:@ Check whether --enable-ftconv was given.
if test "${enable_ftconv+set}" = set; then : if test "${enable_ftconv+set}" = set; then :
@ -13375,7 +13392,7 @@ if test -d "$WHERE_FTPATH"; then
if test ! -f "$WHERE_FTPATH/include/ftlib.h"; then if test ! -f "$WHERE_FTPATH/include/ftlib.h"; then
as_fn_error $? "ftlib.h file not found in flow-tools directory '$WHERE_FTPATH'. Use --with-ftpath=PATH" "$LINENO" 5 as_fn_error $? "ftlib.h file not found in flow-tools directory '$WHERE_FTPATH'. Use --with-ftpath=PATH" "$LINENO" 5
fi fi
if test ! -f "$WHERE_FTPATH/lib/libft.a"; then if test ! -f "$WHERE_FTPATH/lib/libft.a" -a -f "$WHERE_FTPATH/lib64/libft.a" ! -f "$WHERE_FTPATH/lib/libft.so" -a -f "$WHERE_FTPATH/lib64/libft.so"; then
as_fn_error $? "libft.a not found in flow-tools directory '$WHERE_FTPATH'. Build flow tools first" "$LINENO" 5 as_fn_error $? "libft.a not found in flow-tools directory '$WHERE_FTPATH'. Build flow tools first" "$LINENO" 5
fi fi
FT_INCLUDES="-I$WHERE_FTPATH/include -I$WHERE_FTPATH/lib" FT_INCLUDES="-I$WHERE_FTPATH/include -I$WHERE_FTPATH/lib"
@ -13684,15 +13701,125 @@ fi
@%:@ Check whether --enable-nfpcapd was given. @%:@ Check whether --enable-nfpcapd was given.
if test "${enable_nfpcapd+set}" = set; then : if test "${enable_nfpcapd+set}" = set; then :
enableval=$enable_nfpcapd; enableval=$enable_nfpcapd;
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pcap_create in -lpcap" >&5
$as_echo_n "checking for pcap_create in -lpcap... " >&6; }
if ${ac_cv_lib_pcap_pcap_create+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lpcap $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
/* Override any GCC internal prototype to avoid an error.
Use char because int might match the return type of a GCC
builtin and then its argument prototype would still apply. */
#ifdef __cplusplus
extern "C"
#endif
char pcap_create ();
int
main ()
{
return pcap_create ();
;
return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
ac_cv_lib_pcap_pcap_create=yes
else
ac_cv_lib_pcap_pcap_create=no
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pcap_pcap_create" >&5
$as_echo "$ac_cv_lib_pcap_pcap_create" >&6; }
if test "x$ac_cv_lib_pcap_pcap_create" = xyes; then :
cat >>config.h <<_ACEOF
#define HAVE_LIBPCAP 1
_ACEOF
RRD_LIBS="-lpcap"
else
as_fn_error $? "Can not link libpcap. Please specify --with-pcappath=.. configure failed! " "$LINENO" 5
fi fi
if test "$enable_nfpcapd" = yes; then for ac_header in pcap.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "pcap.h" "ac_cv_header_pcap_h" "$ac_includes_default"
if test "x$ac_cv_header_pcap_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_PCAP_H 1
_ACEOF
fi
done
if test "$ac_cv_header_pcap_h" = yes; then
if true; then
BUILDNFPCAPD_TRUE= BUILDNFPCAPD_TRUE=
BUILDNFPCAPD_FALSE='#' BUILDNFPCAPD_FALSE='#'
else else
BUILDNFPCAPD_TRUE='#' BUILDNFPCAPD_TRUE='#'
BUILDNFPCAPD_FALSE= BUILDNFPCAPD_FALSE=
fi
else
as_fn_error $? "Required pcap.h header file not found!" "$LINENO" 5
fi
if test "$cross_compiling" = yes; then :
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error $? "cannot run test program while cross compiling
See \`config.log' for more details" "$LINENO" 5; }
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <stdio.h>
#include <pcap.h>
int
main ()
{
struct pcap_pkthdr p;
;
return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
else
as_fn_error $? "Can not load pcap library. Not in loader search path! " "$LINENO" 5
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
conftest.$ac_objext conftest.beam conftest.$ac_ext
fi
else
if false; then
BUILDNFPCAPD_TRUE=
BUILDNFPCAPD_FALSE='#'
else
BUILDNFPCAPD_TRUE='#'
BUILDNFPCAPD_FALSE=
fi
fi fi
@ -14303,7 +14430,7 @@ fi
done done
for ac_header in sys/types.h netinet/in.h arpa/nameser.h arpa/nameser_compat.h netdb.h resolv.h for ac_header in sys/types.h netinet/in.h arpa/nameser.h arpa/nameser_compat.h netdb.h resolv.h netinet/in_systm.h
do : do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_SYS_TYPES_H ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_SYS_TYPES_H
@ -16713,6 +16840,10 @@ if test -z "${BUILDNFPCAPD_TRUE}" && test -z "${BUILDNFPCAPD_FALSE}"; then
as_fn_error $? "conditional \"BUILDNFPCAPD\" was never defined. as_fn_error $? "conditional \"BUILDNFPCAPD\" 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 "${BUILDNFPCAPD_TRUE}" && test -z "${BUILDNFPCAPD_FALSE}"; then
as_fn_error $? "conditional \"BUILDNFPCAPD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
: "${CONFIG_STATUS=./config.status}" : "${CONFIG_STATUS=./config.status}"

View File

@ -642,6 +642,7 @@ FTS_OBJ
LFLAGS LFLAGS
FT_LDFLAGS FT_LDFLAGS
FT_INCLUDES FT_INCLUDES
PCAP_LIBS
BUILDNFPCAPD_FALSE BUILDNFPCAPD_FALSE
BUILDNFPCAPD_TRUE BUILDNFPCAPD_TRUE
READPCAP_FALSE READPCAP_FALSE
@ -793,6 +794,7 @@ enable_nel
enable_fixtimebug enable_fixtimebug
with_ftpath with_ftpath
with_rrdpath with_rrdpath
with_pcappath
enable_ftconv enable_ftconv
enable_nfprofile enable_nfprofile
enable_nftrack enable_nftrack
@ -1466,6 +1468,7 @@ Optional Packages:
compiler's sysroot if not specified). compiler's sysroot if not specified).
--with-ftpath=PATH Expect flow-tool sources in PATH; default /usr/local/flow-tools/ --with-ftpath=PATH Expect flow-tool sources in PATH; default /usr/local/flow-tools/
--with-rrdpath=PATH Expect RRD installed in PATH; default /usr/local --with-rrdpath=PATH Expect RRD installed in PATH; default /usr/local
--with-pcappath=PATH Expect RRD installed in PATH; default /usr/local
Some influential environment variables: Some influential environment variables:
CC C compiler command CC C compiler command
@ -13324,6 +13327,20 @@ fi
fi fi
@%:@ Check whether --with-pcappath was given.
if test "${with_pcappath+set}" = set; then :
withval=$with_pcappath; if test "x$with_pcappath" = "xyes" ; then
CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
LDFLAGS="${LDFLAGS} -L/usr/local/lib"
else
CPPFLAGS="${CPPFLAGS} -I${with_pcappath}/include"
LDFLAGS="${LDFLAGS} -L${with_pcappath}/lib"
fi
fi
#Tidz up? esp not using in source dist flow-tools #Tidz up? esp not using in source dist flow-tools
@%:@ Check whether --enable-ftconv was given. @%:@ Check whether --enable-ftconv was given.
if test "${enable_ftconv+set}" = set; then : if test "${enable_ftconv+set}" = set; then :
@ -13379,7 +13396,7 @@ if test -d "$WHERE_FTPATH"; then
if test ! -f "$WHERE_FTPATH/include/ftlib.h"; then if test ! -f "$WHERE_FTPATH/include/ftlib.h"; then
as_fn_error $? "ftlib.h file not found in flow-tools directory '$WHERE_FTPATH'. Use --with-ftpath=PATH" "$LINENO" 5 as_fn_error $? "ftlib.h file not found in flow-tools directory '$WHERE_FTPATH'. Use --with-ftpath=PATH" "$LINENO" 5
fi fi
if test ! -f "$WHERE_FTPATH/lib/libft.a"; then if test ! -f "$WHERE_FTPATH/lib/libft.a" -a -f "$WHERE_FTPATH/lib64/libft.a" ! -f "$WHERE_FTPATH/lib/libft.so" -a -f "$WHERE_FTPATH/lib64/libft.so"; then
as_fn_error $? "libft.a not found in flow-tools directory '$WHERE_FTPATH'. Build flow tools first" "$LINENO" 5 as_fn_error $? "libft.a not found in flow-tools directory '$WHERE_FTPATH'. Build flow tools first" "$LINENO" 5
fi fi
FT_INCLUDES="-I$WHERE_FTPATH/include -I$WHERE_FTPATH/lib" FT_INCLUDES="-I$WHERE_FTPATH/include -I$WHERE_FTPATH/lib"
@ -13688,15 +13705,125 @@ fi
@%:@ Check whether --enable-nfpcapd was given. @%:@ Check whether --enable-nfpcapd was given.
if test "${enable_nfpcapd+set}" = set; then : if test "${enable_nfpcapd+set}" = set; then :
enableval=$enable_nfpcapd; enableval=$enable_nfpcapd;
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pcap_create in -lpcap" >&5
$as_echo_n "checking for pcap_create in -lpcap... " >&6; }
if ${ac_cv_lib_pcap_pcap_create+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lpcap $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
/* Override any GCC internal prototype to avoid an error.
Use char because int might match the return type of a GCC
builtin and then its argument prototype would still apply. */
#ifdef __cplusplus
extern "C"
#endif
char pcap_create ();
int
main ()
{
return pcap_create ();
;
return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
ac_cv_lib_pcap_pcap_create=yes
else
ac_cv_lib_pcap_pcap_create=no
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pcap_pcap_create" >&5
$as_echo "$ac_cv_lib_pcap_pcap_create" >&6; }
if test "x$ac_cv_lib_pcap_pcap_create" = xyes; then :
cat >>config.h <<_ACEOF
#define HAVE_LIBPCAP 1
_ACEOF
RRD_LIBS="-lpcap"
else
as_fn_error $? "Can not link libpcap. Please specify --with-pcappath=.. configure failed! " "$LINENO" 5
fi fi
if test "$enable_nfpcapd" = yes; then for ac_header in pcap.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "pcap.h" "ac_cv_header_pcap_h" "$ac_includes_default"
if test "x$ac_cv_header_pcap_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
@%:@define HAVE_PCAP_H 1
_ACEOF
fi
done
if test "$ac_cv_header_pcap_h" = yes; then
if true; then
BUILDNFPCAPD_TRUE= BUILDNFPCAPD_TRUE=
BUILDNFPCAPD_FALSE='#' BUILDNFPCAPD_FALSE='#'
else else
BUILDNFPCAPD_TRUE='#' BUILDNFPCAPD_TRUE='#'
BUILDNFPCAPD_FALSE= BUILDNFPCAPD_FALSE=
fi
else
as_fn_error $? "Required pcap.h header file not found!" "$LINENO" 5
fi
if test "$cross_compiling" = yes; then :
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error $? "cannot run test program while cross compiling
See \`config.log' for more details" "$LINENO" 5; }
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <stdio.h>
#include <pcap.h>
int
main ()
{
struct pcap_pkthdr p;
;
return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
else
as_fn_error $? "Can not load pcap library. Not in loader search path! " "$LINENO" 5
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
conftest.$ac_objext conftest.beam conftest.$ac_ext
fi
else
if false; then
BUILDNFPCAPD_TRUE=
BUILDNFPCAPD_FALSE='#'
else
BUILDNFPCAPD_TRUE='#'
BUILDNFPCAPD_FALSE=
fi
fi fi
@ -14307,7 +14434,7 @@ fi
done done
for ac_header in sys/types.h netinet/in.h arpa/nameser.h arpa/nameser_compat.h netdb.h resolv.h for ac_header in sys/types.h netinet/in.h arpa/nameser.h arpa/nameser_compat.h netdb.h resolv.h netinet/in_systm.h
do : do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_SYS_TYPES_H ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_SYS_TYPES_H
@ -16717,6 +16844,10 @@ if test -z "${BUILDNFPCAPD_TRUE}" && test -z "${BUILDNFPCAPD_FALSE}"; then
as_fn_error $? "conditional \"BUILDNFPCAPD\" was never defined. as_fn_error $? "conditional \"BUILDNFPCAPD\" 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 "${BUILDNFPCAPD_TRUE}" && test -z "${BUILDNFPCAPD_FALSE}"; then
as_fn_error $? "conditional \"BUILDNFPCAPD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
: "${CONFIG_STATUS=./config.status}" : "${CONFIG_STATUS=./config.status}"

View File

@ -34,47 +34,47 @@
'configure.ac' 'configure.ac'
], ],
{ {
'_AM_PROG_TAR' => 1, 'AC_CONFIG_MACRO_DIR' => 1,
'AM_MISSING_HAS_RUN' => 1,
'AM_AUTOMAKE_VERSION' => 1,
'AM_CONDITIONAL' => 1,
'AC_DEFUN_ONCE' => 1, 'AC_DEFUN_ONCE' => 1,
'm4_pattern_forbid' => 1,
'AC_DEFUN' => 1,
'AM_DEP_TRACK' => 1,
'AM_RUN_LOG' => 1,
'AM_SANITY_CHECK' => 1,
'm4_pattern_allow' => 1,
'AM_MAKE_INCLUDE' => 1,
'AM_SUBST_NOTMAKE' => 1,
'AM_SET_LEADING_DOT' => 1,
'include' => 1,
'_AM_DEPENDENCIES' => 1,
'_AM_CONFIG_MACRO_DIRS' => 1,
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
'_AC_AM_CONFIG_HEADER_HOOK' => 1, '_AC_AM_CONFIG_HEADER_HOOK' => 1,
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
'AM_SET_DEPDIR' => 1,
'_AM_SET_OPTIONS' => 1,
'_AM_CONFIG_MACRO_DIRS' => 1,
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
'AM_PROG_INSTALL_STRIP' => 1,
'_AM_SUBST_NOTMAKE' => 1,
'AM_RUN_LOG' => 1,
'_AM_SET_OPTION' => 1,
'AM_SET_LEADING_DOT' => 1,
'AM_AUX_DIR_EXPAND' => 1,
'AM_SILENT_RULES' => 1,
'AM_MISSING_HAS_RUN' => 1,
'AM_PROG_INSTALL_SH' => 1, 'AM_PROG_INSTALL_SH' => 1,
'AM_PROG_CC_C_O' => 1, 'AM_PROG_CC_C_O' => 1,
'AM_PROG_INSTALL_STRIP' => 1,
'AM_SET_DEPDIR' => 1,
'_AM_SET_OPTION' => 1,
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
'AU_DEFUN' => 1,
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
'_AM_AUTOCONF_VERSION' => 1,
'_AM_IF_OPTION' => 1,
'AM_MISSING_PROG' => 1, 'AM_MISSING_PROG' => 1,
'_AM_PROG_CC_C_O' => 1, 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, '_m4_warn' => 1,
'AM_SILENT_RULES' => 1,
'm4_include' => 1,
'AM_AUX_DIR_EXPAND' => 1,
'AC_CONFIG_MACRO_DIR' => 1,
'_AM_SUBST_NOTMAKE' => 1,
'_AM_SET_OPTIONS' => 1,
'AM_INIT_AUTOMAKE' => 1, 'AM_INIT_AUTOMAKE' => 1,
'm4_include' => 1,
'_AM_PROG_CC_C_O' => 1,
'AC_DEFUN' => 1,
'_AM_DEPENDENCIES' => 1,
'_AM_PROG_TAR' => 1,
'AM_DEP_TRACK' => 1,
'AM_AUTOMAKE_VERSION' => 1,
'AM_MAKE_INCLUDE' => 1,
'_AM_AUTOCONF_VERSION' => 1,
'm4_pattern_forbid' => 1,
'AM_SUBST_NOTMAKE' => 1,
'AM_CONDITIONAL' => 1,
'm4_pattern_allow' => 1,
'_AM_MANGLE_OPTION' => 1, '_AM_MANGLE_OPTION' => 1,
'_m4_warn' => 1 '_AM_IF_OPTION' => 1,
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
'AM_SANITY_CHECK' => 1,
'AU_DEFUN' => 1,
'include' => 1
} }
], 'Autom4te::Request' ), ], 'Autom4te::Request' ),
bless( [ bless( [
@ -89,65 +89,65 @@
'configure.ac' 'configure.ac'
], ],
{ {
'_LT_AC_TAGCONFIG' => 1,
'LT_SUPPORTED_TAG' => 1,
'AC_FC_FREEFORM' => 1,
'AC_CONFIG_AUX_DIR' => 1,
'AC_LIBSOURCE' => 1,
'_AM_COND_ELSE' => 1,
'AM_SILENT_RULES' => 1,
'LT_INIT' => 1,
'AM_PROG_AR' => 1,
'AH_OUTPUT' => 1,
'AM_PROG_FC_C_O' => 1,
'AC_CONFIG_LIBOBJ_DIR' => 1,
'AC_PROG_LIBTOOL' => 1,
'AC_FC_PP_SRCEXT' => 1,
'_AM_MAKEFILE_INCLUDE' => 1,
'AM_XGETTEXT_OPTION' => 1,
'_AM_SUBST_NOTMAKE' => 1,
'_m4_warn' => 1,
'AM_INIT_AUTOMAKE' => 1,
'AM_PROG_F77_C_O' => 1,
'sinclude' => 1,
'AC_DEFINE_TRACE_LITERAL' => 1,
'm4_include' => 1,
'LT_CONFIG_LTDL_DIR' => 1,
'AC_INIT' => 1,
'AC_SUBST_TRACE' => 1,
'AC_CANONICAL_BUILD' => 1,
'AM_PATH_GUILE' => 1,
'AC_CANONICAL_SYSTEM' => 1,
'm4_pattern_forbid' => 1,
'AC_CANONICAL_TARGET' => 1,
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
'm4_pattern_allow' => 1,
'_AM_COND_IF' => 1,
'AM_AUTOMAKE_VERSION' => 1,
'AC_CANONICAL_HOST' => 1,
'AM_MAKEFILE_INCLUDE' => 1,
'AM_PROG_MKDIR_P' => 1,
'm4_sinclude' => 1,
'AC_FC_SRCEXT' => 1,
'AM_CONDITIONAL' => 1,
'AM_PROG_CXX_C_O' => 1, 'AM_PROG_CXX_C_O' => 1,
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
'_AM_COND_ENDIF' => 1,
'AM_ENABLE_MULTILIB' => 1,
'AC_REQUIRE_AUX_FILE' => 1,
'AM_NLS' => 1,
'AC_FC_PP_DEFINE' => 1,
'AM_PROG_CC_C_O' => 1,
'AM_MAINTAINER_MODE' => 1,
'AM_GNU_GETTEXT' => 1,
'AC_CONFIG_HEADERS' => 1, 'AC_CONFIG_HEADERS' => 1,
'include' => 1, 'include' => 1,
'AM_PROG_MOC' => 1, 'AC_FC_PP_SRCEXT' => 1,
'AC_CONFIG_SUBDIRS' => 1, 'AM_PROG_FC_C_O' => 1,
'AC_CONFIG_FILES' => 1, 'AC_CONFIG_FILES' => 1,
'AC_FC_PP_DEFINE' => 1,
'AC_CONFIG_SUBDIRS' => 1,
'AM_MAINTAINER_MODE' => 1,
'AC_FC_SRCEXT' => 1,
'AC_DEFINE_TRACE_LITERAL' => 1,
'LT_INIT' => 1,
'AM_NLS' => 1,
'AC_CANONICAL_SYSTEM' => 1,
'AC_CONFIG_AUX_DIR' => 1,
'AC_PROG_LIBTOOL' => 1,
'm4_pattern_allow' => 1,
'AM_CONDITIONAL' => 1,
'm4_pattern_forbid' => 1,
'AM_PROG_MOC' => 1,
'AC_CONFIG_LIBOBJ_DIR' => 1,
'_LT_AC_TAGCONFIG' => 1,
'LT_CONFIG_LTDL_DIR' => 1,
'AC_SUBST' => 1, 'AC_SUBST' => 1,
'AM_MAKEFILE_INCLUDE' => 1,
'AM_AUTOMAKE_VERSION' => 1,
'AM_PROG_MKDIR_P' => 1,
'AM_XGETTEXT_OPTION' => 1,
'AC_CANONICAL_HOST' => 1,
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
'AC_CONFIG_LINKS' => 1,
'_AM_MAKEFILE_INCLUDE' => 1,
'AC_CANONICAL_TARGET' => 1,
'm4_include' => 1,
'AM_INIT_AUTOMAKE' => 1,
'_m4_warn' => 1,
'AM_PATH_GUILE' => 1,
'AM_PROG_AR' => 1,
'AM_PROG_F77_C_O' => 1,
'AC_REQUIRE_AUX_FILE' => 1,
'AM_ENABLE_MULTILIB' => 1,
'_AM_COND_ELSE' => 1,
'AM_POT_TOOLS' => 1, 'AM_POT_TOOLS' => 1,
'AC_CONFIG_LINKS' => 1 'AC_LIBSOURCE' => 1,
'm4_sinclude' => 1,
'AM_PROG_CC_C_O' => 1,
'_AM_COND_ENDIF' => 1,
'AM_GNU_GETTEXT' => 1,
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
'_AM_SUBST_NOTMAKE' => 1,
'AC_FC_FREEFORM' => 1,
'LT_SUPPORTED_TAG' => 1,
'AM_SILENT_RULES' => 1,
'AC_INIT' => 1,
'AC_CANONICAL_BUILD' => 1,
'_AM_COND_IF' => 1,
'AC_SUBST_TRACE' => 1,
'AH_OUTPUT' => 1,
'sinclude' => 1
} }
], 'Autom4te::Request' ), ], 'Autom4te::Request' ),
bless( [ bless( [
@ -188,185 +188,185 @@
'configure.ac' 'configure.ac'
], ],
{ {
'AC_PROG_LD_GNU' => 1, 'AM_RUN_LOG' => 1,
'AC_LIBTOOL_PROG_CC_C_O' => 1,
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
'_LT_COMPILER_BOILERPLATE' => 1,
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
'AC_LIBTOOL_WIN32_DLL' => 1,
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
'AC_ENABLE_STATIC' => 1,
'm4_pattern_allow' => 1,
'AM_SANITY_CHECK' => 1,
'LT_AC_PROG_SED' => 1,
'AM_ENABLE_SHARED' => 1,
'AC_LIBTOOL_DLOPEN_SELF' => 1,
'AC_DISABLE_FAST_INSTALL' => 1,
'AC_LTDL_DLLIB' => 1,
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
'_AM_DEPENDENCIES' => 1,
'LT_PATH_NM' => 1, 'LT_PATH_NM' => 1,
'AC_LIB_LTDL' => 1, '_AM_SUBST_NOTMAKE' => 1,
'AC_LIBTOOL_SETUP' => 1,
'_LT_PATH_TOOL_PREFIX' => 1,
'LT_SYS_MODULE_PATH' => 1,
'AC_PROG_EGREP' => 1,
'_LT_PROG_F77' => 1,
'AC_LIBTOOL_FC' => 1,
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
'AC_PATH_TOOL_PREFIX' => 1,
'LT_FUNC_DLSYM_USCORE' => 1,
'AU_DEFUN' => 1,
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
'_AM_SET_OPTION' => 1,
'LT_LIB_DLLOAD' => 1,
'LT_LANG' => 1,
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
'AM_PROG_NM' => 1,
'AC_PROG_LD' => 1,
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
'_LTDL_SETUP' => 1,
'_LT_LIBOBJ' => 1,
'AC_LTDL_SHLIBEXT' => 1,
'_LT_LINKER_OPTION' => 1,
'_LT_AC_SYS_COMPILER' => 1,
'_LT_AC_SYS_LIBPATH_AIX' => 1,
'AM_ENABLE_STATIC' => 1,
'm4_include' => 1,
'_LT_AC_LANG_F77_CONFIG' => 1,
'LT_LIB_M' => 1,
'AM_INIT_AUTOMAKE' => 1,
'_LT_AC_LANG_GCJ_CONFIG' => 1,
'AC_LIBTOOL_GCJ' => 1,
'LT_WITH_LTDL' => 1,
'AM_AUTOMAKE_VERSION' => 1,
'_AM_PROG_TAR' => 1,
'LTOBSOLETE_VERSION' => 1,
'LT_SYS_SYMBOL_USCORE' => 1,
'AC_LIBTOOL_LINKER_OPTION' => 1,
'AC_LIBTOOL_RC' => 1,
'LT_OUTPUT' => 1,
'AC_PROG_NM' => 1,
'LT_SYS_MODULE_EXT' => 1,
'AC_LIBLTDL_CONVENIENCE' => 1,
'_LT_AC_SHELL_INIT' => 1,
'include' => 1,
'AC_LTDL_PREOPEN' => 1,
'_LT_AC_LANG_RC_CONFIG' => 1,
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
'AM_PROG_INSTALL_STRIP' => 1,
'AC_CHECK_LIBM' => 1,
'AM_SILENT_RULES' => 1, 'AM_SILENT_RULES' => 1,
'AM_SET_LEADING_DOT' => 1,
'LT_SYS_DLSEARCH_PATH' => 1,
'LT_AC_PROG_GCJ' => 1,
'LTDL_INSTALLABLE' => 1,
'AM_PROG_LIBTOOL' => 1,
'AM_PROG_INSTALL_STRIP' => 1,
'AC_ENABLE_SHARED' => 1,
'LT_SYS_SYMBOL_USCORE' => 1,
'AC_DISABLE_FAST_INSTALL' => 1,
'AM_INIT_AUTOMAKE' => 1,
'AC_LIBTOOL_PROG_CC_C_O' => 1,
'LTOBSOLETE_VERSION' => 1,
'_AM_PROG_CC_C_O' => 1,
'AM_DISABLE_STATIC' => 1,
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
'AC_PROG_LD_GNU' => 1,
'LT_LIB_M' => 1,
'AM_MAKE_INCLUDE' => 1,
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
'_LT_AC_TRY_DLOPEN_SELF' => 1,
'_LT_AC_PROG_CXXCPP' => 1,
'LTDL_CONVENIENCE' => 1,
'AC_DISABLE_SHARED' => 1,
'LT_WITH_LTDL' => 1,
'AC_LIBTOOL_COMPILER_OPTION' => 1,
'_LT_COMPILER_BOILERPLATE' => 1,
'AC_LTDL_SYSSEARCHPATH' => 1,
'AM_PROG_NM' => 1,
'LT_CONFIG_LTDL_DIR' => 1,
'AC_LIBTOOL_LINKER_OPTION' => 1,
'AM_AUTOMAKE_VERSION' => 1,
'AC_DISABLE_STATIC' => 1,
'AC_DEPLIBS_CHECK_METHOD' => 1,
'AC_ENABLE_FAST_INSTALL' => 1,
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
'_LT_AC_SYS_LIBPATH_AIX' => 1,
'LT_INIT' => 1,
'_LT_AC_CHECK_DLFCN' => 1,
'AC_LIBLTDL_CONVENIENCE' => 1,
'AC_LIBTOOL_PICMODE' => 1,
'LT_SUPPORTED_TAG' => 1,
'AM_AUX_DIR_EXPAND' => 1,
'LT_PROG_GCJ' => 1,
'AC_PATH_MAGIC' => 1,
'LT_SYS_DLOPEN_SELF' => 1,
'_LT_LINKER_OPTION' => 1,
'AC_LTDL_DLLIB' => 1,
'AC_LIBTOOL_WIN32_DLL' => 1,
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
'LT_FUNC_ARGZ' => 1,
'_AM_SET_OPTIONS' => 1,
'AC_LTDL_ENABLE_INSTALL' => 1,
'AM_DISABLE_SHARED' => 1,
'_LT_AC_LANG_CXX' => 1,
'AC_LIBTOOL_FC' => 1,
'AC_DEFUN' => 1,
'LT_PATH_LD' => 1,
'_LT_DLL_DEF_P' => 1,
'AM_ENABLE_STATIC' => 1,
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
'LT_LIB_DLLOAD' => 1,
'LT_SYS_MODULE_EXT' => 1,
'AC_LIBLTDL_INSTALLABLE' => 1,
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
'AC_PROG_LD_RELOAD_FLAG' => 1,
'AC_LTDL_OBJDIR' => 1,
'AM_MISSING_PROG' => 1,
'_LT_AC_TAGVAR' => 1,
'LT_FUNC_DLSYM_USCORE' => 1,
'AC_CHECK_LIBM' => 1,
'AM_SUBST_NOTMAKE' => 1,
'LT_OUTPUT' => 1,
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
'_LT_AC_LANG_F77_CONFIG' => 1,
'_LTDL_SETUP' => 1,
'LT_SYS_MODULE_PATH' => 1,
'_AM_PROG_TAR' => 1,
'AC_LIBTOOL_F77' => 1,
'AC_PATH_TOOL_PREFIX' => 1,
'AM_SANITY_CHECK' => 1,
'AC_LIBTOOL_OBJDIR' => 1,
'_LT_AC_LANG_F77' => 1,
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
'LTSUGAR_VERSION' => 1,
'include' => 1,
'AM_PROG_LD' => 1,
'_LT_LIBOBJ' => 1,
'LT_AC_PROG_EGREP' => 1,
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
'_LT_LINKER_BOILERPLATE' => 1,
'AC_LIBTOOL_SETUP' => 1,
'AC_LIBTOOL_CONFIG' => 1,
'_AC_PROG_LIBTOOL' => 1,
'AC_CONFIG_MACRO_DIR' => 1,
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
'_AM_CONFIG_MACRO_DIRS' => 1,
'm4_include' => 1,
'AC_LTDL_SHLIBEXT' => 1,
'_m4_warn' => 1,
'AC_LTDL_SHLIBPATH' => 1,
'LT_AC_PROG_RC' => 1,
'_LT_PROG_F77' => 1,
'AC_LIBTOOL_DLOPEN_SELF' => 1,
'LT_LANG' => 1,
'AC_LTDL_DLSYM_USCORE' => 1,
'LT_SYS_DLOPEN_DEPLIBS' => 1,
'AM_MISSING_HAS_RUN' => 1,
'_LT_PATH_TOOL_PREFIX' => 1,
'AC_WITH_LTDL' => 1,
'_LT_PROG_ECHO_BACKSLASH' => 1,
'AM_PROG_INSTALL_SH' => 1,
'AM_PROG_CC_C_O' => 1,
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
'm4_pattern_allow' => 1,
'AM_CONDITIONAL' => 1,
'AC_ENABLE_STATIC' => 1,
'LT_CMD_MAX_LEN' => 1, 'LT_CMD_MAX_LEN' => 1,
'_LT_AC_TAGCONFIG' => 1, '_LT_AC_TAGCONFIG' => 1,
'_LT_WITH_SYSROOT' => 1, '_LT_WITH_SYSROOT' => 1,
'AC_LIBTOOL_PICMODE' => 1,
'_LT_PROG_CXX' => 1,
'_LT_AC_TRY_DLOPEN_SELF' => 1,
'AC_CONFIG_MACRO_DIR' => 1,
'_LT_AC_TAGVAR' => 1,
'AC_LTDL_OBJDIR' => 1,
'_LT_COMPILER_OPTION' => 1,
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
'LTDL_INIT' => 1,
'LT_AC_PROG_GCJ' => 1,
'AC_PROG_LIBTOOL' => 1,
'AC_LTDL_ENABLE_INSTALL' => 1,
'AC_DEFUN_ONCE' => 1,
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
'_LT_LINKER_BOILERPLATE' => 1,
'AM_MISSING_HAS_RUN' => 1,
'LT_SYS_DLOPEN_SELF' => 1,
'AC_LTDL_SYSSEARCHPATH' => 1,
'AM_SUBST_NOTMAKE' => 1,
'LTSUGAR_VERSION' => 1,
'_LT_AC_LANG_CXX_CONFIG' => 1,
'm4_pattern_forbid' => 1,
'AC_LTDL_SHLIBPATH' => 1,
'_LT_AC_FILE_LTDLL_C' => 1,
'LTVERSION_VERSION' => 1,
'_LT_AC_LANG_CXX' => 1,
'AC_LIBTOOL_CONFIG' => 1,
'LT_PATH_LD' => 1,
'AC_ENABLE_SHARED' => 1,
'AM_PROG_CC_C_O' => 1,
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
'AC_WITH_LTDL' => 1,
'AC_LIBTOOL_COMPILER_OPTION' => 1,
'AC_PROG_LD_RELOAD_FLAG' => 1,
'AC_PATH_MAGIC' => 1,
'AC_ENABLE_FAST_INSTALL' => 1,
'LT_INIT' => 1,
'_AM_PROG_CC_C_O' => 1,
'_AM_IF_OPTION' => 1,
'LT_PROG_GO' => 1,
'AC_LIBTOOL_CXX' => 1,
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
'_LT_PROG_LTMAIN' => 1,
'AC_LIBTOOL_OBJDIR' => 1,
'LT_SYS_DLSEARCH_PATH' => 1,
'AC_LIBLTDL_INSTALLABLE' => 1,
'_m4_warn' => 1,
'AC_LIBTOOL_F77' => 1,
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
'_AM_SUBST_NOTMAKE' => 1,
'_LT_AC_LANG_GCJ' => 1,
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
'AM_CONDITIONAL' => 1,
'AM_DISABLE_SHARED' => 1,
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
'LTOPTIONS_VERSION' => 1,
'AC_LTDL_DLSYM_USCORE' => 1,
'AM_SET_LEADING_DOT' => 1,
'AM_MAKE_INCLUDE' => 1,
'LT_FUNC_ARGZ' => 1,
'AM_PROG_LIBTOOL' => 1,
'AM_DEP_TRACK' => 1,
'AM_RUN_LOG' => 1,
'AC_DEFUN' => 1,
'_LT_AC_PROG_CXXCPP' => 1,
'LT_PROG_RC' => 1,
'AC_LIBTOOL_DLOPEN' => 1,
'LTDL_CONVENIENCE' => 1,
'_LT_AC_LANG_C_CONFIG' => 1,
'_AC_PROG_LIBTOOL' => 1,
'LT_PROG_GCJ' => 1,
'LT_SYS_DLOPEN_DEPLIBS' => 1,
'_LT_CC_BASENAME' => 1,
'AM_DISABLE_STATIC' => 1,
'_LT_PROG_ECHO_BACKSLASH' => 1,
'AM_PROG_LD' => 1,
'LT_AC_PROG_EGREP' => 1,
'_LT_DLL_DEF_P' => 1,
'AM_PROG_INSTALL_SH' => 1,
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
'_LT_AC_CHECK_DLFCN' => 1,
'_AM_CONFIG_MACRO_DIRS' => 1,
'_LT_AC_LOCK' => 1,
'AC_DISABLE_SHARED' => 1,
'AM_SET_DEPDIR' => 1,
'LTDL_INSTALLABLE' => 1,
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
'_LT_AC_LANG_F77' => 1,
'AM_MISSING_PROG' => 1,
'LT_SUPPORTED_TAG' => 1,
'_AM_AUTOCONF_VERSION' => 1,
'AC_DEPLIBS_CHECK_METHOD' => 1,
'_LT_PROG_FC' => 1, '_LT_PROG_FC' => 1,
'AM_AUX_DIR_EXPAND' => 1, 'AM_DEP_TRACK' => 1,
'LT_CONFIG_LTDL_DIR' => 1, '_LT_AC_LANG_CXX_CONFIG' => 1,
'AC_DISABLE_STATIC' => 1, 'AC_LIBTOOL_GCJ' => 1,
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1, '_LT_AC_FILE_LTDLL_C' => 1,
'AC_LTDL_SYMBOL_USCORE' => 1, '_AM_IF_OPTION' => 1,
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1, 'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
'_LT_PROG_CXX' => 1,
'_LT_AC_LANG_RC_CONFIG' => 1,
'_AM_MANGLE_OPTION' => 1, '_AM_MANGLE_OPTION' => 1,
'LT_AC_PROG_RC' => 1, 'LT_AC_PROG_SED' => 1,
'_AM_SET_OPTIONS' => 1 'AC_LTDL_SYMBOL_USCORE' => 1,
'_AM_SET_OPTION' => 1,
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
'LTOPTIONS_VERSION' => 1,
'AC_LIBTOOL_RC' => 1,
'LT_PROG_RC' => 1,
'LTDL_INIT' => 1,
'AC_DEFUN_ONCE' => 1,
'AC_LIB_LTDL' => 1,
'AC_LIBTOOL_DLOPEN' => 1,
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
'AM_SET_DEPDIR' => 1,
'_LT_AC_SYS_COMPILER' => 1,
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
'_AM_DEPENDENCIES' => 1,
'AC_PROG_LD' => 1,
'_LT_AC_LANG_GCJ' => 1,
'_LT_COMPILER_OPTION' => 1,
'_LT_AC_SHELL_INIT' => 1,
'_LT_AC_LOCK' => 1,
'AC_PROG_NM' => 1,
'_LT_AC_LANG_GCJ_CONFIG' => 1,
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
'AM_ENABLE_SHARED' => 1,
'AC_LIBTOOL_CXX' => 1,
'_LT_PROG_LTMAIN' => 1,
'_AM_AUTOCONF_VERSION' => 1,
'_LT_CC_BASENAME' => 1,
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
'AC_PROG_LIBTOOL' => 1,
'm4_pattern_forbid' => 1,
'LT_PROG_GO' => 1,
'AC_LTDL_PREOPEN' => 1,
'LTVERSION_VERSION' => 1,
'AU_DEFUN' => 1,
'_LT_AC_LANG_C_CONFIG' => 1,
'AC_PROG_EGREP' => 1,
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1
} }
], 'Autom4te::Request' ) ], 'Autom4te::Request' )
); );

View File

@ -550,256 +550,278 @@ m4trace:configure.ac:70: -1- m4_pattern_allow([^YYTEXT_POINTER$])
m4trace:configure.ac:70: -1- AH_OUTPUT([YYTEXT_POINTER], [/* Define to 1 if `lex\' declares `yytext\' as a `char *\' by default, not a m4trace:configure.ac:70: -1- AH_OUTPUT([YYTEXT_POINTER], [/* Define to 1 if `lex\' declares `yytext\' as a `char *\' by default, not a
`char@<:@@:>@\'. */ `char@<:@@:>@\'. */
@%:@undef YYTEXT_POINTER]) @%:@undef YYTEXT_POINTER])
m4trace:configure.ac:111: -2- AH_OUTPUT([HAVE_LIBZ], [/* Define to 1 if you have the `z\' library (-lz). */ m4trace:configure.ac:123: -2- AH_OUTPUT([HAVE_LIBZ], [/* Define to 1 if you have the `z\' library (-lz). */
@%:@undef HAVE_LIBZ]) @%:@undef HAVE_LIBZ])
m4trace:configure.ac:111: -2- AC_DEFINE_TRACE_LITERAL([HAVE_LIBZ]) m4trace:configure.ac:123: -2- AC_DEFINE_TRACE_LITERAL([HAVE_LIBZ])
m4trace:configure.ac:111: -2- m4_pattern_allow([^HAVE_LIBZ$]) m4trace:configure.ac:123: -2- m4_pattern_allow([^HAVE_LIBZ$])
m4trace:configure.ac:124: -2- AM_CONDITIONAL([FT2NFDUMP], [true]) m4trace:configure.ac:136: -2- AM_CONDITIONAL([FT2NFDUMP], [true])
m4trace:configure.ac:124: -2- AC_SUBST([FT2NFDUMP_TRUE]) m4trace:configure.ac:136: -2- AC_SUBST([FT2NFDUMP_TRUE])
m4trace:configure.ac:124: -2- AC_SUBST_TRACE([FT2NFDUMP_TRUE]) m4trace:configure.ac:136: -2- AC_SUBST_TRACE([FT2NFDUMP_TRUE])
m4trace:configure.ac:124: -2- m4_pattern_allow([^FT2NFDUMP_TRUE$]) m4trace:configure.ac:136: -2- m4_pattern_allow([^FT2NFDUMP_TRUE$])
m4trace:configure.ac:124: -2- AC_SUBST([FT2NFDUMP_FALSE]) m4trace:configure.ac:136: -2- AC_SUBST([FT2NFDUMP_FALSE])
m4trace:configure.ac:124: -2- AC_SUBST_TRACE([FT2NFDUMP_FALSE]) m4trace:configure.ac:136: -2- AC_SUBST_TRACE([FT2NFDUMP_FALSE])
m4trace:configure.ac:124: -2- m4_pattern_allow([^FT2NFDUMP_FALSE$]) m4trace:configure.ac:136: -2- m4_pattern_allow([^FT2NFDUMP_FALSE$])
m4trace:configure.ac:124: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_TRUE]) m4trace:configure.ac:136: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_TRUE])
m4trace:configure.ac:124: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_FALSE]) m4trace:configure.ac:136: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_FALSE])
m4trace:configure.ac:126: -2- AM_CONDITIONAL([FT2NFDUMP], [false]) m4trace:configure.ac:138: -2- AM_CONDITIONAL([FT2NFDUMP], [false])
m4trace:configure.ac:126: -2- AC_SUBST([FT2NFDUMP_TRUE]) m4trace:configure.ac:138: -2- AC_SUBST([FT2NFDUMP_TRUE])
m4trace:configure.ac:126: -2- AC_SUBST_TRACE([FT2NFDUMP_TRUE]) m4trace:configure.ac:138: -2- AC_SUBST_TRACE([FT2NFDUMP_TRUE])
m4trace:configure.ac:126: -2- m4_pattern_allow([^FT2NFDUMP_TRUE$]) m4trace:configure.ac:138: -2- m4_pattern_allow([^FT2NFDUMP_TRUE$])
m4trace:configure.ac:126: -2- AC_SUBST([FT2NFDUMP_FALSE]) m4trace:configure.ac:138: -2- AC_SUBST([FT2NFDUMP_FALSE])
m4trace:configure.ac:126: -2- AC_SUBST_TRACE([FT2NFDUMP_FALSE]) m4trace:configure.ac:138: -2- AC_SUBST_TRACE([FT2NFDUMP_FALSE])
m4trace:configure.ac:126: -2- m4_pattern_allow([^FT2NFDUMP_FALSE$]) m4trace:configure.ac:138: -2- m4_pattern_allow([^FT2NFDUMP_FALSE$])
m4trace:configure.ac:126: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_TRUE]) m4trace:configure.ac:138: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_TRUE])
m4trace:configure.ac:126: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_FALSE]) m4trace:configure.ac:138: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_FALSE])
m4trace:configure.ac:160: -2- AM_CONDITIONAL([NFPROFILE], [false]) m4trace:configure.ac:172: -2- AM_CONDITIONAL([NFPROFILE], [false])
m4trace:configure.ac:160: -2- AC_SUBST([NFPROFILE_TRUE]) m4trace:configure.ac:172: -2- AC_SUBST([NFPROFILE_TRUE])
m4trace:configure.ac:160: -2- AC_SUBST_TRACE([NFPROFILE_TRUE]) m4trace:configure.ac:172: -2- AC_SUBST_TRACE([NFPROFILE_TRUE])
m4trace:configure.ac:160: -2- m4_pattern_allow([^NFPROFILE_TRUE$]) m4trace:configure.ac:172: -2- m4_pattern_allow([^NFPROFILE_TRUE$])
m4trace:configure.ac:160: -2- AC_SUBST([NFPROFILE_FALSE]) m4trace:configure.ac:172: -2- AC_SUBST([NFPROFILE_FALSE])
m4trace:configure.ac:160: -2- AC_SUBST_TRACE([NFPROFILE_FALSE]) m4trace:configure.ac:172: -2- AC_SUBST_TRACE([NFPROFILE_FALSE])
m4trace:configure.ac:160: -2- m4_pattern_allow([^NFPROFILE_FALSE$]) m4trace:configure.ac:172: -2- m4_pattern_allow([^NFPROFILE_FALSE$])
m4trace:configure.ac:160: -2- _AM_SUBST_NOTMAKE([NFPROFILE_TRUE]) m4trace:configure.ac:172: -2- _AM_SUBST_NOTMAKE([NFPROFILE_TRUE])
m4trace:configure.ac:160: -2- _AM_SUBST_NOTMAKE([NFPROFILE_FALSE]) m4trace:configure.ac:172: -2- _AM_SUBST_NOTMAKE([NFPROFILE_FALSE])
m4trace:configure.ac:161: -1- AC_SUBST([RRD_LIBS]) m4trace:configure.ac:173: -1- AC_SUBST([RRD_LIBS])
m4trace:configure.ac:161: -1- AC_SUBST_TRACE([RRD_LIBS]) m4trace:configure.ac:173: -1- AC_SUBST_TRACE([RRD_LIBS])
m4trace:configure.ac:161: -1- m4_pattern_allow([^RRD_LIBS$]) m4trace:configure.ac:173: -1- m4_pattern_allow([^RRD_LIBS$])
m4trace:configure.ac:161: -1- AH_OUTPUT([HAVE_RRD_H], [/* Define to 1 if you have the <rrd.h> header file. */ m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_RRD_H], [/* Define to 1 if you have the <rrd.h> header file. */
@%:@undef HAVE_RRD_H]) @%:@undef HAVE_RRD_H])
m4trace:configure.ac:161: -1- AC_DEFINE_TRACE_LITERAL([HAVE_RRD_H]) m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_RRD_H])
m4trace:configure.ac:161: -1- m4_pattern_allow([^HAVE_RRD_H$]) m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_RRD_H$])
m4trace:configure.ac:161: -1- AM_CONDITIONAL([NFPROFILE], [true]) m4trace:configure.ac:173: -1- AM_CONDITIONAL([NFPROFILE], [true])
m4trace:configure.ac:161: -1- AC_SUBST([NFPROFILE_TRUE]) m4trace:configure.ac:173: -1- AC_SUBST([NFPROFILE_TRUE])
m4trace:configure.ac:161: -1- AC_SUBST_TRACE([NFPROFILE_TRUE]) m4trace:configure.ac:173: -1- AC_SUBST_TRACE([NFPROFILE_TRUE])
m4trace:configure.ac:161: -1- m4_pattern_allow([^NFPROFILE_TRUE$]) m4trace:configure.ac:173: -1- m4_pattern_allow([^NFPROFILE_TRUE$])
m4trace:configure.ac:161: -1- AC_SUBST([NFPROFILE_FALSE]) m4trace:configure.ac:173: -1- AC_SUBST([NFPROFILE_FALSE])
m4trace:configure.ac:161: -1- AC_SUBST_TRACE([NFPROFILE_FALSE]) m4trace:configure.ac:173: -1- AC_SUBST_TRACE([NFPROFILE_FALSE])
m4trace:configure.ac:161: -1- m4_pattern_allow([^NFPROFILE_FALSE$]) m4trace:configure.ac:173: -1- m4_pattern_allow([^NFPROFILE_FALSE$])
m4trace:configure.ac:161: -1- _AM_SUBST_NOTMAKE([NFPROFILE_TRUE]) m4trace:configure.ac:173: -1- _AM_SUBST_NOTMAKE([NFPROFILE_TRUE])
m4trace:configure.ac:161: -1- _AM_SUBST_NOTMAKE([NFPROFILE_FALSE]) m4trace:configure.ac:173: -1- _AM_SUBST_NOTMAKE([NFPROFILE_FALSE])
m4trace:configure.ac:161: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from... m4trace:configure.ac:173: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from... ../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from... ../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from...
configure.ac:161: the top level]) configure.ac:173: the top level])
m4trace:configure.ac:193: -2- AM_CONDITIONAL([NFTRACK], [false]) m4trace:configure.ac:205: -2- AM_CONDITIONAL([NFTRACK], [false])
m4trace:configure.ac:193: -2- AC_SUBST([NFTRACK_TRUE]) m4trace:configure.ac:205: -2- AC_SUBST([NFTRACK_TRUE])
m4trace:configure.ac:193: -2- AC_SUBST_TRACE([NFTRACK_TRUE]) m4trace:configure.ac:205: -2- AC_SUBST_TRACE([NFTRACK_TRUE])
m4trace:configure.ac:193: -2- m4_pattern_allow([^NFTRACK_TRUE$]) m4trace:configure.ac:205: -2- m4_pattern_allow([^NFTRACK_TRUE$])
m4trace:configure.ac:193: -2- AC_SUBST([NFTRACK_FALSE]) m4trace:configure.ac:205: -2- AC_SUBST([NFTRACK_FALSE])
m4trace:configure.ac:193: -2- AC_SUBST_TRACE([NFTRACK_FALSE]) m4trace:configure.ac:205: -2- AC_SUBST_TRACE([NFTRACK_FALSE])
m4trace:configure.ac:193: -2- m4_pattern_allow([^NFTRACK_FALSE$]) m4trace:configure.ac:205: -2- m4_pattern_allow([^NFTRACK_FALSE$])
m4trace:configure.ac:193: -2- _AM_SUBST_NOTMAKE([NFTRACK_TRUE]) m4trace:configure.ac:205: -2- _AM_SUBST_NOTMAKE([NFTRACK_TRUE])
m4trace:configure.ac:193: -2- _AM_SUBST_NOTMAKE([NFTRACK_FALSE]) m4trace:configure.ac:205: -2- _AM_SUBST_NOTMAKE([NFTRACK_FALSE])
m4trace:configure.ac:194: -1- AC_SUBST([RRD_LIBS]) m4trace:configure.ac:206: -1- AC_SUBST([RRD_LIBS])
m4trace:configure.ac:194: -1- AC_SUBST_TRACE([RRD_LIBS]) m4trace:configure.ac:206: -1- AC_SUBST_TRACE([RRD_LIBS])
m4trace:configure.ac:194: -1- m4_pattern_allow([^RRD_LIBS$]) m4trace:configure.ac:206: -1- m4_pattern_allow([^RRD_LIBS$])
m4trace:configure.ac:194: -1- AH_OUTPUT([HAVE_RRD_H], [/* Define to 1 if you have the <rrd.h> header file. */ m4trace:configure.ac:206: -1- AH_OUTPUT([HAVE_RRD_H], [/* Define to 1 if you have the <rrd.h> header file. */
@%:@undef HAVE_RRD_H]) @%:@undef HAVE_RRD_H])
m4trace:configure.ac:194: -1- AC_DEFINE_TRACE_LITERAL([HAVE_RRD_H]) m4trace:configure.ac:206: -1- AC_DEFINE_TRACE_LITERAL([HAVE_RRD_H])
m4trace:configure.ac:194: -1- m4_pattern_allow([^HAVE_RRD_H$]) m4trace:configure.ac:206: -1- m4_pattern_allow([^HAVE_RRD_H$])
m4trace:configure.ac:194: -1- AM_CONDITIONAL([NFTRACK], [true]) m4trace:configure.ac:206: -1- AM_CONDITIONAL([NFTRACK], [true])
m4trace:configure.ac:194: -1- AC_SUBST([NFTRACK_TRUE]) m4trace:configure.ac:206: -1- AC_SUBST([NFTRACK_TRUE])
m4trace:configure.ac:194: -1- AC_SUBST_TRACE([NFTRACK_TRUE]) m4trace:configure.ac:206: -1- AC_SUBST_TRACE([NFTRACK_TRUE])
m4trace:configure.ac:194: -1- m4_pattern_allow([^NFTRACK_TRUE$]) m4trace:configure.ac:206: -1- m4_pattern_allow([^NFTRACK_TRUE$])
m4trace:configure.ac:194: -1- AC_SUBST([NFTRACK_FALSE]) m4trace:configure.ac:206: -1- AC_SUBST([NFTRACK_FALSE])
m4trace:configure.ac:194: -1- AC_SUBST_TRACE([NFTRACK_FALSE]) m4trace:configure.ac:206: -1- AC_SUBST_TRACE([NFTRACK_FALSE])
m4trace:configure.ac:194: -1- m4_pattern_allow([^NFTRACK_FALSE$]) m4trace:configure.ac:206: -1- m4_pattern_allow([^NFTRACK_FALSE$])
m4trace:configure.ac:194: -1- _AM_SUBST_NOTMAKE([NFTRACK_TRUE]) m4trace:configure.ac:206: -1- _AM_SUBST_NOTMAKE([NFTRACK_TRUE])
m4trace:configure.ac:194: -1- _AM_SUBST_NOTMAKE([NFTRACK_FALSE]) m4trace:configure.ac:206: -1- _AM_SUBST_NOTMAKE([NFTRACK_FALSE])
m4trace:configure.ac:194: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from... m4trace:configure.ac:206: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from... ../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from... ../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from...
configure.ac:194: the top level]) configure.ac:206: the top level])
m4trace:configure.ac:198: -1- AM_CONDITIONAL([SFLOW], [test "$enable_sflow" = yes]) m4trace:configure.ac:210: -1- AM_CONDITIONAL([SFLOW], [test "$enable_sflow" = yes])
m4trace:configure.ac:198: -1- AC_SUBST([SFLOW_TRUE]) m4trace:configure.ac:210: -1- AC_SUBST([SFLOW_TRUE])
m4trace:configure.ac:198: -1- AC_SUBST_TRACE([SFLOW_TRUE]) m4trace:configure.ac:210: -1- AC_SUBST_TRACE([SFLOW_TRUE])
m4trace:configure.ac:198: -1- m4_pattern_allow([^SFLOW_TRUE$]) m4trace:configure.ac:210: -1- m4_pattern_allow([^SFLOW_TRUE$])
m4trace:configure.ac:198: -1- AC_SUBST([SFLOW_FALSE]) m4trace:configure.ac:210: -1- AC_SUBST([SFLOW_FALSE])
m4trace:configure.ac:198: -1- AC_SUBST_TRACE([SFLOW_FALSE]) m4trace:configure.ac:210: -1- AC_SUBST_TRACE([SFLOW_FALSE])
m4trace:configure.ac:198: -1- m4_pattern_allow([^SFLOW_FALSE$]) m4trace:configure.ac:210: -1- m4_pattern_allow([^SFLOW_FALSE$])
m4trace:configure.ac:198: -1- _AM_SUBST_NOTMAKE([SFLOW_TRUE]) m4trace:configure.ac:210: -1- _AM_SUBST_NOTMAKE([SFLOW_TRUE])
m4trace:configure.ac:198: -1- _AM_SUBST_NOTMAKE([SFLOW_FALSE]) m4trace:configure.ac:210: -1- _AM_SUBST_NOTMAKE([SFLOW_FALSE])
m4trace:configure.ac:202: -1- AM_CONDITIONAL([READPCAP], [test "$enable_readpcap" = yes]) m4trace:configure.ac:214: -1- AM_CONDITIONAL([READPCAP], [test "$enable_readpcap" = yes])
m4trace:configure.ac:202: -1- AC_SUBST([READPCAP_TRUE]) m4trace:configure.ac:214: -1- AC_SUBST([READPCAP_TRUE])
m4trace:configure.ac:202: -1- AC_SUBST_TRACE([READPCAP_TRUE]) m4trace:configure.ac:214: -1- AC_SUBST_TRACE([READPCAP_TRUE])
m4trace:configure.ac:202: -1- m4_pattern_allow([^READPCAP_TRUE$]) m4trace:configure.ac:214: -1- m4_pattern_allow([^READPCAP_TRUE$])
m4trace:configure.ac:202: -1- AC_SUBST([READPCAP_FALSE]) m4trace:configure.ac:214: -1- AC_SUBST([READPCAP_FALSE])
m4trace:configure.ac:202: -1- AC_SUBST_TRACE([READPCAP_FALSE]) m4trace:configure.ac:214: -1- AC_SUBST_TRACE([READPCAP_FALSE])
m4trace:configure.ac:202: -1- m4_pattern_allow([^READPCAP_FALSE$]) m4trace:configure.ac:214: -1- m4_pattern_allow([^READPCAP_FALSE$])
m4trace:configure.ac:202: -1- _AM_SUBST_NOTMAKE([READPCAP_TRUE]) m4trace:configure.ac:214: -1- _AM_SUBST_NOTMAKE([READPCAP_TRUE])
m4trace:configure.ac:202: -1- _AM_SUBST_NOTMAKE([READPCAP_FALSE]) m4trace:configure.ac:214: -1- _AM_SUBST_NOTMAKE([READPCAP_FALSE])
m4trace:configure.ac:206: -1- AM_CONDITIONAL([BUILDNFPCAPD], [test "$enable_nfpcapd" = yes]) m4trace:configure.ac:246: -2- AM_CONDITIONAL([BUILDNFPCAPD], [false])
m4trace:configure.ac:206: -1- AC_SUBST([BUILDNFPCAPD_TRUE]) m4trace:configure.ac:246: -2- AC_SUBST([BUILDNFPCAPD_TRUE])
m4trace:configure.ac:206: -1- AC_SUBST_TRACE([BUILDNFPCAPD_TRUE]) m4trace:configure.ac:246: -2- AC_SUBST_TRACE([BUILDNFPCAPD_TRUE])
m4trace:configure.ac:206: -1- m4_pattern_allow([^BUILDNFPCAPD_TRUE$]) m4trace:configure.ac:246: -2- m4_pattern_allow([^BUILDNFPCAPD_TRUE$])
m4trace:configure.ac:206: -1- AC_SUBST([BUILDNFPCAPD_FALSE]) m4trace:configure.ac:246: -2- AC_SUBST([BUILDNFPCAPD_FALSE])
m4trace:configure.ac:206: -1- AC_SUBST_TRACE([BUILDNFPCAPD_FALSE]) m4trace:configure.ac:246: -2- AC_SUBST_TRACE([BUILDNFPCAPD_FALSE])
m4trace:configure.ac:206: -1- m4_pattern_allow([^BUILDNFPCAPD_FALSE$]) m4trace:configure.ac:246: -2- m4_pattern_allow([^BUILDNFPCAPD_FALSE$])
m4trace:configure.ac:206: -1- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_TRUE]) m4trace:configure.ac:246: -2- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_TRUE])
m4trace:configure.ac:206: -1- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_FALSE]) m4trace:configure.ac:246: -2- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_FALSE])
m4trace:configure.ac:210: -2- AC_DEFINE_TRACE_LITERAL([HAVE_SOCKADDR_SA_LEN]) m4trace:configure.ac:247: -1- AC_SUBST([PCAP_LIBS])
m4trace:configure.ac:210: -2- m4_pattern_allow([^HAVE_SOCKADDR_SA_LEN$]) m4trace:configure.ac:247: -1- AC_SUBST_TRACE([PCAP_LIBS])
m4trace:configure.ac:210: -2- AH_OUTPUT([HAVE_SOCKADDR_SA_LEN], [/* define if socket address structures have length fields */ m4trace:configure.ac:247: -1- m4_pattern_allow([^PCAP_LIBS$])
m4trace:configure.ac:247: -1- AH_OUTPUT([HAVE_PCAP_H], [/* Define to 1 if you have the <pcap.h> header file. */
@%:@undef HAVE_PCAP_H])
m4trace:configure.ac:247: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PCAP_H])
m4trace:configure.ac:247: -1- m4_pattern_allow([^HAVE_PCAP_H$])
m4trace:configure.ac:247: -1- AM_CONDITIONAL([BUILDNFPCAPD], [true])
m4trace:configure.ac:247: -1- AC_SUBST([BUILDNFPCAPD_TRUE])
m4trace:configure.ac:247: -1- AC_SUBST_TRACE([BUILDNFPCAPD_TRUE])
m4trace:configure.ac:247: -1- m4_pattern_allow([^BUILDNFPCAPD_TRUE$])
m4trace:configure.ac:247: -1- AC_SUBST([BUILDNFPCAPD_FALSE])
m4trace:configure.ac:247: -1- AC_SUBST_TRACE([BUILDNFPCAPD_FALSE])
m4trace:configure.ac:247: -1- m4_pattern_allow([^BUILDNFPCAPD_FALSE$])
m4trace:configure.ac:247: -1- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_TRUE])
m4trace:configure.ac:247: -1- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_FALSE])
m4trace:configure.ac:247: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from...
configure.ac:247: the top level])
m4trace:configure.ac:251: -2- AC_DEFINE_TRACE_LITERAL([HAVE_SOCKADDR_SA_LEN])
m4trace:configure.ac:251: -2- m4_pattern_allow([^HAVE_SOCKADDR_SA_LEN$])
m4trace:configure.ac:251: -2- AH_OUTPUT([HAVE_SOCKADDR_SA_LEN], [/* define if socket address structures have length fields */
@%:@undef HAVE_SOCKADDR_SA_LEN]) @%:@undef HAVE_SOCKADDR_SA_LEN])
m4trace:configure.ac:221: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY]) m4trace:configure.ac:262: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY])
m4trace:configure.ac:221: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY$]) m4trace:configure.ac:262: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY$])
m4trace:configure.ac:221: -1- AH_OUTPUT([HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY], [/* Define to 1 if `ss_family\' is a member of `struct sockaddr_storage\'. */ m4trace:configure.ac:262: -1- AH_OUTPUT([HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY], [/* Define to 1 if `ss_family\' is a member of `struct sockaddr_storage\'. */
@%:@undef HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY]) @%:@undef HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY])
m4trace:configure.ac:221: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY]) m4trace:configure.ac:262: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY])
m4trace:configure.ac:221: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY$]) m4trace:configure.ac:262: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY$])
m4trace:configure.ac:221: -1- AH_OUTPUT([HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY], [/* Define to 1 if `__ss_family\' is a member of `struct sockaddr_storage\'. */ m4trace:configure.ac:262: -1- AH_OUTPUT([HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY], [/* Define to 1 if `__ss_family\' is a member of `struct sockaddr_storage\'. */
@%:@undef HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY]) @%:@undef HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY])
m4trace:configure.ac:221: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN]) m4trace:configure.ac:262: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN])
m4trace:configure.ac:221: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN$]) m4trace:configure.ac:262: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN$])
m4trace:configure.ac:221: -1- AH_OUTPUT([HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN], [/* Define to 1 if `ss_len\' is a member of `struct sockaddr_storage\'. */ m4trace:configure.ac:262: -1- AH_OUTPUT([HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN], [/* Define to 1 if `ss_len\' is a member of `struct sockaddr_storage\'. */
@%:@undef HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN]) @%:@undef HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN])
m4trace:configure.ac:221: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN]) m4trace:configure.ac:262: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN])
m4trace:configure.ac:221: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN$]) m4trace:configure.ac:262: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN$])
m4trace:configure.ac:221: -1- AH_OUTPUT([HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN], [/* Define to 1 if `__ss_len\' is a member of `struct sockaddr_storage\'. */ m4trace:configure.ac:262: -1- AH_OUTPUT([HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN], [/* Define to 1 if `__ss_len\' is a member of `struct sockaddr_storage\'. */
@%:@undef HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN]) @%:@undef HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN])
m4trace:configure.ac:221: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_SOCKADDR_SA_LEN]) m4trace:configure.ac:262: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_SOCKADDR_SA_LEN])
m4trace:configure.ac:221: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_SA_LEN$]) m4trace:configure.ac:262: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_SA_LEN$])
m4trace:configure.ac:221: -1- AH_OUTPUT([HAVE_STRUCT_SOCKADDR_SA_LEN], [/* Define to 1 if `sa_len\' is a member of `struct sockaddr\'. */ m4trace:configure.ac:262: -1- AH_OUTPUT([HAVE_STRUCT_SOCKADDR_SA_LEN], [/* Define to 1 if `sa_len\' is a member of `struct sockaddr\'. */
@%:@undef HAVE_STRUCT_SOCKADDR_SA_LEN]) @%:@undef HAVE_STRUCT_SOCKADDR_SA_LEN])
m4trace:configure.ac:224: -1- AC_SUBST([FT_INCLUDES]) m4trace:configure.ac:265: -1- AC_SUBST([FT_INCLUDES])
m4trace:configure.ac:224: -1- AC_SUBST_TRACE([FT_INCLUDES]) m4trace:configure.ac:265: -1- AC_SUBST_TRACE([FT_INCLUDES])
m4trace:configure.ac:224: -1- m4_pattern_allow([^FT_INCLUDES$]) m4trace:configure.ac:265: -1- m4_pattern_allow([^FT_INCLUDES$])
m4trace:configure.ac:225: -1- AC_SUBST([FT_LDFLAGS]) m4trace:configure.ac:266: -1- AC_SUBST([FT_LDFLAGS])
m4trace:configure.ac:225: -1- AC_SUBST_TRACE([FT_LDFLAGS]) m4trace:configure.ac:266: -1- AC_SUBST_TRACE([FT_LDFLAGS])
m4trace:configure.ac:225: -1- m4_pattern_allow([^FT_LDFLAGS$]) m4trace:configure.ac:266: -1- m4_pattern_allow([^FT_LDFLAGS$])
m4trace:configure.ac:226: -1- AC_SUBST([LFLAGS]) m4trace:configure.ac:267: -1- AC_SUBST([LFLAGS])
m4trace:configure.ac:226: -1- AC_SUBST_TRACE([LFLAGS]) m4trace:configure.ac:267: -1- AC_SUBST_TRACE([LFLAGS])
m4trace:configure.ac:226: -1- m4_pattern_allow([^LFLAGS$]) m4trace:configure.ac:267: -1- m4_pattern_allow([^LFLAGS$])
m4trace:configure.ac:230: -1- AH_OUTPUT([HAVE_GETHOSTBYNAME], [/* Define to 1 if you have the `gethostbyname\' function. */ m4trace:configure.ac:271: -1- AH_OUTPUT([HAVE_GETHOSTBYNAME], [/* Define to 1 if you have the `gethostbyname\' function. */
@%:@undef HAVE_GETHOSTBYNAME]) @%:@undef HAVE_GETHOSTBYNAME])
m4trace:configure.ac:230: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETHOSTBYNAME]) m4trace:configure.ac:271: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETHOSTBYNAME])
m4trace:configure.ac:230: -1- m4_pattern_allow([^HAVE_GETHOSTBYNAME$]) m4trace:configure.ac:271: -1- m4_pattern_allow([^HAVE_GETHOSTBYNAME$])
m4trace:configure.ac:230: -1- AH_OUTPUT([HAVE_LIBNSL], [/* Define to 1 if you have the `nsl\' library (-lnsl). */ m4trace:configure.ac:271: -1- AH_OUTPUT([HAVE_LIBNSL], [/* Define to 1 if you have the `nsl\' library (-lnsl). */
@%:@undef HAVE_LIBNSL]) @%:@undef HAVE_LIBNSL])
m4trace:configure.ac:230: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBNSL]) m4trace:configure.ac:271: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBNSL])
m4trace:configure.ac:230: -1- m4_pattern_allow([^HAVE_LIBNSL$]) m4trace:configure.ac:271: -1- m4_pattern_allow([^HAVE_LIBNSL$])
m4trace:configure.ac:230: -1- AH_OUTPUT([HAVE_LIBSOCKET], [/* Define to 1 if you have the `socket\' library (-lsocket). */ m4trace:configure.ac:271: -1- AH_OUTPUT([HAVE_LIBSOCKET], [/* Define to 1 if you have the `socket\' library (-lsocket). */
@%:@undef HAVE_LIBSOCKET]) @%:@undef HAVE_LIBSOCKET])
m4trace:configure.ac:230: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBSOCKET]) m4trace:configure.ac:271: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBSOCKET])
m4trace:configure.ac:230: -1- m4_pattern_allow([^HAVE_LIBSOCKET$]) m4trace:configure.ac:271: -1- m4_pattern_allow([^HAVE_LIBSOCKET$])
m4trace:configure.ac:231: -1- AH_OUTPUT([HAVE_SETSOCKOPT], [/* Define to 1 if you have the `setsockopt\' function. */ m4trace:configure.ac:272: -1- AH_OUTPUT([HAVE_SETSOCKOPT], [/* Define to 1 if you have the `setsockopt\' function. */
@%:@undef HAVE_SETSOCKOPT]) @%:@undef HAVE_SETSOCKOPT])
m4trace:configure.ac:231: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SETSOCKOPT]) m4trace:configure.ac:272: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SETSOCKOPT])
m4trace:configure.ac:231: -1- m4_pattern_allow([^HAVE_SETSOCKOPT$]) m4trace:configure.ac:272: -1- m4_pattern_allow([^HAVE_SETSOCKOPT$])
m4trace:configure.ac:231: -1- AH_OUTPUT([HAVE_LIBSOCKET], [/* Define to 1 if you have the `socket\' library (-lsocket). */ m4trace:configure.ac:272: -1- AH_OUTPUT([HAVE_LIBSOCKET], [/* Define to 1 if you have the `socket\' library (-lsocket). */
@%:@undef HAVE_LIBSOCKET]) @%:@undef HAVE_LIBSOCKET])
m4trace:configure.ac:231: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBSOCKET]) m4trace:configure.ac:272: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBSOCKET])
m4trace:configure.ac:231: -1- m4_pattern_allow([^HAVE_LIBSOCKET$]) m4trace:configure.ac:272: -1- m4_pattern_allow([^HAVE_LIBSOCKET$])
m4trace:configure.ac:234: -1- AH_OUTPUT([HAVE_FPURGE], [/* Define to 1 if you have the `fpurge\' function. */ m4trace:configure.ac:275: -1- AH_OUTPUT([HAVE_FPURGE], [/* Define to 1 if you have the `fpurge\' function. */
@%:@undef HAVE_FPURGE]) @%:@undef HAVE_FPURGE])
m4trace:configure.ac:234: -1- AH_OUTPUT([HAVE___FPURGE], [/* Define to 1 if you have the `__fpurge\' function. */ m4trace:configure.ac:275: -1- AH_OUTPUT([HAVE___FPURGE], [/* Define to 1 if you have the `__fpurge\' function. */
@%:@undef HAVE___FPURGE]) @%:@undef HAVE___FPURGE])
m4trace:configure.ac:255: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HTONLL]) m4trace:configure.ac:296: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HTONLL])
m4trace:configure.ac:255: -1- m4_pattern_allow([^HAVE_HTONLL$]) m4trace:configure.ac:296: -1- m4_pattern_allow([^HAVE_HTONLL$])
m4trace:configure.ac:255: -1- AH_OUTPUT([HAVE_HTONLL], [/* Define to 1 if the function (or macro) htonll exists. */ m4trace:configure.ac:296: -1- AH_OUTPUT([HAVE_HTONLL], [/* Define to 1 if the function (or macro) htonll exists. */
@%:@undef HAVE_HTONLL]) @%:@undef HAVE_HTONLL])
m4trace:configure.ac:258: -1- AH_OUTPUT([HAVE_DIRENT_H], [/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR\'. m4trace:configure.ac:299: -1- AH_OUTPUT([HAVE_DIRENT_H], [/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR\'.
*/ */
@%:@undef HAVE_DIRENT_H]) @%:@undef HAVE_DIRENT_H])
m4trace:configure.ac:258: -1- AH_OUTPUT([HAVE_SYS_NDIR_H], [/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR\'. m4trace:configure.ac:299: -1- AH_OUTPUT([HAVE_SYS_NDIR_H], [/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR\'.
*/ */
@%:@undef HAVE_SYS_NDIR_H]) @%:@undef HAVE_SYS_NDIR_H])
m4trace:configure.ac:258: -1- AH_OUTPUT([HAVE_SYS_DIR_H], [/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR\'. m4trace:configure.ac:299: -1- AH_OUTPUT([HAVE_SYS_DIR_H], [/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR\'.
*/ */
@%:@undef HAVE_SYS_DIR_H]) @%:@undef HAVE_SYS_DIR_H])
m4trace:configure.ac:258: -1- AH_OUTPUT([HAVE_NDIR_H], [/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR\'. */ m4trace:configure.ac:299: -1- AH_OUTPUT([HAVE_NDIR_H], [/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR\'. */
@%:@undef HAVE_NDIR_H]) @%:@undef HAVE_NDIR_H])
m4trace:configure.ac:259: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS]) m4trace:configure.ac:300: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
m4trace:configure.ac:259: -1- m4_pattern_allow([^STDC_HEADERS$]) m4trace:configure.ac:300: -1- m4_pattern_allow([^STDC_HEADERS$])
m4trace:configure.ac:259: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */ m4trace:configure.ac:300: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
@%:@undef STDC_HEADERS]) @%:@undef STDC_HEADERS])
m4trace:configure.ac:260: -1- AH_OUTPUT([HAVE_NAMESER8_COMPAT_H], [/* Define to 1 if you have the <nameser8_compat.h> header file. */ m4trace:configure.ac:301: -1- AH_OUTPUT([HAVE_NAMESER8_COMPAT_H], [/* Define to 1 if you have the <nameser8_compat.h> header file. */
@%:@undef HAVE_NAMESER8_COMPAT_H]) @%:@undef HAVE_NAMESER8_COMPAT_H])
m4trace:configure.ac:260: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NAMESER8_COMPAT_H]) m4trace:configure.ac:301: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NAMESER8_COMPAT_H])
m4trace:configure.ac:260: -1- m4_pattern_allow([^HAVE_NAMESER8_COMPAT_H$]) m4trace:configure.ac:301: -1- m4_pattern_allow([^HAVE_NAMESER8_COMPAT_H$])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_FEATURES_H], [/* Define to 1 if you have the <features.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_FEATURES_H], [/* Define to 1 if you have the <features.h> header file. */
@%:@undef HAVE_FEATURES_H]) @%:@undef HAVE_FEATURES_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_ARPA_INET_H], [/* Define to 1 if you have the <arpa/inet.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_ARPA_INET_H], [/* Define to 1 if you have the <arpa/inet.h> header file. */
@%:@undef HAVE_ARPA_INET_H]) @%:@undef HAVE_ARPA_INET_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */
@%:@undef HAVE_FCNTL_H]) @%:@undef HAVE_FCNTL_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_NETINET_IN_H], [/* Define to 1 if you have the <netinet/in.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_NETINET_IN_H], [/* Define to 1 if you have the <netinet/in.h> header file. */
@%:@undef HAVE_NETINET_IN_H]) @%:@undef HAVE_NETINET_IN_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_FTS_H], [/* Define to 1 if you have the <fts.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_FTS_H], [/* Define to 1 if you have the <fts.h> header file. */
@%:@undef HAVE_FTS_H]) @%:@undef HAVE_FTS_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
@%:@undef HAVE_STDINT_H]) @%:@undef HAVE_STDINT_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
@%:@undef HAVE_STDLIB_H]) @%:@undef HAVE_STDLIB_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_STDDEF_H], [/* Define to 1 if you have the <stddef.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_STDDEF_H], [/* Define to 1 if you have the <stddef.h> header file. */
@%:@undef HAVE_STDDEF_H]) @%:@undef HAVE_STDDEF_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
@%:@undef HAVE_STRING_H]) @%:@undef HAVE_STRING_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_SYS_SOCKET_H], [/* Define to 1 if you have the <sys/socket.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_SYS_SOCKET_H], [/* Define to 1 if you have the <sys/socket.h> header file. */
@%:@undef HAVE_SYS_SOCKET_H]) @%:@undef HAVE_SYS_SOCKET_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_SYSLOG_H], [/* Define to 1 if you have the <syslog.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_SYSLOG_H], [/* Define to 1 if you have the <syslog.h> header file. */
@%:@undef HAVE_SYSLOG_H]) @%:@undef HAVE_SYSLOG_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
@%:@undef HAVE_UNISTD_H]) @%:@undef HAVE_UNISTD_H])
m4trace:configure.ac:261: -1- AH_OUTPUT([HAVE_ISO_LIMITS_ISO_H], [/* Define to 1 if you have the <iso/limits_iso.h> header file. */ m4trace:configure.ac:302: -1- AH_OUTPUT([HAVE_ISO_LIMITS_ISO_H], [/* Define to 1 if you have the <iso/limits_iso.h> header file. */
@%:@undef HAVE_ISO_LIMITS_ISO_H]) @%:@undef HAVE_ISO_LIMITS_ISO_H])
m4trace:configure.ac:262: -1- AH_OUTPUT([HAVE_PCAP_BPF_H], [/* Define to 1 if you have the <pcap-bpf.h> header file. */ m4trace:configure.ac:303: -1- AH_OUTPUT([HAVE_PCAP_BPF_H], [/* Define to 1 if you have the <pcap-bpf.h> header file. */
@%:@undef HAVE_PCAP_BPF_H]) @%:@undef HAVE_PCAP_BPF_H])
m4trace:configure.ac:262: -1- AH_OUTPUT([HAVE_NET_BPF_H], [/* Define to 1 if you have the <net/bpf.h> header file. */ m4trace:configure.ac:303: -1- AH_OUTPUT([HAVE_NET_BPF_H], [/* Define to 1 if you have the <net/bpf.h> header file. */
@%:@undef HAVE_NET_BPF_H]) @%:@undef HAVE_NET_BPF_H])
m4trace:configure.ac:277: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */ m4trace:configure.ac:318: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
@%:@undef HAVE_SYS_TYPES_H]) @%:@undef HAVE_SYS_TYPES_H])
m4trace:configure.ac:277: -1- AH_OUTPUT([HAVE_NETINET_IN_H], [/* Define to 1 if you have the <netinet/in.h> header file. */ m4trace:configure.ac:318: -1- AH_OUTPUT([HAVE_NETINET_IN_H], [/* Define to 1 if you have the <netinet/in.h> header file. */
@%:@undef HAVE_NETINET_IN_H]) @%:@undef HAVE_NETINET_IN_H])
m4trace:configure.ac:277: -1- AH_OUTPUT([HAVE_ARPA_NAMESER_H], [/* Define to 1 if you have the <arpa/nameser.h> header file. */ m4trace:configure.ac:318: -1- AH_OUTPUT([HAVE_ARPA_NAMESER_H], [/* Define to 1 if you have the <arpa/nameser.h> header file. */
@%:@undef HAVE_ARPA_NAMESER_H]) @%:@undef HAVE_ARPA_NAMESER_H])
m4trace:configure.ac:277: -1- AH_OUTPUT([HAVE_ARPA_NAMESER_COMPAT_H], [/* Define to 1 if you have the <arpa/nameser_compat.h> header file. */ m4trace:configure.ac:318: -1- AH_OUTPUT([HAVE_ARPA_NAMESER_COMPAT_H], [/* Define to 1 if you have the <arpa/nameser_compat.h> header file. */
@%:@undef HAVE_ARPA_NAMESER_COMPAT_H]) @%:@undef HAVE_ARPA_NAMESER_COMPAT_H])
m4trace:configure.ac:277: -1- AH_OUTPUT([HAVE_NETDB_H], [/* Define to 1 if you have the <netdb.h> header file. */ m4trace:configure.ac:318: -1- AH_OUTPUT([HAVE_NETDB_H], [/* Define to 1 if you have the <netdb.h> header file. */
@%:@undef HAVE_NETDB_H]) @%:@undef HAVE_NETDB_H])
m4trace:configure.ac:277: -1- AH_OUTPUT([HAVE_RESOLV_H], [/* Define to 1 if you have the <resolv.h> header file. */ m4trace:configure.ac:318: -1- AH_OUTPUT([HAVE_RESOLV_H], [/* Define to 1 if you have the <resolv.h> header file. */
@%:@undef HAVE_RESOLV_H]) @%:@undef HAVE_RESOLV_H])
m4trace:configure.ac:279: -1- AH_OUTPUT([HAVE_BZLIB_H], [/* Define to 1 if you have the <bzlib.h> header file. */ m4trace:configure.ac:318: -1- AH_OUTPUT([HAVE_NETINET_IN_SYSTM_H], [/* Define to 1 if you have the <netinet/in_systm.h> header file. */
@%:@undef HAVE_NETINET_IN_SYSTM_H])
m4trace:configure.ac:320: -1- AH_OUTPUT([HAVE_BZLIB_H], [/* Define to 1 if you have the <bzlib.h> header file. */
@%:@undef HAVE_BZLIB_H]) @%:@undef HAVE_BZLIB_H])
m4trace:configure.ac:279: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BZLIB_H]) m4trace:configure.ac:320: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BZLIB_H])
m4trace:configure.ac:279: -1- m4_pattern_allow([^HAVE_BZLIB_H$]) m4trace:configure.ac:320: -1- m4_pattern_allow([^HAVE_BZLIB_H$])
m4trace:configure.ac:287: -1- AC_SUBST([FTS_OBJ]) m4trace:configure.ac:328: -1- AC_SUBST([FTS_OBJ])
m4trace:configure.ac:287: -1- AC_SUBST_TRACE([FTS_OBJ]) m4trace:configure.ac:328: -1- AC_SUBST_TRACE([FTS_OBJ])
m4trace:configure.ac:287: -1- m4_pattern_allow([^FTS_OBJ$]) m4trace:configure.ac:328: -1- m4_pattern_allow([^FTS_OBJ$])
m4trace:configure.ac:291: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_VOID_P]) m4trace:configure.ac:332: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_VOID_P])
m4trace:configure.ac:291: -1- m4_pattern_allow([^SIZEOF_VOID_P$]) m4trace:configure.ac:332: -1- m4_pattern_allow([^SIZEOF_VOID_P$])
m4trace:configure.ac:291: -1- AH_OUTPUT([SIZEOF_VOID_P], [/* The size of `void *\', as computed by sizeof. */ m4trace:configure.ac:332: -1- AH_OUTPUT([SIZEOF_VOID_P], [/* The size of `void *\', as computed by sizeof. */
@%:@undef SIZEOF_VOID_P]) @%:@undef SIZEOF_VOID_P])
m4trace:configure.ac:293: -1- AC_DEFINE_TRACE_LITERAL([const]) m4trace:configure.ac:334: -1- AC_DEFINE_TRACE_LITERAL([const])
m4trace:configure.ac:293: -1- m4_pattern_allow([^const$]) m4trace:configure.ac:334: -1- m4_pattern_allow([^const$])
m4trace:configure.ac:293: -1- AH_OUTPUT([const], [/* Define to empty if `const\' does not conform to ANSI C. */ m4trace:configure.ac:334: -1- AH_OUTPUT([const], [/* Define to empty if `const\' does not conform to ANSI C. */
@%:@undef const]) @%:@undef const])
m4trace:configure.ac:294: -1- AH_OUTPUT([inline], [/* Define to `__inline__\' or `__inline\' if that\'s what the C compiler m4trace:configure.ac:335: -1- AH_OUTPUT([inline], [/* Define to `__inline__\' or `__inline\' if that\'s what the C compiler
calls it, or to nothing if \'inline\' is not supported under any name. */ calls it, or to nothing if \'inline\' is not supported under any name. */
#ifndef __cplusplus #ifndef __cplusplus
#undef inline #undef inline
#endif]) #endif])
m4trace:configure.ac:295: -1- AH_OUTPUT([WORDS_BIGENDIAN], [/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most m4trace:configure.ac:336: -1- AH_OUTPUT([WORDS_BIGENDIAN], [/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */ significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD #if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__ # if defined __BIG_ENDIAN__
@ -810,267 +832,267 @@ m4trace:configure.ac:295: -1- AH_OUTPUT([WORDS_BIGENDIAN], [/* Define WORDS_BIGE
# undef WORDS_BIGENDIAN # undef WORDS_BIGENDIAN
# endif # endif
#endif]) #endif])
m4trace:configure.ac:295: -1- AC_DEFINE_TRACE_LITERAL([WORDS_BIGENDIAN]) m4trace:configure.ac:336: -1- AC_DEFINE_TRACE_LITERAL([WORDS_BIGENDIAN])
m4trace:configure.ac:295: -1- m4_pattern_allow([^WORDS_BIGENDIAN$]) m4trace:configure.ac:336: -1- m4_pattern_allow([^WORDS_BIGENDIAN$])
m4trace:configure.ac:295: -1- AC_DEFINE_TRACE_LITERAL([AC_APPLE_UNIVERSAL_BUILD]) m4trace:configure.ac:336: -1- AC_DEFINE_TRACE_LITERAL([AC_APPLE_UNIVERSAL_BUILD])
m4trace:configure.ac:295: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$]) m4trace:configure.ac:336: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$])
m4trace:configure.ac:295: -1- AH_OUTPUT([AC_APPLE_UNIVERSAL_BUILD], [/* Define if building universal (internal helper macro) */ m4trace:configure.ac:336: -1- AH_OUTPUT([AC_APPLE_UNIVERSAL_BUILD], [/* Define if building universal (internal helper macro) */
@%:@undef AC_APPLE_UNIVERSAL_BUILD]) @%:@undef AC_APPLE_UNIVERSAL_BUILD])
m4trace:configure.ac:296: -1- AC_DEFINE_TRACE_LITERAL([pid_t]) m4trace:configure.ac:337: -1- AC_DEFINE_TRACE_LITERAL([pid_t])
m4trace:configure.ac:296: -1- m4_pattern_allow([^pid_t$]) m4trace:configure.ac:337: -1- m4_pattern_allow([^pid_t$])
m4trace:configure.ac:296: -1- AH_OUTPUT([pid_t], [/* Define to `int\' if <sys/types.h> does not define. */ m4trace:configure.ac:337: -1- AH_OUTPUT([pid_t], [/* Define to `int\' if <sys/types.h> does not define. */
@%:@undef pid_t]) @%:@undef pid_t])
m4trace:configure.ac:297: -1- AC_DEFINE_TRACE_LITERAL([size_t]) m4trace:configure.ac:338: -1- AC_DEFINE_TRACE_LITERAL([size_t])
m4trace:configure.ac:297: -1- m4_pattern_allow([^size_t$]) m4trace:configure.ac:338: -1- m4_pattern_allow([^size_t$])
m4trace:configure.ac:297: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */ m4trace:configure.ac:338: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */
@%:@undef size_t]) @%:@undef size_t])
m4trace:configure.ac:298: -1- AC_DEFINE_TRACE_LITERAL([TM_IN_SYS_TIME]) m4trace:configure.ac:339: -1- AC_DEFINE_TRACE_LITERAL([TM_IN_SYS_TIME])
m4trace:configure.ac:298: -1- m4_pattern_allow([^TM_IN_SYS_TIME$]) m4trace:configure.ac:339: -1- m4_pattern_allow([^TM_IN_SYS_TIME$])
m4trace:configure.ac:298: -1- AH_OUTPUT([TM_IN_SYS_TIME], [/* Define to 1 if your <sys/time.h> declares `struct tm\'. */ m4trace:configure.ac:339: -1- AH_OUTPUT([TM_IN_SYS_TIME], [/* Define to 1 if your <sys/time.h> declares `struct tm\'. */
@%:@undef TM_IN_SYS_TIME]) @%:@undef TM_IN_SYS_TIME])
m4trace:configure.ac:299: -1- AC_DEFINE_TRACE_LITERAL([HAVE__BOOL]) m4trace:configure.ac:340: -1- AC_DEFINE_TRACE_LITERAL([HAVE__BOOL])
m4trace:configure.ac:299: -1- m4_pattern_allow([^HAVE__BOOL$]) m4trace:configure.ac:340: -1- m4_pattern_allow([^HAVE__BOOL$])
m4trace:configure.ac:299: -1- AH_OUTPUT([HAVE__BOOL], [/* Define to 1 if the system has the type `_Bool\'. */ m4trace:configure.ac:340: -1- AH_OUTPUT([HAVE__BOOL], [/* Define to 1 if the system has the type `_Bool\'. */
@%:@undef HAVE__BOOL]) @%:@undef HAVE__BOOL])
m4trace:configure.ac:299: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDBOOL_H]) m4trace:configure.ac:340: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDBOOL_H])
m4trace:configure.ac:299: -1- m4_pattern_allow([^HAVE_STDBOOL_H$]) m4trace:configure.ac:340: -1- m4_pattern_allow([^HAVE_STDBOOL_H$])
m4trace:configure.ac:299: -1- AH_OUTPUT([HAVE_STDBOOL_H], [/* Define to 1 if stdbool.h conforms to C99. */ m4trace:configure.ac:340: -1- AH_OUTPUT([HAVE_STDBOOL_H], [/* Define to 1 if stdbool.h conforms to C99. */
@%:@undef HAVE_STDBOOL_H]) @%:@undef HAVE_STDBOOL_H])
m4trace:configure.ac:302: -1- AC_DEFINE_TRACE_LITERAL([CLOSEDIR_VOID]) m4trace:configure.ac:343: -1- AC_DEFINE_TRACE_LITERAL([CLOSEDIR_VOID])
m4trace:configure.ac:302: -1- m4_pattern_allow([^CLOSEDIR_VOID$]) m4trace:configure.ac:343: -1- m4_pattern_allow([^CLOSEDIR_VOID$])
m4trace:configure.ac:302: -1- AH_OUTPUT([CLOSEDIR_VOID], [/* Define to 1 if the `closedir\' function returns void instead of `int\'. */ m4trace:configure.ac:343: -1- AH_OUTPUT([CLOSEDIR_VOID], [/* Define to 1 if the `closedir\' function returns void instead of `int\'. */
@%:@undef CLOSEDIR_VOID]) @%:@undef CLOSEDIR_VOID])
m4trace:configure.ac:303: -1- AH_OUTPUT([HAVE_VFORK_H], [/* Define to 1 if you have the <vfork.h> header file. */ m4trace:configure.ac:344: -1- AH_OUTPUT([HAVE_VFORK_H], [/* Define to 1 if you have the <vfork.h> header file. */
@%:@undef HAVE_VFORK_H]) @%:@undef HAVE_VFORK_H])
m4trace:configure.ac:303: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFORK_H]) m4trace:configure.ac:344: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFORK_H])
m4trace:configure.ac:303: -1- m4_pattern_allow([^HAVE_VFORK_H$]) m4trace:configure.ac:344: -1- m4_pattern_allow([^HAVE_VFORK_H$])
m4trace:configure.ac:303: -1- AH_OUTPUT([HAVE_FORK], [/* Define to 1 if you have the `fork\' function. */ m4trace:configure.ac:344: -1- AH_OUTPUT([HAVE_FORK], [/* Define to 1 if you have the `fork\' function. */
@%:@undef HAVE_FORK]) @%:@undef HAVE_FORK])
m4trace:configure.ac:303: -1- AH_OUTPUT([HAVE_VFORK], [/* Define to 1 if you have the `vfork\' function. */ m4trace:configure.ac:344: -1- AH_OUTPUT([HAVE_VFORK], [/* Define to 1 if you have the `vfork\' function. */
@%:@undef HAVE_VFORK]) @%:@undef HAVE_VFORK])
m4trace:configure.ac:303: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_VFORK]) m4trace:configure.ac:344: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_VFORK])
m4trace:configure.ac:303: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$]) m4trace:configure.ac:344: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
m4trace:configure.ac:303: -1- AH_OUTPUT([HAVE_WORKING_VFORK], [/* Define to 1 if `vfork\' works. */ m4trace:configure.ac:344: -1- AH_OUTPUT([HAVE_WORKING_VFORK], [/* Define to 1 if `vfork\' works. */
@%:@undef HAVE_WORKING_VFORK]) @%:@undef HAVE_WORKING_VFORK])
m4trace:configure.ac:303: -1- AC_DEFINE_TRACE_LITERAL([vfork]) m4trace:configure.ac:344: -1- AC_DEFINE_TRACE_LITERAL([vfork])
m4trace:configure.ac:303: -1- m4_pattern_allow([^vfork$]) m4trace:configure.ac:344: -1- m4_pattern_allow([^vfork$])
m4trace:configure.ac:303: -1- AH_OUTPUT([vfork], [/* Define as `fork\' if `vfork\' does not work. */ m4trace:configure.ac:344: -1- AH_OUTPUT([vfork], [/* Define as `fork\' if `vfork\' does not work. */
@%:@undef vfork]) @%:@undef vfork])
m4trace:configure.ac:303: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_FORK]) m4trace:configure.ac:344: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_FORK])
m4trace:configure.ac:303: -1- m4_pattern_allow([^HAVE_WORKING_FORK$]) m4trace:configure.ac:344: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
m4trace:configure.ac:303: -1- AH_OUTPUT([HAVE_WORKING_FORK], [/* Define to 1 if `fork\' works. */ m4trace:configure.ac:344: -1- AH_OUTPUT([HAVE_WORKING_FORK], [/* Define to 1 if `fork\' works. */
@%:@undef HAVE_WORKING_FORK]) @%:@undef HAVE_WORKING_FORK])
m4trace:configure.ac:304: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */ m4trace:configure.ac:345: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
@%:@undef HAVE_STDLIB_H]) @%:@undef HAVE_STDLIB_H])
m4trace:configure.ac:304: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDLIB_H]) m4trace:configure.ac:345: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDLIB_H])
m4trace:configure.ac:304: -1- m4_pattern_allow([^HAVE_STDLIB_H$]) m4trace:configure.ac:345: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
m4trace:configure.ac:304: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MALLOC]) m4trace:configure.ac:345: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MALLOC])
m4trace:configure.ac:304: -1- m4_pattern_allow([^HAVE_MALLOC$]) m4trace:configure.ac:345: -1- m4_pattern_allow([^HAVE_MALLOC$])
m4trace:configure.ac:304: -1- AH_OUTPUT([HAVE_MALLOC], [/* Define to 1 if your system has a GNU libc compatible `malloc\' function, and m4trace:configure.ac:345: -1- AH_OUTPUT([HAVE_MALLOC], [/* Define to 1 if your system has a GNU libc compatible `malloc\' function, and
to 0 otherwise. */ to 0 otherwise. */
@%:@undef HAVE_MALLOC]) @%:@undef HAVE_MALLOC])
m4trace:configure.ac:304: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MALLOC]) m4trace:configure.ac:345: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MALLOC])
m4trace:configure.ac:304: -1- m4_pattern_allow([^HAVE_MALLOC$]) m4trace:configure.ac:345: -1- m4_pattern_allow([^HAVE_MALLOC$])
m4trace:configure.ac:304: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS malloc.$ac_objext"]) m4trace:configure.ac:345: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS malloc.$ac_objext"])
m4trace:configure.ac:304: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) m4trace:configure.ac:345: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
m4trace:configure.ac:304: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:345: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:304: -1- AC_LIBSOURCE([malloc.c]) m4trace:configure.ac:345: -1- AC_LIBSOURCE([malloc.c])
m4trace:configure.ac:304: -1- AC_DEFINE_TRACE_LITERAL([malloc]) m4trace:configure.ac:345: -1- AC_DEFINE_TRACE_LITERAL([malloc])
m4trace:configure.ac:304: -1- m4_pattern_allow([^malloc$]) m4trace:configure.ac:345: -1- m4_pattern_allow([^malloc$])
m4trace:configure.ac:304: -1- AH_OUTPUT([malloc], [/* Define to rpl_malloc if the replacement function should be used. */ m4trace:configure.ac:345: -1- AH_OUTPUT([malloc], [/* Define to rpl_malloc if the replacement function should be used. */
@%:@undef malloc]) @%:@undef malloc])
m4trace:configure.ac:305: -1- AC_DEFINE_TRACE_LITERAL([TIME_WITH_SYS_TIME]) m4trace:configure.ac:346: -1- AC_DEFINE_TRACE_LITERAL([TIME_WITH_SYS_TIME])
m4trace:configure.ac:305: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$]) m4trace:configure.ac:346: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$])
m4trace:configure.ac:305: -1- AH_OUTPUT([TIME_WITH_SYS_TIME], [/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ m4trace:configure.ac:346: -1- AH_OUTPUT([TIME_WITH_SYS_TIME], [/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
@%:@undef TIME_WITH_SYS_TIME]) @%:@undef TIME_WITH_SYS_TIME])
m4trace:configure.ac:305: -1- AH_OUTPUT([HAVE_SYS_TIME_H], [/* Define to 1 if you have the <sys/time.h> header file. */ m4trace:configure.ac:346: -1- AH_OUTPUT([HAVE_SYS_TIME_H], [/* Define to 1 if you have the <sys/time.h> header file. */
@%:@undef HAVE_SYS_TIME_H]) @%:@undef HAVE_SYS_TIME_H])
m4trace:configure.ac:305: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */ m4trace:configure.ac:346: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
@%:@undef HAVE_UNISTD_H]) @%:@undef HAVE_UNISTD_H])
m4trace:configure.ac:305: -1- AH_OUTPUT([HAVE_ALARM], [/* Define to 1 if you have the `alarm\' function. */ m4trace:configure.ac:346: -1- AH_OUTPUT([HAVE_ALARM], [/* Define to 1 if you have the `alarm\' function. */
@%:@undef HAVE_ALARM]) @%:@undef HAVE_ALARM])
m4trace:configure.ac:305: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS mktime.$ac_objext"]) m4trace:configure.ac:346: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS mktime.$ac_objext"])
m4trace:configure.ac:305: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) m4trace:configure.ac:346: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
m4trace:configure.ac:305: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:346: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:305: -1- AC_LIBSOURCE([mktime.c]) m4trace:configure.ac:346: -1- AC_LIBSOURCE([mktime.c])
m4trace:configure.ac:306: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */ m4trace:configure.ac:347: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
@%:@undef HAVE_STDLIB_H]) @%:@undef HAVE_STDLIB_H])
m4trace:configure.ac:306: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDLIB_H]) m4trace:configure.ac:347: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDLIB_H])
m4trace:configure.ac:306: -1- m4_pattern_allow([^HAVE_STDLIB_H$]) m4trace:configure.ac:347: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
m4trace:configure.ac:306: -1- AC_DEFINE_TRACE_LITERAL([HAVE_REALLOC]) m4trace:configure.ac:347: -1- AC_DEFINE_TRACE_LITERAL([HAVE_REALLOC])
m4trace:configure.ac:306: -1- m4_pattern_allow([^HAVE_REALLOC$]) m4trace:configure.ac:347: -1- m4_pattern_allow([^HAVE_REALLOC$])
m4trace:configure.ac:306: -1- AH_OUTPUT([HAVE_REALLOC], [/* Define to 1 if your system has a GNU libc compatible `realloc\' function, m4trace:configure.ac:347: -1- AH_OUTPUT([HAVE_REALLOC], [/* Define to 1 if your system has a GNU libc compatible `realloc\' function,
and to 0 otherwise. */ and to 0 otherwise. */
@%:@undef HAVE_REALLOC]) @%:@undef HAVE_REALLOC])
m4trace:configure.ac:306: -1- AC_DEFINE_TRACE_LITERAL([HAVE_REALLOC]) m4trace:configure.ac:347: -1- AC_DEFINE_TRACE_LITERAL([HAVE_REALLOC])
m4trace:configure.ac:306: -1- m4_pattern_allow([^HAVE_REALLOC$]) m4trace:configure.ac:347: -1- m4_pattern_allow([^HAVE_REALLOC$])
m4trace:configure.ac:306: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS realloc.$ac_objext"]) m4trace:configure.ac:347: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS realloc.$ac_objext"])
m4trace:configure.ac:306: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) m4trace:configure.ac:347: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
m4trace:configure.ac:306: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:347: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:306: -1- AC_LIBSOURCE([realloc.c]) m4trace:configure.ac:347: -1- AC_LIBSOURCE([realloc.c])
m4trace:configure.ac:306: -1- AC_DEFINE_TRACE_LITERAL([realloc]) m4trace:configure.ac:347: -1- AC_DEFINE_TRACE_LITERAL([realloc])
m4trace:configure.ac:306: -1- m4_pattern_allow([^realloc$]) m4trace:configure.ac:347: -1- m4_pattern_allow([^realloc$])
m4trace:configure.ac:306: -1- AH_OUTPUT([realloc], [/* Define to rpl_realloc if the replacement function should be used. */ m4trace:configure.ac:347: -1- AH_OUTPUT([realloc], [/* Define to rpl_realloc if the replacement function should be used. */
@%:@undef realloc]) @%:@undef realloc])
m4trace:configure.ac:307: -1- AC_DEFINE_TRACE_LITERAL([LSTAT_FOLLOWS_SLASHED_SYMLINK]) m4trace:configure.ac:348: -1- AC_DEFINE_TRACE_LITERAL([LSTAT_FOLLOWS_SLASHED_SYMLINK])
m4trace:configure.ac:307: -1- m4_pattern_allow([^LSTAT_FOLLOWS_SLASHED_SYMLINK$]) m4trace:configure.ac:348: -1- m4_pattern_allow([^LSTAT_FOLLOWS_SLASHED_SYMLINK$])
m4trace:configure.ac:307: -1- AH_OUTPUT([LSTAT_FOLLOWS_SLASHED_SYMLINK], [/* Define to 1 if `lstat\' dereferences a symlink specified with a trailing m4trace:configure.ac:348: -1- AH_OUTPUT([LSTAT_FOLLOWS_SLASHED_SYMLINK], [/* Define to 1 if `lstat\' dereferences a symlink specified with a trailing
slash. */ slash. */
@%:@undef LSTAT_FOLLOWS_SLASHED_SYMLINK]) @%:@undef LSTAT_FOLLOWS_SLASHED_SYMLINK])
m4trace:configure.ac:307: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS lstat.$ac_objext"]) m4trace:configure.ac:348: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS lstat.$ac_objext"])
m4trace:configure.ac:307: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) m4trace:configure.ac:348: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
m4trace:configure.ac:307: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:348: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:307: -1- AC_LIBSOURCE([lstat.c]) m4trace:configure.ac:348: -1- AC_LIBSOURCE([lstat.c])
m4trace:configure.ac:307: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS stat.$ac_objext"]) m4trace:configure.ac:348: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS stat.$ac_objext"])
m4trace:configure.ac:307: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) m4trace:configure.ac:348: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
m4trace:configure.ac:307: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:348: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:307: -1- AC_LIBSOURCE([stat.c]) m4trace:configure.ac:348: -1- AC_LIBSOURCE([stat.c])
m4trace:configure.ac:307: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STAT_EMPTY_STRING_BUG]) m4trace:configure.ac:348: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STAT_EMPTY_STRING_BUG])
m4trace:configure.ac:307: -1- m4_pattern_allow([^HAVE_STAT_EMPTY_STRING_BUG$]) m4trace:configure.ac:348: -1- m4_pattern_allow([^HAVE_STAT_EMPTY_STRING_BUG$])
m4trace:configure.ac:307: -1- AH_OUTPUT([HAVE_STAT_EMPTY_STRING_BUG], [/* Define to 1 if `stat\' has the bug that it succeeds when given the m4trace:configure.ac:348: -1- AH_OUTPUT([HAVE_STAT_EMPTY_STRING_BUG], [/* Define to 1 if `stat\' has the bug that it succeeds when given the
zero-length file name argument. */ zero-length file name argument. */
@%:@undef HAVE_STAT_EMPTY_STRING_BUG]) @%:@undef HAVE_STAT_EMPTY_STRING_BUG])
m4trace:configure.ac:308: -1- AH_OUTPUT([HAVE_STRFTIME], [/* Define to 1 if you have the `strftime\' function. */ m4trace:configure.ac:349: -1- AH_OUTPUT([HAVE_STRFTIME], [/* Define to 1 if you have the `strftime\' function. */
@%:@undef HAVE_STRFTIME]) @%:@undef HAVE_STRFTIME])
m4trace:configure.ac:308: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRFTIME]) m4trace:configure.ac:349: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRFTIME])
m4trace:configure.ac:308: -1- m4_pattern_allow([^HAVE_STRFTIME$]) m4trace:configure.ac:349: -1- m4_pattern_allow([^HAVE_STRFTIME$])
m4trace:configure.ac:308: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRFTIME]) m4trace:configure.ac:349: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRFTIME])
m4trace:configure.ac:308: -1- m4_pattern_allow([^HAVE_STRFTIME$]) m4trace:configure.ac:349: -1- m4_pattern_allow([^HAVE_STRFTIME$])
m4trace:configure.ac:309: -1- AH_OUTPUT([HAVE_INET_NTOA], [/* Define to 1 if you have the `inet_ntoa\' function. */ m4trace:configure.ac:350: -1- AH_OUTPUT([HAVE_INET_NTOA], [/* Define to 1 if you have the `inet_ntoa\' function. */
@%:@undef HAVE_INET_NTOA]) @%:@undef HAVE_INET_NTOA])
m4trace:configure.ac:309: -1- AH_OUTPUT([HAVE_SOCKET], [/* Define to 1 if you have the `socket\' function. */ m4trace:configure.ac:350: -1- AH_OUTPUT([HAVE_SOCKET], [/* Define to 1 if you have the `socket\' function. */
@%:@undef HAVE_SOCKET]) @%:@undef HAVE_SOCKET])
m4trace:configure.ac:309: -1- AH_OUTPUT([HAVE_STRCHR], [/* Define to 1 if you have the `strchr\' function. */ m4trace:configure.ac:350: -1- AH_OUTPUT([HAVE_STRCHR], [/* Define to 1 if you have the `strchr\' function. */
@%:@undef HAVE_STRCHR]) @%:@undef HAVE_STRCHR])
m4trace:configure.ac:309: -1- AH_OUTPUT([HAVE_STRDUP], [/* Define to 1 if you have the `strdup\' function. */ m4trace:configure.ac:350: -1- AH_OUTPUT([HAVE_STRDUP], [/* Define to 1 if you have the `strdup\' function. */
@%:@undef HAVE_STRDUP]) @%:@undef HAVE_STRDUP])
m4trace:configure.ac:309: -1- AH_OUTPUT([HAVE_STRERROR], [/* Define to 1 if you have the `strerror\' function. */ m4trace:configure.ac:350: -1- AH_OUTPUT([HAVE_STRERROR], [/* Define to 1 if you have the `strerror\' function. */
@%:@undef HAVE_STRERROR]) @%:@undef HAVE_STRERROR])
m4trace:configure.ac:309: -1- AH_OUTPUT([HAVE_STRRCHR], [/* Define to 1 if you have the `strrchr\' function. */ m4trace:configure.ac:350: -1- AH_OUTPUT([HAVE_STRRCHR], [/* Define to 1 if you have the `strrchr\' function. */
@%:@undef HAVE_STRRCHR]) @%:@undef HAVE_STRRCHR])
m4trace:configure.ac:309: -1- AH_OUTPUT([HAVE_STRSTR], [/* Define to 1 if you have the `strstr\' function. */ m4trace:configure.ac:350: -1- AH_OUTPUT([HAVE_STRSTR], [/* Define to 1 if you have the `strstr\' function. */
@%:@undef HAVE_STRSTR]) @%:@undef HAVE_STRSTR])
m4trace:configure.ac:309: -1- AH_OUTPUT([HAVE_SCANDIR], [/* Define to 1 if you have the `scandir\' function. */ m4trace:configure.ac:350: -1- AH_OUTPUT([HAVE_SCANDIR], [/* Define to 1 if you have the `scandir\' function. */
@%:@undef HAVE_SCANDIR]) @%:@undef HAVE_SCANDIR])
m4trace:configure.ac:326: -1- AH_OUTPUT([HAVE_LIBRESOLV], [/* Define to 1 if you have the `resolv\' library (-lresolv). */ m4trace:configure.ac:367: -1- AH_OUTPUT([HAVE_LIBRESOLV], [/* Define to 1 if you have the `resolv\' library (-lresolv). */
@%:@undef HAVE_LIBRESOLV]) @%:@undef HAVE_LIBRESOLV])
m4trace:configure.ac:326: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRESOLV]) m4trace:configure.ac:367: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRESOLV])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBRESOLV$])
m4trace:configure.ac:326: -1- AH_OUTPUT([HAVE_LIBRESOLV], [/* Define to 1 if you have the `resolv\' library (-lresolv). */ m4trace:configure.ac:367: -1- AH_OUTPUT([HAVE_LIBRESOLV], [/* Define to 1 if you have the `resolv\' library (-lresolv). */
@%:@undef HAVE_LIBRESOLV]) @%:@undef HAVE_LIBRESOLV])
m4trace:configure.ac:326: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRESOLV]) m4trace:configure.ac:367: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRESOLV])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBRESOLV$])
m4trace:configure.ac:326: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBSOCKET]) m4trace:configure.ac:367: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBSOCKET])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBSOCKET$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBSOCKET$])
m4trace:configure.ac:326: -1- AH_OUTPUT([HAVE_LIBSOCKET], [/* */ m4trace:configure.ac:367: -1- AH_OUTPUT([HAVE_LIBSOCKET], [/* */
@%:@undef HAVE_LIBSOCKET]) @%:@undef HAVE_LIBSOCKET])
m4trace:configure.ac:326: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRESOLV]) m4trace:configure.ac:367: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRESOLV])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBRESOLV$])
m4trace:configure.ac:326: -1- AH_OUTPUT([HAVE_LIBRESOLV], [/* */ m4trace:configure.ac:367: -1- AH_OUTPUT([HAVE_LIBRESOLV], [/* */
@%:@undef HAVE_LIBRESOLV]) @%:@undef HAVE_LIBRESOLV])
m4trace:configure.ac:326: -1- AH_OUTPUT([HAVE_LIBRESOLV], [/* Define to 1 if you have the `resolv\' library (-lresolv). */ m4trace:configure.ac:367: -1- AH_OUTPUT([HAVE_LIBRESOLV], [/* Define to 1 if you have the `resolv\' library (-lresolv). */
@%:@undef HAVE_LIBRESOLV]) @%:@undef HAVE_LIBRESOLV])
m4trace:configure.ac:326: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRESOLV]) m4trace:configure.ac:367: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRESOLV])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBRESOLV$])
m4trace:configure.ac:326: -1- AH_OUTPUT([HAVE_LIBRESOLV], [/* Define to 1 if you have the `resolv\' library (-lresolv). */ m4trace:configure.ac:367: -1- AH_OUTPUT([HAVE_LIBRESOLV], [/* Define to 1 if you have the `resolv\' library (-lresolv). */
@%:@undef HAVE_LIBRESOLV]) @%:@undef HAVE_LIBRESOLV])
m4trace:configure.ac:326: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRESOLV]) m4trace:configure.ac:367: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRESOLV])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBRESOLV$])
m4trace:configure.ac:333: -1- AC_DEFINE_TRACE_LITERAL([ptrdiff_t]) m4trace:configure.ac:374: -1- AC_DEFINE_TRACE_LITERAL([ptrdiff_t])
m4trace:configure.ac:333: -1- m4_pattern_allow([^ptrdiff_t$]) m4trace:configure.ac:374: -1- m4_pattern_allow([^ptrdiff_t$])
m4trace:configure.ac:333: -1- AH_OUTPUT([ptrdiff_t], [/* Define to `long\' if <sys/types.h> does not define. */ m4trace:configure.ac:374: -1- AH_OUTPUT([ptrdiff_t], [/* Define to `long\' if <sys/types.h> does not define. */
@%:@undef ptrdiff_t]) @%:@undef ptrdiff_t])
m4trace:configure.ac:334: -1- AC_DEFINE_TRACE_LITERAL([size_t]) m4trace:configure.ac:375: -1- AC_DEFINE_TRACE_LITERAL([size_t])
m4trace:configure.ac:334: -1- m4_pattern_allow([^size_t$]) m4trace:configure.ac:375: -1- m4_pattern_allow([^size_t$])
m4trace:configure.ac:334: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */ m4trace:configure.ac:375: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */
@%:@undef size_t]) @%:@undef size_t])
m4trace:configure.ac:335: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_SHORT]) m4trace:configure.ac:376: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_SHORT])
m4trace:configure.ac:335: -1- m4_pattern_allow([^SIZEOF_SHORT$]) m4trace:configure.ac:376: -1- m4_pattern_allow([^SIZEOF_SHORT$])
m4trace:configure.ac:335: -1- AH_OUTPUT([SIZEOF_SHORT], [/* The size of `short\', as computed by sizeof. */ m4trace:configure.ac:376: -1- AH_OUTPUT([SIZEOF_SHORT], [/* The size of `short\', as computed by sizeof. */
@%:@undef SIZEOF_SHORT]) @%:@undef SIZEOF_SHORT])
m4trace:configure.ac:336: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_INT]) m4trace:configure.ac:377: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_INT])
m4trace:configure.ac:336: -1- m4_pattern_allow([^SIZEOF_INT$]) m4trace:configure.ac:377: -1- m4_pattern_allow([^SIZEOF_INT$])
m4trace:configure.ac:336: -1- AH_OUTPUT([SIZEOF_INT], [/* The size of `int\', as computed by sizeof. */ m4trace:configure.ac:377: -1- AH_OUTPUT([SIZEOF_INT], [/* The size of `int\', as computed by sizeof. */
@%:@undef SIZEOF_INT]) @%:@undef SIZEOF_INT])
m4trace:configure.ac:337: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_LONG]) m4trace:configure.ac:378: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_LONG])
m4trace:configure.ac:337: -1- m4_pattern_allow([^SIZEOF_LONG$]) m4trace:configure.ac:378: -1- m4_pattern_allow([^SIZEOF_LONG$])
m4trace:configure.ac:337: -1- AH_OUTPUT([SIZEOF_LONG], [/* The size of `long\', as computed by sizeof. */ m4trace:configure.ac:378: -1- AH_OUTPUT([SIZEOF_LONG], [/* The size of `long\', as computed by sizeof. */
@%:@undef SIZEOF_LONG]) @%:@undef SIZEOF_LONG])
m4trace:configure.ac:338: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_LONG_LONG]) m4trace:configure.ac:379: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_LONG_LONG])
m4trace:configure.ac:338: -1- m4_pattern_allow([^SIZEOF_LONG_LONG$]) m4trace:configure.ac:379: -1- m4_pattern_allow([^SIZEOF_LONG_LONG$])
m4trace:configure.ac:338: -1- AH_OUTPUT([SIZEOF_LONG_LONG], [/* The size of `long long\', as computed by sizeof. */ m4trace:configure.ac:379: -1- AH_OUTPUT([SIZEOF_LONG_LONG], [/* The size of `long long\', as computed by sizeof. */
@%:@undef SIZEOF_LONG_LONG]) @%:@undef SIZEOF_LONG_LONG])
m4trace:configure.ac:339: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF___INT64]) m4trace:configure.ac:380: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF___INT64])
m4trace:configure.ac:339: -1- m4_pattern_allow([^SIZEOF___INT64$]) m4trace:configure.ac:380: -1- m4_pattern_allow([^SIZEOF___INT64$])
m4trace:configure.ac:339: -1- AH_OUTPUT([SIZEOF___INT64], [/* The size of `__int64\', as computed by sizeof. */ m4trace:configure.ac:380: -1- AH_OUTPUT([SIZEOF___INT64], [/* The size of `__int64\', as computed by sizeof. */
@%:@undef SIZEOF___INT64]) @%:@undef SIZEOF___INT64])
m4trace:configure.ac:340: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_VOID_P]) m4trace:configure.ac:381: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_VOID_P])
m4trace:configure.ac:340: -1- m4_pattern_allow([^SIZEOF_VOID_P$]) m4trace:configure.ac:381: -1- m4_pattern_allow([^SIZEOF_VOID_P$])
m4trace:configure.ac:340: -1- AH_OUTPUT([SIZEOF_VOID_P], [/* The size of `void *\', as computed by sizeof. */ m4trace:configure.ac:381: -1- AH_OUTPUT([SIZEOF_VOID_P], [/* The size of `void *\', as computed by sizeof. */
@%:@undef SIZEOF_VOID_P]) @%:@undef SIZEOF_VOID_P])
m4trace:configure.ac:341: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_SIZE_T]) m4trace:configure.ac:382: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_SIZE_T])
m4trace:configure.ac:341: -1- m4_pattern_allow([^SIZEOF_SIZE_T$]) m4trace:configure.ac:382: -1- m4_pattern_allow([^SIZEOF_SIZE_T$])
m4trace:configure.ac:341: -1- AH_OUTPUT([SIZEOF_SIZE_T], [/* The size of `size_t\', as computed by sizeof. */ m4trace:configure.ac:382: -1- AH_OUTPUT([SIZEOF_SIZE_T], [/* The size of `size_t\', as computed by sizeof. */
@%:@undef SIZEOF_SIZE_T]) @%:@undef SIZEOF_SIZE_T])
m4trace:configure.ac:342: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_PTRDIFF_T]) m4trace:configure.ac:383: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_PTRDIFF_T])
m4trace:configure.ac:342: -1- m4_pattern_allow([^SIZEOF_PTRDIFF_T$]) m4trace:configure.ac:383: -1- m4_pattern_allow([^SIZEOF_PTRDIFF_T$])
m4trace:configure.ac:342: -1- AH_OUTPUT([SIZEOF_PTRDIFF_T], [/* The size of `ptrdiff_t\', as computed by sizeof. */ m4trace:configure.ac:383: -1- AH_OUTPUT([SIZEOF_PTRDIFF_T], [/* The size of `ptrdiff_t\', as computed by sizeof. */
@%:@undef SIZEOF_PTRDIFF_T]) @%:@undef SIZEOF_PTRDIFF_T])
m4trace:configure.ac:343: -1- AC_DEFINE_TRACE_LITERAL([const]) m4trace:configure.ac:384: -1- AC_DEFINE_TRACE_LITERAL([const])
m4trace:configure.ac:343: -1- m4_pattern_allow([^const$]) m4trace:configure.ac:384: -1- m4_pattern_allow([^const$])
m4trace:configure.ac:343: -1- AH_OUTPUT([const], [/* Define to empty if `const\' does not conform to ANSI C. */ m4trace:configure.ac:384: -1- AH_OUTPUT([const], [/* Define to empty if `const\' does not conform to ANSI C. */
@%:@undef const]) @%:@undef const])
m4trace:configure.ac:344: -1- AH_OUTPUT([HAVE_MEMCMP], [/* Define to 1 if you have the `memcmp\' function. */ m4trace:configure.ac:385: -1- AH_OUTPUT([HAVE_MEMCMP], [/* Define to 1 if you have the `memcmp\' function. */
@%:@undef HAVE_MEMCMP]) @%:@undef HAVE_MEMCMP])
m4trace:configure.ac:344: -1- AH_OUTPUT([HAVE_MEMCPY], [/* Define to 1 if you have the `memcpy\' function. */ m4trace:configure.ac:385: -1- AH_OUTPUT([HAVE_MEMCPY], [/* Define to 1 if you have the `memcpy\' function. */
@%:@undef HAVE_MEMCPY]) @%:@undef HAVE_MEMCPY])
m4trace:configure.ac:344: -1- AH_OUTPUT([HAVE_MEMMOVE], [/* Define to 1 if you have the `memmove\' function. */ m4trace:configure.ac:385: -1- AH_OUTPUT([HAVE_MEMMOVE], [/* Define to 1 if you have the `memmove\' function. */
@%:@undef HAVE_MEMMOVE]) @%:@undef HAVE_MEMMOVE])
m4trace:configure.ac:344: -1- AH_OUTPUT([HAVE_MEMSET], [/* Define to 1 if you have the `memset\' function. */ m4trace:configure.ac:385: -1- AH_OUTPUT([HAVE_MEMSET], [/* Define to 1 if you have the `memset\' function. */
@%:@undef HAVE_MEMSET]) @%:@undef HAVE_MEMSET])
m4trace:configure.ac:361: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. m4trace:configure.ac:402: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2615: AC_TRY_COMPILE is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:2615: AC_TRY_COMPILE is expanded from...
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from... ../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
configure.ac:361: the top level]) configure.ac:402: the top level])
m4trace:configure.ac:365: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SEMUN]) m4trace:configure.ac:406: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SEMUN])
m4trace:configure.ac:365: -1- m4_pattern_allow([^HAVE_SEMUN$]) m4trace:configure.ac:406: -1- m4_pattern_allow([^HAVE_SEMUN$])
m4trace:configure.ac:365: -1- AH_OUTPUT([HAVE_SEMUN], [/* Define if sys/sem.h defines struct semun */ m4trace:configure.ac:406: -1- AH_OUTPUT([HAVE_SEMUN], [/* Define if sys/sem.h defines struct semun */
@%:@undef HAVE_SEMUN]) @%:@undef HAVE_SEMUN])
m4trace:configure.ac:395: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete. m4trace:configure.ac:436: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
configure.ac:395: the top level]) configure.ac:436: the top level])
m4trace:configure.ac:395: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SIZE_T_Z_FORMAT]) m4trace:configure.ac:436: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SIZE_T_Z_FORMAT])
m4trace:configure.ac:395: -1- m4_pattern_allow([^HAVE_SIZE_T_Z_FORMAT$]) m4trace:configure.ac:436: -1- m4_pattern_allow([^HAVE_SIZE_T_Z_FORMAT$])
m4trace:configure.ac:395: -1- AH_OUTPUT([HAVE_SIZE_T_Z_FORMAT], [/* Define to 1 if you have a printf() that supports the %z format string. */ m4trace:configure.ac:436: -1- AH_OUTPUT([HAVE_SIZE_T_Z_FORMAT], [/* Define to 1 if you have a printf() that supports the %z format string. */
@%:@undef HAVE_SIZE_T_Z_FORMAT]) @%:@undef HAVE_SIZE_T_Z_FORMAT])
m4trace:configure.ac:398: -1- AC_CONFIG_FILES([Makefile bin/Makefile man/Makefile]) m4trace:configure.ac:439: -1- AC_CONFIG_FILES([Makefile bin/Makefile man/Makefile])
m4trace:configure.ac:398: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments. m4trace:configure.ac:439: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
You should run autoupdate.], []) You should run autoupdate.], [])
m4trace:configure.ac:398: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) m4trace:configure.ac:439: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
m4trace:configure.ac:398: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:439: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:398: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) m4trace:configure.ac:439: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([LTLIBOBJS]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([LTLIBOBJS])
m4trace:configure.ac:398: -1- m4_pattern_allow([^LTLIBOBJS$]) m4trace:configure.ac:439: -1- m4_pattern_allow([^LTLIBOBJS$])
m4trace:configure.ac:398: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) m4trace:configure.ac:439: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
m4trace:configure.ac:398: -1- AC_SUBST([am__EXEEXT_TRUE]) m4trace:configure.ac:439: -1- AC_SUBST([am__EXEEXT_TRUE])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
m4trace:configure.ac:398: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) m4trace:configure.ac:439: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
m4trace:configure.ac:398: -1- AC_SUBST([am__EXEEXT_FALSE]) m4trace:configure.ac:439: -1- AC_SUBST([am__EXEEXT_FALSE])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
m4trace:configure.ac:398: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) m4trace:configure.ac:439: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
m4trace:configure.ac:398: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) m4trace:configure.ac:439: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
m4trace:configure.ac:398: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) m4trace:configure.ac:439: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([top_builddir]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([top_builddir])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([top_build_prefix]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([top_build_prefix])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([srcdir]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([srcdir])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([abs_srcdir]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([abs_srcdir])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([top_srcdir]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([top_srcdir])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([abs_top_srcdir]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([abs_top_srcdir])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([builddir]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([builddir])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([abs_builddir]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([abs_builddir])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([abs_top_builddir]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([abs_top_builddir])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([INSTALL]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([INSTALL])
m4trace:configure.ac:398: -1- AC_SUBST_TRACE([MKDIR_P]) m4trace:configure.ac:439: -1- AC_SUBST_TRACE([MKDIR_P])
m4trace:configure.ac:398: -1- AC_REQUIRE_AUX_FILE([ltmain.sh]) m4trace:configure.ac:439: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])

View File

@ -2715,157 +2715,168 @@ m4trace:configure.ac:70: -1- m4_pattern_allow([^LEX$])
m4trace:configure.ac:70: -1- m4_pattern_allow([^LEX_OUTPUT_ROOT$]) m4trace:configure.ac:70: -1- m4_pattern_allow([^LEX_OUTPUT_ROOT$])
m4trace:configure.ac:70: -1- m4_pattern_allow([^LEXLIB$]) m4trace:configure.ac:70: -1- m4_pattern_allow([^LEXLIB$])
m4trace:configure.ac:70: -1- m4_pattern_allow([^YYTEXT_POINTER$]) m4trace:configure.ac:70: -1- m4_pattern_allow([^YYTEXT_POINTER$])
m4trace:configure.ac:111: -2- m4_pattern_allow([^HAVE_LIBZ$]) m4trace:configure.ac:123: -2- m4_pattern_allow([^HAVE_LIBZ$])
m4trace:configure.ac:124: -2- AM_CONDITIONAL([FT2NFDUMP], [true]) m4trace:configure.ac:136: -2- AM_CONDITIONAL([FT2NFDUMP], [true])
m4trace:configure.ac:124: -2- m4_pattern_allow([^FT2NFDUMP_TRUE$]) m4trace:configure.ac:136: -2- m4_pattern_allow([^FT2NFDUMP_TRUE$])
m4trace:configure.ac:124: -2- m4_pattern_allow([^FT2NFDUMP_FALSE$]) m4trace:configure.ac:136: -2- m4_pattern_allow([^FT2NFDUMP_FALSE$])
m4trace:configure.ac:124: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_TRUE]) m4trace:configure.ac:136: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_TRUE])
m4trace:configure.ac:124: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_FALSE]) m4trace:configure.ac:136: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_FALSE])
m4trace:configure.ac:126: -2- AM_CONDITIONAL([FT2NFDUMP], [false]) m4trace:configure.ac:138: -2- AM_CONDITIONAL([FT2NFDUMP], [false])
m4trace:configure.ac:126: -2- m4_pattern_allow([^FT2NFDUMP_TRUE$]) m4trace:configure.ac:138: -2- m4_pattern_allow([^FT2NFDUMP_TRUE$])
m4trace:configure.ac:126: -2- m4_pattern_allow([^FT2NFDUMP_FALSE$]) m4trace:configure.ac:138: -2- m4_pattern_allow([^FT2NFDUMP_FALSE$])
m4trace:configure.ac:126: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_TRUE]) m4trace:configure.ac:138: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_TRUE])
m4trace:configure.ac:126: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_FALSE]) m4trace:configure.ac:138: -2- _AM_SUBST_NOTMAKE([FT2NFDUMP_FALSE])
m4trace:configure.ac:160: -2- AM_CONDITIONAL([NFPROFILE], [false]) m4trace:configure.ac:172: -2- AM_CONDITIONAL([NFPROFILE], [false])
m4trace:configure.ac:160: -2- m4_pattern_allow([^NFPROFILE_TRUE$]) m4trace:configure.ac:172: -2- m4_pattern_allow([^NFPROFILE_TRUE$])
m4trace:configure.ac:160: -2- m4_pattern_allow([^NFPROFILE_FALSE$]) m4trace:configure.ac:172: -2- m4_pattern_allow([^NFPROFILE_FALSE$])
m4trace:configure.ac:160: -2- _AM_SUBST_NOTMAKE([NFPROFILE_TRUE]) m4trace:configure.ac:172: -2- _AM_SUBST_NOTMAKE([NFPROFILE_TRUE])
m4trace:configure.ac:160: -2- _AM_SUBST_NOTMAKE([NFPROFILE_FALSE]) m4trace:configure.ac:172: -2- _AM_SUBST_NOTMAKE([NFPROFILE_FALSE])
m4trace:configure.ac:161: -1- m4_pattern_allow([^RRD_LIBS$]) m4trace:configure.ac:173: -1- m4_pattern_allow([^RRD_LIBS$])
m4trace:configure.ac:161: -1- m4_pattern_allow([^HAVE_RRD_H$]) m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_RRD_H$])
m4trace:configure.ac:161: -1- AM_CONDITIONAL([NFPROFILE], [true]) m4trace:configure.ac:173: -1- AM_CONDITIONAL([NFPROFILE], [true])
m4trace:configure.ac:161: -1- m4_pattern_allow([^NFPROFILE_TRUE$]) m4trace:configure.ac:173: -1- m4_pattern_allow([^NFPROFILE_TRUE$])
m4trace:configure.ac:161: -1- m4_pattern_allow([^NFPROFILE_FALSE$]) m4trace:configure.ac:173: -1- m4_pattern_allow([^NFPROFILE_FALSE$])
m4trace:configure.ac:161: -1- _AM_SUBST_NOTMAKE([NFPROFILE_TRUE]) m4trace:configure.ac:173: -1- _AM_SUBST_NOTMAKE([NFPROFILE_TRUE])
m4trace:configure.ac:161: -1- _AM_SUBST_NOTMAKE([NFPROFILE_FALSE]) m4trace:configure.ac:173: -1- _AM_SUBST_NOTMAKE([NFPROFILE_FALSE])
m4trace:configure.ac:161: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from... m4trace:configure.ac:173: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from... ../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from... ../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from...
configure.ac:161: the top level]) configure.ac:173: the top level])
m4trace:configure.ac:193: -2- AM_CONDITIONAL([NFTRACK], [false]) m4trace:configure.ac:205: -2- AM_CONDITIONAL([NFTRACK], [false])
m4trace:configure.ac:193: -2- m4_pattern_allow([^NFTRACK_TRUE$]) m4trace:configure.ac:205: -2- m4_pattern_allow([^NFTRACK_TRUE$])
m4trace:configure.ac:193: -2- m4_pattern_allow([^NFTRACK_FALSE$]) m4trace:configure.ac:205: -2- m4_pattern_allow([^NFTRACK_FALSE$])
m4trace:configure.ac:193: -2- _AM_SUBST_NOTMAKE([NFTRACK_TRUE]) m4trace:configure.ac:205: -2- _AM_SUBST_NOTMAKE([NFTRACK_TRUE])
m4trace:configure.ac:193: -2- _AM_SUBST_NOTMAKE([NFTRACK_FALSE]) m4trace:configure.ac:205: -2- _AM_SUBST_NOTMAKE([NFTRACK_FALSE])
m4trace:configure.ac:194: -1- m4_pattern_allow([^RRD_LIBS$]) m4trace:configure.ac:206: -1- m4_pattern_allow([^RRD_LIBS$])
m4trace:configure.ac:194: -1- m4_pattern_allow([^HAVE_RRD_H$]) m4trace:configure.ac:206: -1- m4_pattern_allow([^HAVE_RRD_H$])
m4trace:configure.ac:194: -1- AM_CONDITIONAL([NFTRACK], [true]) m4trace:configure.ac:206: -1- AM_CONDITIONAL([NFTRACK], [true])
m4trace:configure.ac:194: -1- m4_pattern_allow([^NFTRACK_TRUE$]) m4trace:configure.ac:206: -1- m4_pattern_allow([^NFTRACK_TRUE$])
m4trace:configure.ac:194: -1- m4_pattern_allow([^NFTRACK_FALSE$]) m4trace:configure.ac:206: -1- m4_pattern_allow([^NFTRACK_FALSE$])
m4trace:configure.ac:194: -1- _AM_SUBST_NOTMAKE([NFTRACK_TRUE]) m4trace:configure.ac:206: -1- _AM_SUBST_NOTMAKE([NFTRACK_TRUE])
m4trace:configure.ac:194: -1- _AM_SUBST_NOTMAKE([NFTRACK_FALSE]) m4trace:configure.ac:206: -1- _AM_SUBST_NOTMAKE([NFTRACK_FALSE])
m4trace:configure.ac:194: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from... m4trace:configure.ac:206: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from... ../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from... ../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from...
configure.ac:194: the top level]) configure.ac:206: the top level])
m4trace:configure.ac:198: -1- AM_CONDITIONAL([SFLOW], [test "$enable_sflow" = yes]) m4trace:configure.ac:210: -1- AM_CONDITIONAL([SFLOW], [test "$enable_sflow" = yes])
m4trace:configure.ac:198: -1- m4_pattern_allow([^SFLOW_TRUE$]) m4trace:configure.ac:210: -1- m4_pattern_allow([^SFLOW_TRUE$])
m4trace:configure.ac:198: -1- m4_pattern_allow([^SFLOW_FALSE$]) m4trace:configure.ac:210: -1- m4_pattern_allow([^SFLOW_FALSE$])
m4trace:configure.ac:198: -1- _AM_SUBST_NOTMAKE([SFLOW_TRUE]) m4trace:configure.ac:210: -1- _AM_SUBST_NOTMAKE([SFLOW_TRUE])
m4trace:configure.ac:198: -1- _AM_SUBST_NOTMAKE([SFLOW_FALSE]) m4trace:configure.ac:210: -1- _AM_SUBST_NOTMAKE([SFLOW_FALSE])
m4trace:configure.ac:202: -1- AM_CONDITIONAL([READPCAP], [test "$enable_readpcap" = yes]) m4trace:configure.ac:214: -1- AM_CONDITIONAL([READPCAP], [test "$enable_readpcap" = yes])
m4trace:configure.ac:202: -1- m4_pattern_allow([^READPCAP_TRUE$]) m4trace:configure.ac:214: -1- m4_pattern_allow([^READPCAP_TRUE$])
m4trace:configure.ac:202: -1- m4_pattern_allow([^READPCAP_FALSE$]) m4trace:configure.ac:214: -1- m4_pattern_allow([^READPCAP_FALSE$])
m4trace:configure.ac:202: -1- _AM_SUBST_NOTMAKE([READPCAP_TRUE]) m4trace:configure.ac:214: -1- _AM_SUBST_NOTMAKE([READPCAP_TRUE])
m4trace:configure.ac:202: -1- _AM_SUBST_NOTMAKE([READPCAP_FALSE]) m4trace:configure.ac:214: -1- _AM_SUBST_NOTMAKE([READPCAP_FALSE])
m4trace:configure.ac:206: -1- AM_CONDITIONAL([BUILDNFPCAPD], [test "$enable_nfpcapd" = yes]) m4trace:configure.ac:246: -2- AM_CONDITIONAL([BUILDNFPCAPD], [false])
m4trace:configure.ac:206: -1- m4_pattern_allow([^BUILDNFPCAPD_TRUE$]) m4trace:configure.ac:246: -2- m4_pattern_allow([^BUILDNFPCAPD_TRUE$])
m4trace:configure.ac:206: -1- m4_pattern_allow([^BUILDNFPCAPD_FALSE$]) m4trace:configure.ac:246: -2- m4_pattern_allow([^BUILDNFPCAPD_FALSE$])
m4trace:configure.ac:206: -1- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_TRUE]) m4trace:configure.ac:246: -2- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_TRUE])
m4trace:configure.ac:206: -1- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_FALSE]) m4trace:configure.ac:246: -2- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_FALSE])
m4trace:configure.ac:210: -2- m4_pattern_allow([^HAVE_SOCKADDR_SA_LEN$]) m4trace:configure.ac:247: -1- m4_pattern_allow([^PCAP_LIBS$])
m4trace:configure.ac:221: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY$]) m4trace:configure.ac:247: -1- m4_pattern_allow([^HAVE_PCAP_H$])
m4trace:configure.ac:221: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY$]) m4trace:configure.ac:247: -1- AM_CONDITIONAL([BUILDNFPCAPD], [true])
m4trace:configure.ac:221: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN$]) m4trace:configure.ac:247: -1- m4_pattern_allow([^BUILDNFPCAPD_TRUE$])
m4trace:configure.ac:221: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN$]) m4trace:configure.ac:247: -1- m4_pattern_allow([^BUILDNFPCAPD_FALSE$])
m4trace:configure.ac:221: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_SA_LEN$]) m4trace:configure.ac:247: -1- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_TRUE])
m4trace:configure.ac:224: -1- m4_pattern_allow([^FT_INCLUDES$]) m4trace:configure.ac:247: -1- _AM_SUBST_NOTMAKE([BUILDNFPCAPD_FALSE])
m4trace:configure.ac:225: -1- m4_pattern_allow([^FT_LDFLAGS$]) m4trace:configure.ac:247: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
m4trace:configure.ac:226: -1- m4_pattern_allow([^LFLAGS$]) ../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
m4trace:configure.ac:230: -1- m4_pattern_allow([^HAVE_GETHOSTBYNAME$]) ../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from...
m4trace:configure.ac:230: -1- m4_pattern_allow([^HAVE_LIBNSL$]) configure.ac:247: the top level])
m4trace:configure.ac:230: -1- m4_pattern_allow([^HAVE_LIBSOCKET$]) m4trace:configure.ac:251: -2- m4_pattern_allow([^HAVE_SOCKADDR_SA_LEN$])
m4trace:configure.ac:231: -1- m4_pattern_allow([^HAVE_SETSOCKOPT$]) m4trace:configure.ac:262: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY$])
m4trace:configure.ac:231: -1- m4_pattern_allow([^HAVE_LIBSOCKET$]) m4trace:configure.ac:262: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY$])
m4trace:configure.ac:255: -1- m4_pattern_allow([^HAVE_HTONLL$]) m4trace:configure.ac:262: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN$])
m4trace:configure.ac:259: -1- m4_pattern_allow([^STDC_HEADERS$]) m4trace:configure.ac:262: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN$])
m4trace:configure.ac:260: -1- m4_pattern_allow([^HAVE_NAMESER8_COMPAT_H$]) m4trace:configure.ac:262: -1- m4_pattern_allow([^HAVE_STRUCT_SOCKADDR_SA_LEN$])
m4trace:configure.ac:279: -1- m4_pattern_allow([^HAVE_BZLIB_H$]) m4trace:configure.ac:265: -1- m4_pattern_allow([^FT_INCLUDES$])
m4trace:configure.ac:287: -1- m4_pattern_allow([^FTS_OBJ$]) m4trace:configure.ac:266: -1- m4_pattern_allow([^FT_LDFLAGS$])
m4trace:configure.ac:291: -1- m4_pattern_allow([^SIZEOF_VOID_P$]) m4trace:configure.ac:267: -1- m4_pattern_allow([^LFLAGS$])
m4trace:configure.ac:293: -1- m4_pattern_allow([^const$]) m4trace:configure.ac:271: -1- m4_pattern_allow([^HAVE_GETHOSTBYNAME$])
m4trace:configure.ac:295: -1- m4_pattern_allow([^WORDS_BIGENDIAN$]) m4trace:configure.ac:271: -1- m4_pattern_allow([^HAVE_LIBNSL$])
m4trace:configure.ac:295: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$]) m4trace:configure.ac:271: -1- m4_pattern_allow([^HAVE_LIBSOCKET$])
m4trace:configure.ac:296: -1- m4_pattern_allow([^pid_t$]) m4trace:configure.ac:272: -1- m4_pattern_allow([^HAVE_SETSOCKOPT$])
m4trace:configure.ac:297: -1- m4_pattern_allow([^size_t$]) m4trace:configure.ac:272: -1- m4_pattern_allow([^HAVE_LIBSOCKET$])
m4trace:configure.ac:298: -1- m4_pattern_allow([^TM_IN_SYS_TIME$]) m4trace:configure.ac:296: -1- m4_pattern_allow([^HAVE_HTONLL$])
m4trace:configure.ac:299: -1- m4_pattern_allow([^HAVE__BOOL$]) m4trace:configure.ac:300: -1- m4_pattern_allow([^STDC_HEADERS$])
m4trace:configure.ac:299: -1- m4_pattern_allow([^HAVE_STDBOOL_H$]) m4trace:configure.ac:301: -1- m4_pattern_allow([^HAVE_NAMESER8_COMPAT_H$])
m4trace:configure.ac:302: -1- m4_pattern_allow([^CLOSEDIR_VOID$]) m4trace:configure.ac:320: -1- m4_pattern_allow([^HAVE_BZLIB_H$])
m4trace:configure.ac:303: -1- m4_pattern_allow([^HAVE_VFORK_H$]) m4trace:configure.ac:328: -1- m4_pattern_allow([^FTS_OBJ$])
m4trace:configure.ac:303: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$]) m4trace:configure.ac:332: -1- m4_pattern_allow([^SIZEOF_VOID_P$])
m4trace:configure.ac:303: -1- m4_pattern_allow([^vfork$]) m4trace:configure.ac:334: -1- m4_pattern_allow([^const$])
m4trace:configure.ac:303: -1- m4_pattern_allow([^HAVE_WORKING_FORK$]) m4trace:configure.ac:336: -1- m4_pattern_allow([^WORDS_BIGENDIAN$])
m4trace:configure.ac:304: -1- m4_pattern_allow([^HAVE_STDLIB_H$]) m4trace:configure.ac:336: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$])
m4trace:configure.ac:304: -1- m4_pattern_allow([^HAVE_MALLOC$]) m4trace:configure.ac:337: -1- m4_pattern_allow([^pid_t$])
m4trace:configure.ac:304: -1- m4_pattern_allow([^HAVE_MALLOC$]) m4trace:configure.ac:338: -1- m4_pattern_allow([^size_t$])
m4trace:configure.ac:304: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:339: -1- m4_pattern_allow([^TM_IN_SYS_TIME$])
m4trace:configure.ac:304: -1- m4_pattern_allow([^malloc$]) m4trace:configure.ac:340: -1- m4_pattern_allow([^HAVE__BOOL$])
m4trace:configure.ac:305: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$]) m4trace:configure.ac:340: -1- m4_pattern_allow([^HAVE_STDBOOL_H$])
m4trace:configure.ac:305: -1- AC_DEFUN([_AC_Header_sys_time_h], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_header_list], [" sys/time.h"])]) m4trace:configure.ac:343: -1- m4_pattern_allow([^CLOSEDIR_VOID$])
m4trace:configure.ac:344: -1- m4_pattern_allow([^HAVE_VFORK_H$])
m4trace:configure.ac:344: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
m4trace:configure.ac:344: -1- m4_pattern_allow([^vfork$])
m4trace:configure.ac:344: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
m4trace:configure.ac:345: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
m4trace:configure.ac:345: -1- m4_pattern_allow([^HAVE_MALLOC$])
m4trace:configure.ac:345: -1- m4_pattern_allow([^HAVE_MALLOC$])
m4trace:configure.ac:345: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:345: -1- m4_pattern_allow([^malloc$])
m4trace:configure.ac:346: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$])
m4trace:configure.ac:346: -1- AC_DEFUN([_AC_Header_sys_time_h], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_header_list], [" sys/time.h"])])
_AC_HEADERS_EXPANSION]) _AC_HEADERS_EXPANSION])
m4trace:configure.ac:305: -1- AC_DEFUN([_AC_Header_unistd_h], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_header_list], [" unistd.h"])]) m4trace:configure.ac:346: -1- AC_DEFUN([_AC_Header_unistd_h], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_header_list], [" unistd.h"])])
_AC_HEADERS_EXPANSION]) _AC_HEADERS_EXPANSION])
m4trace:configure.ac:305: -1- AC_DEFUN([_AC_Func_alarm], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_func_list], [" alarm"])]) m4trace:configure.ac:346: -1- AC_DEFUN([_AC_Func_alarm], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_func_list], [" alarm"])])
_AC_FUNCS_EXPANSION]) _AC_FUNCS_EXPANSION])
m4trace:configure.ac:305: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:346: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:306: -1- m4_pattern_allow([^HAVE_STDLIB_H$]) m4trace:configure.ac:347: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
m4trace:configure.ac:306: -1- m4_pattern_allow([^HAVE_REALLOC$]) m4trace:configure.ac:347: -1- m4_pattern_allow([^HAVE_REALLOC$])
m4trace:configure.ac:306: -1- m4_pattern_allow([^HAVE_REALLOC$]) m4trace:configure.ac:347: -1- m4_pattern_allow([^HAVE_REALLOC$])
m4trace:configure.ac:306: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:347: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:306: -1- m4_pattern_allow([^realloc$]) m4trace:configure.ac:347: -1- m4_pattern_allow([^realloc$])
m4trace:configure.ac:307: -1- m4_pattern_allow([^LSTAT_FOLLOWS_SLASHED_SYMLINK$]) m4trace:configure.ac:348: -1- m4_pattern_allow([^LSTAT_FOLLOWS_SLASHED_SYMLINK$])
m4trace:configure.ac:307: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:348: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:307: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:348: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:307: -1- m4_pattern_allow([^HAVE_STAT_EMPTY_STRING_BUG$]) m4trace:configure.ac:348: -1- m4_pattern_allow([^HAVE_STAT_EMPTY_STRING_BUG$])
m4trace:configure.ac:308: -1- m4_pattern_allow([^HAVE_STRFTIME$]) m4trace:configure.ac:349: -1- m4_pattern_allow([^HAVE_STRFTIME$])
m4trace:configure.ac:308: -1- m4_pattern_allow([^HAVE_STRFTIME$]) m4trace:configure.ac:349: -1- m4_pattern_allow([^HAVE_STRFTIME$])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBRESOLV$])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBRESOLV$])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBSOCKET$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBSOCKET$])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBRESOLV$])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBRESOLV$])
m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_LIBRESOLV$])
m4trace:configure.ac:333: -1- m4_pattern_allow([^ptrdiff_t$]) m4trace:configure.ac:374: -1- m4_pattern_allow([^ptrdiff_t$])
m4trace:configure.ac:334: -1- m4_pattern_allow([^size_t$]) m4trace:configure.ac:375: -1- m4_pattern_allow([^size_t$])
m4trace:configure.ac:335: -1- m4_pattern_allow([^SIZEOF_SHORT$]) m4trace:configure.ac:376: -1- m4_pattern_allow([^SIZEOF_SHORT$])
m4trace:configure.ac:336: -1- m4_pattern_allow([^SIZEOF_INT$]) m4trace:configure.ac:377: -1- m4_pattern_allow([^SIZEOF_INT$])
m4trace:configure.ac:337: -1- m4_pattern_allow([^SIZEOF_LONG$]) m4trace:configure.ac:378: -1- m4_pattern_allow([^SIZEOF_LONG$])
m4trace:configure.ac:338: -1- m4_pattern_allow([^SIZEOF_LONG_LONG$]) m4trace:configure.ac:379: -1- m4_pattern_allow([^SIZEOF_LONG_LONG$])
m4trace:configure.ac:339: -1- m4_pattern_allow([^SIZEOF___INT64$]) m4trace:configure.ac:380: -1- m4_pattern_allow([^SIZEOF___INT64$])
m4trace:configure.ac:340: -1- m4_pattern_allow([^SIZEOF_VOID_P$]) m4trace:configure.ac:381: -1- m4_pattern_allow([^SIZEOF_VOID_P$])
m4trace:configure.ac:341: -1- m4_pattern_allow([^SIZEOF_SIZE_T$]) m4trace:configure.ac:382: -1- m4_pattern_allow([^SIZEOF_SIZE_T$])
m4trace:configure.ac:342: -1- m4_pattern_allow([^SIZEOF_PTRDIFF_T$]) m4trace:configure.ac:383: -1- m4_pattern_allow([^SIZEOF_PTRDIFF_T$])
m4trace:configure.ac:343: -1- m4_pattern_allow([^const$]) m4trace:configure.ac:384: -1- m4_pattern_allow([^const$])
m4trace:configure.ac:361: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. m4trace:configure.ac:402: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2615: AC_TRY_COMPILE is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:2615: AC_TRY_COMPILE is expanded from...
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from... ../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
configure.ac:361: the top level]) configure.ac:402: the top level])
m4trace:configure.ac:365: -1- m4_pattern_allow([^HAVE_SEMUN$]) m4trace:configure.ac:406: -1- m4_pattern_allow([^HAVE_SEMUN$])
m4trace:configure.ac:395: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete. m4trace:configure.ac:436: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from... You should run autoupdate.], [../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
configure.ac:395: the top level]) configure.ac:436: the top level])
m4trace:configure.ac:395: -1- m4_pattern_allow([^HAVE_SIZE_T_Z_FORMAT$]) m4trace:configure.ac:436: -1- m4_pattern_allow([^HAVE_SIZE_T_Z_FORMAT$])
m4trace:configure.ac:398: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments. m4trace:configure.ac:439: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
You should run autoupdate.], []) You should run autoupdate.], [])
m4trace:configure.ac:398: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.ac:439: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:398: -1- m4_pattern_allow([^LTLIBOBJS$]) m4trace:configure.ac:439: -1- m4_pattern_allow([^LTLIBOBJS$])
m4trace:configure.ac:398: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) m4trace:configure.ac:439: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
m4trace:configure.ac:398: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) m4trace:configure.ac:439: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
m4trace:configure.ac:398: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) m4trace:configure.ac:439: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
m4trace:configure.ac:398: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) m4trace:configure.ac:439: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
m4trace:configure.ac:398: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) m4trace:configure.ac:439: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
m4trace:configure.ac:398: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"]) m4trace:configure.ac:439: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
m4trace:configure.ac:398: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS m4trace:configure.ac:439: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
m4trace:configure.ac:398: -1- _LT_PROG_LTMAIN m4trace:configure.ac:439: -1- _LT_PROG_LTMAIN

View File

@ -2,6 +2,8 @@
bin_PROGRAMS = nfcapd nfdump nfreplay nfexpire nfanon bin_PROGRAMS = nfcapd nfdump nfreplay nfexpire nfanon
check_PROGRAMS = nftest nfgen nfreader check_PROGRAMS = nftest nfgen nfreader
EXTRA_DIST = applybits_inline.c nffile_inline.c collector_inline.c inline.c nfdump_inline.c heapsort_inline.c test.sh nfdump.test.out nfdump.test.diff
check_PROGRAMMS = test.sh check_PROGRAMMS = test.sh
TESTS = nftest test.sh TESTS = nftest test.sh

View File

@ -621,6 +621,7 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@ PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@ PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@ PATH_SEPARATOR = @PATH_SEPARATOR@
PCAP_LIBS = @PCAP_LIBS@
RANLIB = @RANLIB@ RANLIB = @RANLIB@
RRD_LIBS = @RRD_LIBS@ RRD_LIBS = @RRD_LIBS@
SED = @SED@ SED = @SED@
@ -682,6 +683,7 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@ top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@ top_builddir = @top_builddir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
EXTRA_DIST = applybits_inline.c nffile_inline.c collector_inline.c inline.c nfdump_inline.c heapsort_inline.c test.sh nfdump.test.out nfdump.test.diff
check_PROGRAMMS = test.sh check_PROGRAMMS = test.sh
BUILT_SOURCES = grammar.h BUILT_SOURCES = grammar.h
AM_YFLAGS = -d AM_YFLAGS = -d

View File

@ -1,4 +1,5 @@
/* /*
* Copyright (c) 2016, Peter Haag
* Copyright (c) 2014, Peter Haag * Copyright (c) 2014, Peter Haag
* All rights reserved. * All rights reserved.
* *
@ -26,12 +27,8 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
* *
* $Author: phaag $ * Author: peter
* *
* $Id: ipfrag.c 40874 2014-03-06 09:58:20Z phaag $
*
* $LastChangedRevision: 40874 $
*
*/ */
#include "config.h" #include "config.h"
@ -43,6 +40,16 @@
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <sys/types.h> #include <sys/types.h>
#ifdef HAVE_NETINET_IN_SYSTM_H
#include <netinet/in_systm.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#include <netinet/in.h>
#include <netinet/ip.h> #include <netinet/ip.h>
#include <unistd.h> #include <unistd.h>
#include <stdint.h> #include <stdint.h>

View File

@ -101,12 +101,18 @@
/* Define to 1 if you have the <netinet/in.h> header file. */ /* Define to 1 if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H #undef HAVE_NETINET_IN_H
/* Define to 1 if you have the <netinet/in_systm.h> header file. */
#undef HAVE_NETINET_IN_SYSTM_H
/* Define to 1 if you have the <net/bpf.h> header file. */ /* Define to 1 if you have the <net/bpf.h> header file. */
#undef HAVE_NET_BPF_H #undef HAVE_NET_BPF_H
/* Define to 1 if you have the <pcap-bpf.h> header file. */ /* Define to 1 if you have the <pcap-bpf.h> header file. */
#undef HAVE_PCAP_BPF_H #undef HAVE_PCAP_BPF_H
/* Define to 1 if you have the <pcap.h> header file. */
#undef HAVE_PCAP_H
/* Define to 1 if your system has a GNU libc compatible `realloc' function, /* Define to 1 if your system has a GNU libc compatible `realloc' function,
and to 0 otherwise. */ and to 0 otherwise. */
#undef HAVE_REALLOC #undef HAVE_REALLOC

137
configure vendored
View File

@ -642,6 +642,7 @@ FTS_OBJ
LFLAGS LFLAGS
FT_LDFLAGS FT_LDFLAGS
FT_INCLUDES FT_INCLUDES
PCAP_LIBS
BUILDNFPCAPD_FALSE BUILDNFPCAPD_FALSE
BUILDNFPCAPD_TRUE BUILDNFPCAPD_TRUE
READPCAP_FALSE READPCAP_FALSE
@ -793,6 +794,7 @@ enable_nel
enable_fixtimebug enable_fixtimebug
with_ftpath with_ftpath
with_rrdpath with_rrdpath
with_pcappath
enable_ftconv enable_ftconv
enable_nfprofile enable_nfprofile
enable_nftrack enable_nftrack
@ -1466,6 +1468,7 @@ Optional Packages:
compiler's sysroot if not specified). compiler's sysroot if not specified).
--with-ftpath=PATH Expect flow-tool sources in PATH; default /usr/local/flow-tools/ --with-ftpath=PATH Expect flow-tool sources in PATH; default /usr/local/flow-tools/
--with-rrdpath=PATH Expect RRD installed in PATH; default /usr/local --with-rrdpath=PATH Expect RRD installed in PATH; default /usr/local
--with-pcappath=PATH Expect RRD installed in PATH; default /usr/local
Some influential environment variables: Some influential environment variables:
CC C compiler command CC C compiler command
@ -13320,6 +13323,20 @@ fi
fi fi
# Check whether --with-pcappath was given.
if test "${with_pcappath+set}" = set; then :
withval=$with_pcappath; if test "x$with_pcappath" = "xyes" ; then
CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
LDFLAGS="${LDFLAGS} -L/usr/local/lib"
else
CPPFLAGS="${CPPFLAGS} -I${with_pcappath}/include"
LDFLAGS="${LDFLAGS} -L${with_pcappath}/lib"
fi
fi
#Tidz up? esp not using in source dist flow-tools #Tidz up? esp not using in source dist flow-tools
# Check whether --enable-ftconv was given. # Check whether --enable-ftconv was given.
if test "${enable_ftconv+set}" = set; then : if test "${enable_ftconv+set}" = set; then :
@ -13375,7 +13392,7 @@ if test -d "$WHERE_FTPATH"; then
if test ! -f "$WHERE_FTPATH/include/ftlib.h"; then if test ! -f "$WHERE_FTPATH/include/ftlib.h"; then
as_fn_error $? "ftlib.h file not found in flow-tools directory '$WHERE_FTPATH'. Use --with-ftpath=PATH" "$LINENO" 5 as_fn_error $? "ftlib.h file not found in flow-tools directory '$WHERE_FTPATH'. Use --with-ftpath=PATH" "$LINENO" 5
fi fi
if test ! -f "$WHERE_FTPATH/lib/libft.a"; then if test ! -f "$WHERE_FTPATH/lib/libft.a" -a -f "$WHERE_FTPATH/lib64/libft.a" ! -f "$WHERE_FTPATH/lib/libft.so" -a -f "$WHERE_FTPATH/lib64/libft.so"; then
as_fn_error $? "libft.a not found in flow-tools directory '$WHERE_FTPATH'. Build flow tools first" "$LINENO" 5 as_fn_error $? "libft.a not found in flow-tools directory '$WHERE_FTPATH'. Build flow tools first" "$LINENO" 5
fi fi
FT_INCLUDES="-I$WHERE_FTPATH/include -I$WHERE_FTPATH/lib" FT_INCLUDES="-I$WHERE_FTPATH/include -I$WHERE_FTPATH/lib"
@ -13685,14 +13702,124 @@ fi
# Check whether --enable-nfpcapd was given. # Check whether --enable-nfpcapd was given.
if test "${enable_nfpcapd+set}" = set; then : if test "${enable_nfpcapd+set}" = set; then :
enableval=$enable_nfpcapd; enableval=$enable_nfpcapd;
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pcap_create in -lpcap" >&5
$as_echo_n "checking for pcap_create in -lpcap... " >&6; }
if ${ac_cv_lib_pcap_pcap_create+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lpcap $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
/* Override any GCC internal prototype to avoid an error.
Use char because int might match the return type of a GCC
builtin and then its argument prototype would still apply. */
#ifdef __cplusplus
extern "C"
#endif
char pcap_create ();
int
main ()
{
return pcap_create ();
;
return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
ac_cv_lib_pcap_pcap_create=yes
else
ac_cv_lib_pcap_pcap_create=no
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pcap_pcap_create" >&5
$as_echo "$ac_cv_lib_pcap_pcap_create" >&6; }
if test "x$ac_cv_lib_pcap_pcap_create" = xyes; then :
cat >>config.h <<_ACEOF
#define HAVE_LIBPCAP 1
_ACEOF
RRD_LIBS="-lpcap"
else
as_fn_error $? "Can not link libpcap. Please specify --with-pcappath=.. configure failed! " "$LINENO" 5
fi fi
if test "$enable_nfpcapd" = yes; then for ac_header in pcap.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "pcap.h" "ac_cv_header_pcap_h" "$ac_includes_default"
if test "x$ac_cv_header_pcap_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_PCAP_H 1
_ACEOF
fi
done
if test "$ac_cv_header_pcap_h" = yes; then
if true; then
BUILDNFPCAPD_TRUE= BUILDNFPCAPD_TRUE=
BUILDNFPCAPD_FALSE='#' BUILDNFPCAPD_FALSE='#'
else else
BUILDNFPCAPD_TRUE='#' BUILDNFPCAPD_TRUE='#'
BUILDNFPCAPD_FALSE= BUILDNFPCAPD_FALSE=
fi
else
as_fn_error $? "Required pcap.h header file not found!" "$LINENO" 5
fi
if test "$cross_compiling" = yes; then :
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error $? "cannot run test program while cross compiling
See \`config.log' for more details" "$LINENO" 5; }
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <stdio.h>
#include <pcap.h>
int
main ()
{
struct pcap_pkthdr p;
;
return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
else
as_fn_error $? "Can not load pcap library. Not in loader search path! " "$LINENO" 5
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
conftest.$ac_objext conftest.beam conftest.$ac_ext
fi
else
if false; then
BUILDNFPCAPD_TRUE=
BUILDNFPCAPD_FALSE='#'
else
BUILDNFPCAPD_TRUE='#'
BUILDNFPCAPD_FALSE=
fi
fi fi
@ -14303,7 +14430,7 @@ fi
done done
for ac_header in sys/types.h netinet/in.h arpa/nameser.h arpa/nameser_compat.h netdb.h resolv.h for ac_header in sys/types.h netinet/in.h arpa/nameser.h arpa/nameser_compat.h netdb.h resolv.h netinet/in_systm.h
do : do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_SYS_TYPES_H ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_SYS_TYPES_H
@ -16713,6 +16840,10 @@ if test -z "${BUILDNFPCAPD_TRUE}" && test -z "${BUILDNFPCAPD_FALSE}"; then
as_fn_error $? "conditional \"BUILDNFPCAPD\" was never defined. as_fn_error $? "conditional \"BUILDNFPCAPD\" 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 "${BUILDNFPCAPD_TRUE}" && test -z "${BUILDNFPCAPD_FALSE}"; then
as_fn_error $? "conditional \"BUILDNFPCAPD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
: "${CONFIG_STATUS=./config.status}" : "${CONFIG_STATUS=./config.status}"

View File

@ -103,6 +103,18 @@ fi
, ,
) )
AC_ARG_WITH(pcappath,
[ --with-pcappath=PATH Expect RRD installed in PATH; default /usr/local],
if test "x$with_pcappath" = "xyes" ; then
CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
LDFLAGS="${LDFLAGS} -L/usr/local/lib"
else
CPPFLAGS="${CPPFLAGS} -I${with_pcappath}/include"
LDFLAGS="${LDFLAGS} -L${with_pcappath}/lib"
fi
,
)
#Tidz up? esp not using in source dist flow-tools #Tidz up? esp not using in source dist flow-tools
AC_ARG_ENABLE(ftconv, AC_ARG_ENABLE(ftconv,
[ --enable-ftconv Build the flow-tools to nfdump converter; default is NO], [ --enable-ftconv Build the flow-tools to nfdump converter; default is NO],
@ -113,7 +125,7 @@ if test -d "$WHERE_FTPATH"; then
if test ! -f "$WHERE_FTPATH/include/ftlib.h"; then if test ! -f "$WHERE_FTPATH/include/ftlib.h"; then
AC_MSG_ERROR(ftlib.h file not found in flow-tools directory '$WHERE_FTPATH'. Use --with-ftpath=PATH) AC_MSG_ERROR(ftlib.h file not found in flow-tools directory '$WHERE_FTPATH'. Use --with-ftpath=PATH)
fi fi
if test ! -f "$WHERE_FTPATH/lib/libft.a"; then if test ! -f "$WHERE_FTPATH/lib/libft.a" -a -f "$WHERE_FTPATH/lib64/libft.a" ! -f "$WHERE_FTPATH/lib/libft.so" -a -f "$WHERE_FTPATH/lib64/libft.so"; then
AC_MSG_ERROR(libft.a not found in flow-tools directory '$WHERE_FTPATH'. Build flow tools first) AC_MSG_ERROR(libft.a not found in flow-tools directory '$WHERE_FTPATH'. Build flow tools first)
fi fi
FT_INCLUDES="-I$WHERE_FTPATH/include -I$WHERE_FTPATH/lib" FT_INCLUDES="-I$WHERE_FTPATH/include -I$WHERE_FTPATH/lib"
@ -202,8 +214,37 @@ AC_ARG_ENABLE(readpcap,
AM_CONDITIONAL(READPCAP, test "$enable_readpcap" = yes) AM_CONDITIONAL(READPCAP, test "$enable_readpcap" = yes)
AC_ARG_ENABLE(nfpcapd, AC_ARG_ENABLE(nfpcapd,
[ --enable-nfpcapd Build nfpcapd collector to create netflow data from interface or pcap data; default is NO]) [ --enable-nfpcapd Build nfpcapd collector to create netflow data from interface or pcap data; default is NO],
AM_CONDITIONAL(BUILDNFPCAPD, test "$enable_nfpcapd" = yes) [
AC_CHECK_LIB(pcap, pcap_create,[
cat >>config.h <<_ACEOF
#define HAVE_LIBPCAP 1
_ACEOF
RRD_LIBS="-lpcap"
AC_SUBST(PCAP_LIBS)
]
, AC_MSG_ERROR(Can not link libpcap. Please specify --with-pcappath=.. configure failed! ))
AC_CHECK_HEADERS([pcap.h])
if test "$ac_cv_header_pcap_h" = yes; then
AM_CONDITIONAL(BUILDNFPCAPD, true)
else
AC_MSG_ERROR(Required pcap.h header file not found!)
fi
AC_RUN_IFELSE(
[ AC_LANG_PROGRAM(
[[
#include <stdio.h>
#include <pcap.h>
]],
[[
struct pcap_pkthdr p;
]])
],, AC_MSG_ERROR(Can not load pcap library. Not in loader search path! ))
]
,
AM_CONDITIONAL(BUILDNFPCAPD, false)
)
# Check for structures # Check for structures
AC_CHECK_MEMBER([struct sockaddr.sa_len], AC_CHECK_MEMBER([struct sockaddr.sa_len],
@ -261,7 +302,7 @@ AC_CHECK_HEADERS([nameser8_compat.h])
AC_CHECK_HEADERS([features.h arpa/inet.h fcntl.h netinet/in.h fts.h stdint.h stdlib.h stddef.h string.h sys/socket.h syslog.h unistd.h iso/limits_iso.h]) AC_CHECK_HEADERS([features.h arpa/inet.h fcntl.h netinet/in.h fts.h stdint.h stdlib.h stddef.h string.h sys/socket.h syslog.h unistd.h iso/limits_iso.h])
AC_CHECK_HEADERS(pcap-bpf.h net/bpf.h) AC_CHECK_HEADERS(pcap-bpf.h net/bpf.h)
AC_CHECK_HEADERS(sys/types.h netinet/in.h arpa/nameser.h arpa/nameser_compat.h netdb.h resolv.h, AC_CHECK_HEADERS(sys/types.h netinet/in.h arpa/nameser.h arpa/nameser_compat.h netdb.h resolv.h netinet/in_systm.h,
[], [], [], [],
[[#ifdef HAVE_SYS_TYPES_H [[#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h> # include <sys/types.h>

View File

@ -214,6 +214,7 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@ PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@ PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@ PATH_SEPARATOR = @PATH_SEPARATOR@
PCAP_LIBS = @PCAP_LIBS@
RANLIB = @RANLIB@ RANLIB = @RANLIB@
RRD_LIBS = @RRD_LIBS@ RRD_LIBS = @RRD_LIBS@
SED = @SED@ SED = @SED@