|
Changed |
_service:tar_scm:pdns-3.1.tar
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/Makefile
^
|
@@ -234,13 +234,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/Makefile.in
^
|
@@ -234,8 +234,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/autom4te.cache/output.1
^
|
@@ -622,8 +622,6 @@
CDB_CFLAGS
SQLITE3_LIBS
SQLITE3_CFLAGS
-SQLITE_incdir
-SQLITE_lib
PGSQL_incdir
PGSQL_lib
MYSQL_incdir
@@ -820,9 +818,6 @@
with_pgsql
with_pgsql_lib
with_pgsql_includes
-with_sqlite
-with_sqlite_lib
-with_sqlite_includes
with_unixodbc
with_unixodbc_lib
with_unixodbc_includes
@@ -1516,10 +1511,6 @@
--with-pgsql-lib=<path> directory path of PgSQL library installation
--with-pgsql-includes=<path>
directory path of PgSQL header installation
- --with-sqlite=<path> root directory path of SQLite installation
- --with-sqlite-lib=<path> directory path of SQLite library installation
- --with-sqlite-includes=<path>
- directory path of SQLite header installation
--with-unixodbc=<path> root directory path of unixodbc installation
--with-unixodbc-lib=<path> directory path of unixodbc library installation
--with-unixodbc-includes=<path> directory path of unixodbc header installation
@@ -3095,7 +3086,7 @@
# Define the identity of the package.
PACKAGE=pdns
- VERSION=3.1
+ VERSION=3.2-pre
cat >>confdefs.h <<_ACEOF
@@ -18592,6 +18583,14 @@
THREADFLAGS="-pthread"
CXXFLAGS="-D_GNU_SOURCE $CXXFLAGS"
;;
+darwin11* | darwin12*)
+
+$as_echo "@%:@define HAVE_IPV6 1" >>confdefs.h
+
+ DYNLINKFLAGS="-rdynamic"
+ LDFLAGS="-pthread $LDFLAGS"
+ CXXFLAGS="-pthread $CXXFLAGS -D__APPLE_USE_RFC_3542"
+ ;;
*)
$as_echo "@%:@define HAVE_IPV6 1" >>confdefs.h
@@ -19072,9 +19071,6 @@
gpgsql )
needpgsql=yes
;;
- gsqlite )
- needsqlite=yes
- ;;
gsqlite3 )
needsqlite3=yes
;;
@@ -19511,81 +19507,6 @@
$as_echo "$PGSQL_incdir" >&6; }
fi
-if test "$needsqlite"
-then
-
-
-@%:@ Check whether --with-sqlite was given.
-if test "${with_sqlite+set}" = set; then :
- withval=$with_sqlite; SQLITE_lib_check="$withval/lib/sqlite $with_sqlite/lib"
- SQLITE_inc_check="$withval/include/sqlite"
-else
- SQLITE_lib_check="/usr/local/sqlite/lib/sqlite /usr/local/lib/sqlite /opt/pgsql/lib/sqlite /usr/lib/sqlite /usr/local/sqlite/lib /usr/local/lib /opt/sqlite/lib /usr/lib /usr/lib64"
- SQLITE_inc_check="/usr/local/sqlite/include/sqlite /usr/local/include/sqlite/ /usr/local/include /opt/sqlite/include/sqlite /opt/sqlite/include /usr/include/ /usr/include/sqlite"
-fi
-
-
-@%:@ Check whether --with-sqlite-lib was given.
-if test "${with_sqlite_lib+set}" = set; then :
- withval=$with_sqlite_lib; SQLITE_lib_check="$withval/lib/sqlite $withval/sqlite $withval"
-fi
-
-
-@%:@ Check whether --with-sqlite-includes was given.
-if test "${with_sqlite_includes+set}" = set; then :
- withval=$with_sqlite_includes; SQLITE_inc_check="$withval/include/sqlite $withval/sqlite $withval"
-fi
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SQLite library directory" >&5
-$as_echo_n "checking for SQLite library directory... " >&6; }
- SQLITE_libdir=
- for m in $SQLITE_lib_check; do
- if test -d "$m" && \
- (test -f "$m/libsqlite.so" || test -f "$m/libsqlite.a")
- then
- SQLITE_libdir=$m
- break
- fi
- done
- if test -z "$SQLITE_libdir"; then
- as_fn_error $? "Didn't find the sqlite library dir in '$SQLITE_lib_check'" "$LINENO" 5
- fi
- case "$SQLITE_libdir" in
- /usr/lib ) SQLITE_lib="" ;;
- /usr/lib64 ) SQLITE_lib="" ;;
- /* ) SQLITE_lib="-L$SQLITE_libdir -Wl,-rpath,$SQLITE_libdir"
- LDFLAGS="$SQLITE_lib $LDFLAGS"
- ;;
- * ) as_fn_error $? "The SQLite library directory ($SQLITE_libdir) must be an absolute path." "$LINENO" 5 ;;
- esac
-
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SQLITE_libdir" >&5
-$as_echo "$SQLITE_libdir" >&6; }
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SQLite include directory" >&5
-$as_echo_n "checking for SQLite include directory... " >&6; }
- SQLITE_incdir=
- for m in $SQLITE_inc_check; do
- if test -d "$m" && test -f "$m/sqlite.h"
- then
- SQLITE_incdir=$m
- break
- fi
- done
- if test -z "$SQLITE_incdir"; then
- as_fn_error $? "Didn't find the SQLite include dir in '$SQLITE_inc_check'" "$LINENO" 5
- fi
- case "$SQLITE_incdir" in
- /* ) ;;
- * ) as_fn_error $? "The SQLite include directory ($SQLITE_incdir) must be an absolute path." "$LINENO" 5 ;;
- esac
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SQLITE_incdir" >&5
-$as_echo "$SQLITE_incdir" >&6; }
-
-# LIBS="$LIBS -lsqlite"
-fi
-
if test "$needsqlite3"
then
@@ -19858,7 +19779,7 @@
export moduledirs moduleobjects modulelibs
-ac_config_files="$ac_config_files Makefile modules/Makefile pdns/Makefile codedocs/Makefile pdns/backends/Makefile pdns/backends/bind/Makefile pdns/pdns pdns/precursor modules/gmysqlbackend/Makefile modules/db2backend/Makefile modules/geobackend/Makefile modules/opendbxbackend/Makefile modules/pipebackend/Makefile modules/oraclebackend/Makefile modules/xdbbackend/Makefile modules/godbcbackend/Makefile modules/mongodbbackend/Makefile modules/gpgsqlbackend/Makefile modules/ldapbackend/Makefile modules/gsqlitebackend/Makefile modules/gsqlite3backend/Makefile modules/goraclebackend/Makefile modules/mydnsbackend/Makefile modules/luabackend/Makefile modules/tinydnsbackend/Makefile modules/remotebackend/Makefile"
+ac_config_files="$ac_config_files Makefile modules/Makefile pdns/Makefile codedocs/Makefile pdns/backends/Makefile pdns/backends/bind/Makefile pdns/pdns pdns/precursor modules/gmysqlbackend/Makefile modules/db2backend/Makefile modules/geobackend/Makefile modules/opendbxbackend/Makefile modules/pipebackend/Makefile modules/oraclebackend/Makefile modules/xdbbackend/Makefile modules/godbcbackend/Makefile modules/mongodbbackend/Makefile modules/gpgsqlbackend/Makefile modules/ldapbackend/Makefile modules/gsqlite3backend/Makefile modules/goraclebackend/Makefile modules/mydnsbackend/Makefile modules/luabackend/Makefile modules/tinydnsbackend/Makefile modules/remotebackend/Makefile"
cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
@@ -21023,7 +20944,6 @@
"modules/mongodbbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/mongodbbackend/Makefile" ;;
"modules/gpgsqlbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gpgsqlbackend/Makefile" ;;
"modules/ldapbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/ldapbackend/Makefile" ;;
- "modules/gsqlitebackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gsqlitebackend/Makefile" ;;
"modules/gsqlite3backend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gsqlite3backend/Makefile" ;;
"modules/goraclebackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/goraclebackend/Makefile" ;;
"modules/mydnsbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/mydnsbackend/Makefile" ;;
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/autom4te.cache/output.2
^
|
@@ -622,8 +622,6 @@
CDB_CFLAGS
SQLITE3_LIBS
SQLITE3_CFLAGS
-SQLITE_incdir
-SQLITE_lib
PGSQL_incdir
PGSQL_lib
MYSQL_incdir
@@ -820,9 +818,6 @@
with_pgsql
with_pgsql_lib
with_pgsql_includes
-with_sqlite
-with_sqlite_lib
-with_sqlite_includes
with_unixodbc
with_unixodbc_lib
with_unixodbc_includes
@@ -1516,10 +1511,6 @@
--with-pgsql-lib=<path> directory path of PgSQL library installation
--with-pgsql-includes=<path>
directory path of PgSQL header installation
- --with-sqlite=<path> root directory path of SQLite installation
- --with-sqlite-lib=<path> directory path of SQLite library installation
- --with-sqlite-includes=<path>
- directory path of SQLite header installation
--with-unixodbc=<path> root directory path of unixodbc installation
--with-unixodbc-lib=<path> directory path of unixodbc library installation
--with-unixodbc-includes=<path> directory path of unixodbc header installation
@@ -3095,7 +3086,7 @@
# Define the identity of the package.
PACKAGE=pdns
- VERSION=3.1
+ VERSION=3.2-pre
cat >>confdefs.h <<_ACEOF
@@ -18592,6 +18583,14 @@
THREADFLAGS="-pthread"
CXXFLAGS="-D_GNU_SOURCE $CXXFLAGS"
;;
+darwin11* | darwin12*)
+
+$as_echo "@%:@define HAVE_IPV6 1" >>confdefs.h
+
+ DYNLINKFLAGS="-rdynamic"
+ LDFLAGS="-pthread $LDFLAGS"
+ CXXFLAGS="-pthread $CXXFLAGS -D__APPLE_USE_RFC_3542"
+ ;;
*)
$as_echo "@%:@define HAVE_IPV6 1" >>confdefs.h
@@ -19072,9 +19071,6 @@
gpgsql )
needpgsql=yes
;;
- gsqlite )
- needsqlite=yes
- ;;
gsqlite3 )
needsqlite3=yes
;;
@@ -19511,81 +19507,6 @@
$as_echo "$PGSQL_incdir" >&6; }
fi
-if test "$needsqlite"
-then
-
-
-@%:@ Check whether --with-sqlite was given.
-if test "${with_sqlite+set}" = set; then :
- withval=$with_sqlite; SQLITE_lib_check="$withval/lib/sqlite $with_sqlite/lib"
- SQLITE_inc_check="$withval/include/sqlite"
-else
- SQLITE_lib_check="/usr/local/sqlite/lib/sqlite /usr/local/lib/sqlite /opt/pgsql/lib/sqlite /usr/lib/sqlite /usr/local/sqlite/lib /usr/local/lib /opt/sqlite/lib /usr/lib /usr/lib64"
- SQLITE_inc_check="/usr/local/sqlite/include/sqlite /usr/local/include/sqlite/ /usr/local/include /opt/sqlite/include/sqlite /opt/sqlite/include /usr/include/ /usr/include/sqlite"
-fi
-
-
-@%:@ Check whether --with-sqlite-lib was given.
-if test "${with_sqlite_lib+set}" = set; then :
- withval=$with_sqlite_lib; SQLITE_lib_check="$withval/lib/sqlite $withval/sqlite $withval"
-fi
-
-
-@%:@ Check whether --with-sqlite-includes was given.
-if test "${with_sqlite_includes+set}" = set; then :
- withval=$with_sqlite_includes; SQLITE_inc_check="$withval/include/sqlite $withval/sqlite $withval"
-fi
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SQLite library directory" >&5
-$as_echo_n "checking for SQLite library directory... " >&6; }
- SQLITE_libdir=
- for m in $SQLITE_lib_check; do
- if test -d "$m" && \
- (test -f "$m/libsqlite.so" || test -f "$m/libsqlite.a")
- then
- SQLITE_libdir=$m
- break
- fi
- done
- if test -z "$SQLITE_libdir"; then
- as_fn_error $? "Didn't find the sqlite library dir in '$SQLITE_lib_check'" "$LINENO" 5
- fi
- case "$SQLITE_libdir" in
- /usr/lib ) SQLITE_lib="" ;;
- /usr/lib64 ) SQLITE_lib="" ;;
- /* ) SQLITE_lib="-L$SQLITE_libdir -Wl,-rpath,$SQLITE_libdir"
- LDFLAGS="$SQLITE_lib $LDFLAGS"
- ;;
- * ) as_fn_error $? "The SQLite library directory ($SQLITE_libdir) must be an absolute path." "$LINENO" 5 ;;
- esac
-
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SQLITE_libdir" >&5
-$as_echo "$SQLITE_libdir" >&6; }
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SQLite include directory" >&5
-$as_echo_n "checking for SQLite include directory... " >&6; }
- SQLITE_incdir=
- for m in $SQLITE_inc_check; do
- if test -d "$m" && test -f "$m/sqlite.h"
- then
- SQLITE_incdir=$m
- break
- fi
- done
- if test -z "$SQLITE_incdir"; then
- as_fn_error $? "Didn't find the SQLite include dir in '$SQLITE_inc_check'" "$LINENO" 5
- fi
- case "$SQLITE_incdir" in
- /* ) ;;
- * ) as_fn_error $? "The SQLite include directory ($SQLITE_incdir) must be an absolute path." "$LINENO" 5 ;;
- esac
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SQLITE_incdir" >&5
-$as_echo "$SQLITE_incdir" >&6; }
-
-# LIBS="$LIBS -lsqlite"
-fi
-
if test "$needsqlite3"
then
@@ -19858,7 +19779,7 @@
export moduledirs moduleobjects modulelibs
-ac_config_files="$ac_config_files Makefile modules/Makefile pdns/Makefile codedocs/Makefile pdns/backends/Makefile pdns/backends/bind/Makefile pdns/pdns pdns/precursor modules/gmysqlbackend/Makefile modules/db2backend/Makefile modules/geobackend/Makefile modules/opendbxbackend/Makefile modules/pipebackend/Makefile modules/oraclebackend/Makefile modules/xdbbackend/Makefile modules/godbcbackend/Makefile modules/mongodbbackend/Makefile modules/gpgsqlbackend/Makefile modules/ldapbackend/Makefile modules/gsqlitebackend/Makefile modules/gsqlite3backend/Makefile modules/goraclebackend/Makefile modules/mydnsbackend/Makefile modules/luabackend/Makefile modules/tinydnsbackend/Makefile modules/remotebackend/Makefile"
+ac_config_files="$ac_config_files Makefile modules/Makefile pdns/Makefile codedocs/Makefile pdns/backends/Makefile pdns/backends/bind/Makefile pdns/pdns pdns/precursor modules/gmysqlbackend/Makefile modules/db2backend/Makefile modules/geobackend/Makefile modules/opendbxbackend/Makefile modules/pipebackend/Makefile modules/oraclebackend/Makefile modules/xdbbackend/Makefile modules/godbcbackend/Makefile modules/mongodbbackend/Makefile modules/gpgsqlbackend/Makefile modules/ldapbackend/Makefile modules/gsqlite3backend/Makefile modules/goraclebackend/Makefile modules/mydnsbackend/Makefile modules/luabackend/Makefile modules/tinydnsbackend/Makefile modules/remotebackend/Makefile"
cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
@@ -21023,7 +20944,6 @@
"modules/mongodbbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/mongodbbackend/Makefile" ;;
"modules/gpgsqlbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gpgsqlbackend/Makefile" ;;
"modules/ldapbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/ldapbackend/Makefile" ;;
- "modules/gsqlitebackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gsqlitebackend/Makefile" ;;
"modules/gsqlite3backend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gsqlite3backend/Makefile" ;;
"modules/goraclebackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/goraclebackend/Makefile" ;;
"modules/mydnsbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/mydnsbackend/Makefile" ;;
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/autom4te.cache/traces.1
^
|
@@ -153,7 +153,7 @@
m4trace:configure.ac:2: -1- AC_SUBST([target_alias])
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([target_alias])
m4trace:configure.ac:2: -1- m4_pattern_allow([^target_alias$])
-m4trace:configure.ac:3: -1- AM_INIT_AUTOMAKE([pdns], [3.1])
+m4trace:configure.ac:3: -1- AM_INIT_AUTOMAKE([pdns], [3.2-pre])
m4trace:configure.ac:3: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
m4trace:configure.ac:3: -1- AM_AUTOMAKE_VERSION([1.11.3])
m4trace:configure.ac:3: -1- AC_REQUIRE_AUX_FILE([install-sh])
@@ -176,7 +176,7 @@
m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE], [pdns])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE])
m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE$])
-m4trace:configure.ac:3: -1- AC_SUBST([VERSION], [3.1])
+m4trace:configure.ac:3: -1- AC_SUBST([VERSION], [3.2-pre])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([VERSION])
m4trace:configure.ac:3: -1- m4_pattern_allow([^VERSION$])
m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
@@ -892,232 +892,230 @@
m4trace:configure.ac:150: -1- m4_pattern_allow([^HAVE_IPV6$])
m4trace:configure.ac:150: -1- AH_OUTPUT([HAVE_IPV6], [/* If the host operating system understands IPv6 */
@%:@undef HAVE_IPV6])
-m4trace:configure.ac:157: -1- AC_SUBST([THREADFLAGS])
-m4trace:configure.ac:157: -1- AC_SUBST_TRACE([THREADFLAGS])
-m4trace:configure.ac:157: -1- m4_pattern_allow([^THREADFLAGS$])
-m4trace:configure.ac:159: -1- AC_SUBST([DYNLINKFLAGS])
-m4trace:configure.ac:159: -1- AC_SUBST_TRACE([DYNLINKFLAGS])
-m4trace:configure.ac:159: -1- m4_pattern_allow([^DYNLINKFLAGS$])
-m4trace:configure.ac:165: -1- AC_DEFINE_TRACE_LITERAL([VERBOSELOG])
-m4trace:configure.ac:165: -1- m4_pattern_allow([^VERBOSELOG$])
-m4trace:configure.ac:165: -1- AH_OUTPUT([VERBOSELOG], [/* If verbose logging should be enabled */
+m4trace:configure.ac:156: -1- AC_DEFINE_TRACE_LITERAL([HAVE_IPV6])
+m4trace:configure.ac:156: -1- m4_pattern_allow([^HAVE_IPV6$])
+m4trace:configure.ac:156: -1- AH_OUTPUT([HAVE_IPV6], [/* If the host operating system understands IPv6 */
+@%:@undef HAVE_IPV6])
+m4trace:configure.ac:163: -1- AC_SUBST([THREADFLAGS])
+m4trace:configure.ac:163: -1- AC_SUBST_TRACE([THREADFLAGS])
+m4trace:configure.ac:163: -1- m4_pattern_allow([^THREADFLAGS$])
+m4trace:configure.ac:165: -1- AC_SUBST([DYNLINKFLAGS])
+m4trace:configure.ac:165: -1- AC_SUBST_TRACE([DYNLINKFLAGS])
+m4trace:configure.ac:165: -1- m4_pattern_allow([^DYNLINKFLAGS$])
+m4trace:configure.ac:171: -1- AC_DEFINE_TRACE_LITERAL([VERBOSELOG])
+m4trace:configure.ac:171: -1- m4_pattern_allow([^VERBOSELOG$])
+m4trace:configure.ac:171: -1- AH_OUTPUT([VERBOSELOG], [/* If verbose logging should be enabled */
@%:@undef VERBOSELOG])
-m4trace:configure.ac:170: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:176: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1482: AC_ARG_WITH is expanded from...
-configure.ac:170: the top level])
-m4trace:configure.ac:175: -1- AM_CONDITIONAL([HAVE_LIBPOLARSSL], [false])
-m4trace:configure.ac:175: -1- AC_SUBST([HAVE_LIBPOLARSSL_TRUE])
-m4trace:configure.ac:175: -1- AC_SUBST_TRACE([HAVE_LIBPOLARSSL_TRUE])
-m4trace:configure.ac:175: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL_TRUE$])
-m4trace:configure.ac:175: -1- AC_SUBST([HAVE_LIBPOLARSSL_FALSE])
-m4trace:configure.ac:175: -1- AC_SUBST_TRACE([HAVE_LIBPOLARSSL_FALSE])
-m4trace:configure.ac:175: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL_FALSE$])
-m4trace:configure.ac:175: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPOLARSSL_TRUE])
-m4trace:configure.ac:175: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPOLARSSL_FALSE])
-m4trace:configure.ac:192: -1- AH_OUTPUT([HAVE_LIBPOLARSSL], [/* Define to 1 if you have the `polarssl\' library (-lpolarssl). */
+configure.ac:176: the top level])
+m4trace:configure.ac:181: -1- AM_CONDITIONAL([HAVE_LIBPOLARSSL], [false])
+m4trace:configure.ac:181: -1- AC_SUBST([HAVE_LIBPOLARSSL_TRUE])
+m4trace:configure.ac:181: -1- AC_SUBST_TRACE([HAVE_LIBPOLARSSL_TRUE])
+m4trace:configure.ac:181: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL_TRUE$])
+m4trace:configure.ac:181: -1- AC_SUBST([HAVE_LIBPOLARSSL_FALSE])
+m4trace:configure.ac:181: -1- AC_SUBST_TRACE([HAVE_LIBPOLARSSL_FALSE])
+m4trace:configure.ac:181: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL_FALSE$])
+m4trace:configure.ac:181: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPOLARSSL_TRUE])
+m4trace:configure.ac:181: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPOLARSSL_FALSE])
+m4trace:configure.ac:198: -1- AH_OUTPUT([HAVE_LIBPOLARSSL], [/* Define to 1 if you have the `polarssl\' library (-lpolarssl). */
@%:@undef HAVE_LIBPOLARSSL])
-m4trace:configure.ac:192: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBPOLARSSL])
-m4trace:configure.ac:192: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL$])
-m4trace:configure.ac:199: -1- AM_CONDITIONAL([BOTAN110], [test x"$enable_botan110" = "xyes"])
-m4trace:configure.ac:199: -1- AC_SUBST([BOTAN110_TRUE])
-m4trace:configure.ac:199: -1- AC_SUBST_TRACE([BOTAN110_TRUE])
-m4trace:configure.ac:199: -1- m4_pattern_allow([^BOTAN110_TRUE$])
-m4trace:configure.ac:199: -1- AC_SUBST([BOTAN110_FALSE])
-m4trace:configure.ac:199: -1- AC_SUBST_TRACE([BOTAN110_FALSE])
-m4trace:configure.ac:199: -1- m4_pattern_allow([^BOTAN110_FALSE$])
-m4trace:configure.ac:199: -1- _AM_SUBST_NOTMAKE([BOTAN110_TRUE])
-m4trace:configure.ac:199: -1- _AM_SUBST_NOTMAKE([BOTAN110_FALSE])
-m4trace:configure.ac:205: -1- AM_CONDITIONAL([BOTAN18], [test x"$enable_botan18" = "xyes"])
-m4trace:configure.ac:205: -1- AC_SUBST([BOTAN18_TRUE])
-m4trace:configure.ac:205: -1- AC_SUBST_TRACE([BOTAN18_TRUE])
-m4trace:configure.ac:205: -1- m4_pattern_allow([^BOTAN18_TRUE$])
-m4trace:configure.ac:205: -1- AC_SUBST([BOTAN18_FALSE])
-m4trace:configure.ac:205: -1- AC_SUBST_TRACE([BOTAN18_FALSE])
-m4trace:configure.ac:205: -1- m4_pattern_allow([^BOTAN18_FALSE$])
-m4trace:configure.ac:205: -1- _AM_SUBST_NOTMAKE([BOTAN18_TRUE])
-m4trace:configure.ac:205: -1- _AM_SUBST_NOTMAKE([BOTAN18_FALSE])
-m4trace:configure.ac:211: -1- AM_CONDITIONAL([CRYPTOPP], [test x"$enable_cryptopp" = "xyes"])
-m4trace:configure.ac:211: -1- AC_SUBST([CRYPTOPP_TRUE])
-m4trace:configure.ac:211: -1- AC_SUBST_TRACE([CRYPTOPP_TRUE])
-m4trace:configure.ac:211: -1- m4_pattern_allow([^CRYPTOPP_TRUE$])
-m4trace:configure.ac:211: -1- AC_SUBST([CRYPTOPP_FALSE])
-m4trace:configure.ac:211: -1- AC_SUBST_TRACE([CRYPTOPP_FALSE])
-m4trace:configure.ac:211: -1- m4_pattern_allow([^CRYPTOPP_FALSE$])
-m4trace:configure.ac:211: -1- _AM_SUBST_NOTMAKE([CRYPTOPP_TRUE])
-m4trace:configure.ac:211: -1- _AM_SUBST_NOTMAKE([CRYPTOPP_FALSE])
-m4trace:configure.ac:215: -1- AC_SUBST([BOTAN110_CFLAGS])
-m4trace:configure.ac:215: -1- AC_SUBST_TRACE([BOTAN110_CFLAGS])
-m4trace:configure.ac:215: -1- m4_pattern_allow([^BOTAN110_CFLAGS$])
-m4trace:configure.ac:215: -1- AC_SUBST([BOTAN110_LIBS])
-m4trace:configure.ac:215: -1- AC_SUBST_TRACE([BOTAN110_LIBS])
-m4trace:configure.ac:215: -1- m4_pattern_allow([^BOTAN110_LIBS$])
-m4trace:configure.ac:216: -1- AC_SUBST([BOTAN110_LIBS])
-m4trace:configure.ac:216: -1- AC_SUBST_TRACE([BOTAN110_LIBS])
-m4trace:configure.ac:216: -1- m4_pattern_allow([^BOTAN110_LIBS$])
-m4trace:configure.ac:217: -1- AC_SUBST([BOTAN110_CFLAGS])
-m4trace:configure.ac:217: -1- AC_SUBST_TRACE([BOTAN110_CFLAGS])
-m4trace:configure.ac:217: -1- m4_pattern_allow([^BOTAN110_CFLAGS$])
-m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOTAN110])
-m4trace:configure.ac:218: -1- m4_pattern_allow([^HAVE_BOTAN110$])
-m4trace:configure.ac:218: -1- AH_OUTPUT([HAVE_BOTAN110], [/* If we have botan 1.10 */
+m4trace:configure.ac:198: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBPOLARSSL])
+m4trace:configure.ac:198: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL$])
+m4trace:configure.ac:205: -1- AM_CONDITIONAL([BOTAN110], [test x"$enable_botan110" = "xyes"])
+m4trace:configure.ac:205: -1- AC_SUBST([BOTAN110_TRUE])
+m4trace:configure.ac:205: -1- AC_SUBST_TRACE([BOTAN110_TRUE])
+m4trace:configure.ac:205: -1- m4_pattern_allow([^BOTAN110_TRUE$])
+m4trace:configure.ac:205: -1- AC_SUBST([BOTAN110_FALSE])
+m4trace:configure.ac:205: -1- AC_SUBST_TRACE([BOTAN110_FALSE])
+m4trace:configure.ac:205: -1- m4_pattern_allow([^BOTAN110_FALSE$])
+m4trace:configure.ac:205: -1- _AM_SUBST_NOTMAKE([BOTAN110_TRUE])
+m4trace:configure.ac:205: -1- _AM_SUBST_NOTMAKE([BOTAN110_FALSE])
+m4trace:configure.ac:211: -1- AM_CONDITIONAL([BOTAN18], [test x"$enable_botan18" = "xyes"])
+m4trace:configure.ac:211: -1- AC_SUBST([BOTAN18_TRUE])
+m4trace:configure.ac:211: -1- AC_SUBST_TRACE([BOTAN18_TRUE])
+m4trace:configure.ac:211: -1- m4_pattern_allow([^BOTAN18_TRUE$])
+m4trace:configure.ac:211: -1- AC_SUBST([BOTAN18_FALSE])
+m4trace:configure.ac:211: -1- AC_SUBST_TRACE([BOTAN18_FALSE])
+m4trace:configure.ac:211: -1- m4_pattern_allow([^BOTAN18_FALSE$])
+m4trace:configure.ac:211: -1- _AM_SUBST_NOTMAKE([BOTAN18_TRUE])
+m4trace:configure.ac:211: -1- _AM_SUBST_NOTMAKE([BOTAN18_FALSE])
+m4trace:configure.ac:217: -1- AM_CONDITIONAL([CRYPTOPP], [test x"$enable_cryptopp" = "xyes"])
+m4trace:configure.ac:217: -1- AC_SUBST([CRYPTOPP_TRUE])
+m4trace:configure.ac:217: -1- AC_SUBST_TRACE([CRYPTOPP_TRUE])
+m4trace:configure.ac:217: -1- m4_pattern_allow([^CRYPTOPP_TRUE$])
+m4trace:configure.ac:217: -1- AC_SUBST([CRYPTOPP_FALSE])
+m4trace:configure.ac:217: -1- AC_SUBST_TRACE([CRYPTOPP_FALSE])
+m4trace:configure.ac:217: -1- m4_pattern_allow([^CRYPTOPP_FALSE$])
+m4trace:configure.ac:217: -1- _AM_SUBST_NOTMAKE([CRYPTOPP_TRUE])
+m4trace:configure.ac:217: -1- _AM_SUBST_NOTMAKE([CRYPTOPP_FALSE])
+m4trace:configure.ac:221: -1- AC_SUBST([BOTAN110_CFLAGS])
+m4trace:configure.ac:221: -1- AC_SUBST_TRACE([BOTAN110_CFLAGS])
+m4trace:configure.ac:221: -1- m4_pattern_allow([^BOTAN110_CFLAGS$])
+m4trace:configure.ac:221: -1- AC_SUBST([BOTAN110_LIBS])
+m4trace:configure.ac:221: -1- AC_SUBST_TRACE([BOTAN110_LIBS])
+m4trace:configure.ac:221: -1- m4_pattern_allow([^BOTAN110_LIBS$])
+m4trace:configure.ac:222: -1- AC_SUBST([BOTAN110_LIBS])
+m4trace:configure.ac:222: -1- AC_SUBST_TRACE([BOTAN110_LIBS])
+m4trace:configure.ac:222: -1- m4_pattern_allow([^BOTAN110_LIBS$])
+m4trace:configure.ac:223: -1- AC_SUBST([BOTAN110_CFLAGS])
+m4trace:configure.ac:223: -1- AC_SUBST_TRACE([BOTAN110_CFLAGS])
+m4trace:configure.ac:223: -1- m4_pattern_allow([^BOTAN110_CFLAGS$])
+m4trace:configure.ac:224: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOTAN110])
+m4trace:configure.ac:224: -1- m4_pattern_allow([^HAVE_BOTAN110$])
+m4trace:configure.ac:224: -1- AH_OUTPUT([HAVE_BOTAN110], [/* If we have botan 1.10 */
@%:@undef HAVE_BOTAN110])
-m4trace:configure.ac:223: -1- AC_SUBST([BOTAN18_CFLAGS])
-m4trace:configure.ac:223: -1- AC_SUBST_TRACE([BOTAN18_CFLAGS])
-m4trace:configure.ac:223: -1- m4_pattern_allow([^BOTAN18_CFLAGS$])
-m4trace:configure.ac:223: -1- AC_SUBST([BOTAN18_LIBS])
-m4trace:configure.ac:223: -1- AC_SUBST_TRACE([BOTAN18_LIBS])
-m4trace:configure.ac:223: -1- m4_pattern_allow([^BOTAN18_LIBS$])
-m4trace:configure.ac:224: -1- AC_SUBST([BOTAN18_LIBS])
-m4trace:configure.ac:224: -1- AC_SUBST_TRACE([BOTAN18_LIBS])
-m4trace:configure.ac:224: -1- m4_pattern_allow([^BOTAN18_LIBS$])
-m4trace:configure.ac:225: -1- AC_SUBST([BOTAN18_CFLAGS])
-m4trace:configure.ac:225: -1- AC_SUBST_TRACE([BOTAN18_CFLAGS])
-m4trace:configure.ac:225: -1- m4_pattern_allow([^BOTAN18_CFLAGS$])
-m4trace:configure.ac:226: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOTAN18])
-m4trace:configure.ac:226: -1- m4_pattern_allow([^HAVE_BOTAN18$])
-m4trace:configure.ac:226: -1- AH_OUTPUT([HAVE_BOTAN18], [/* If we have botan 1.8 */
+m4trace:configure.ac:229: -1- AC_SUBST([BOTAN18_CFLAGS])
+m4trace:configure.ac:229: -1- AC_SUBST_TRACE([BOTAN18_CFLAGS])
+m4trace:configure.ac:229: -1- m4_pattern_allow([^BOTAN18_CFLAGS$])
+m4trace:configure.ac:229: -1- AC_SUBST([BOTAN18_LIBS])
+m4trace:configure.ac:229: -1- AC_SUBST_TRACE([BOTAN18_LIBS])
+m4trace:configure.ac:229: -1- m4_pattern_allow([^BOTAN18_LIBS$])
+m4trace:configure.ac:230: -1- AC_SUBST([BOTAN18_LIBS])
+m4trace:configure.ac:230: -1- AC_SUBST_TRACE([BOTAN18_LIBS])
+m4trace:configure.ac:230: -1- m4_pattern_allow([^BOTAN18_LIBS$])
+m4trace:configure.ac:231: -1- AC_SUBST([BOTAN18_CFLAGS])
+m4trace:configure.ac:231: -1- AC_SUBST_TRACE([BOTAN18_CFLAGS])
+m4trace:configure.ac:231: -1- m4_pattern_allow([^BOTAN18_CFLAGS$])
+m4trace:configure.ac:232: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOTAN18])
+m4trace:configure.ac:232: -1- m4_pattern_allow([^HAVE_BOTAN18$])
+m4trace:configure.ac:232: -1- AH_OUTPUT([HAVE_BOTAN18], [/* If we have botan 1.8 */
@%:@undef HAVE_BOTAN18])
-m4trace:configure.ac:240: -1- AM_CONDITIONAL([ALLSTATIC], [test x$static = xtrue])
-m4trace:configure.ac:240: -1- AC_SUBST([ALLSTATIC_TRUE])
-m4trace:configure.ac:240: -1- AC_SUBST_TRACE([ALLSTATIC_TRUE])
-m4trace:configure.ac:240: -1- m4_pattern_allow([^ALLSTATIC_TRUE$])
-m4trace:configure.ac:240: -1- AC_SUBST([ALLSTATIC_FALSE])
-m4trace:configure.ac:240: -1- AC_SUBST_TRACE([ALLSTATIC_FALSE])
-m4trace:configure.ac:240: -1- m4_pattern_allow([^ALLSTATIC_FALSE$])
-m4trace:configure.ac:240: -1- _AM_SUBST_NOTMAKE([ALLSTATIC_TRUE])
-m4trace:configure.ac:240: -1- _AM_SUBST_NOTMAKE([ALLSTATIC_FALSE])
-m4trace:configure.ac:263: -1- AC_SUBST([socketdir])
-m4trace:configure.ac:263: -1- AC_SUBST_TRACE([socketdir])
-m4trace:configure.ac:263: -1- m4_pattern_allow([^socketdir$])
-m4trace:configure.ac:270: -1- AC_SUBST([moduledirs])
-m4trace:configure.ac:270: -1- AC_SUBST_TRACE([moduledirs])
-m4trace:configure.ac:270: -1- m4_pattern_allow([^moduledirs$])
-m4trace:configure.ac:271: -1- AC_SUBST([moduleobjects])
-m4trace:configure.ac:271: -1- AC_SUBST_TRACE([moduleobjects])
-m4trace:configure.ac:271: -1- m4_pattern_allow([^moduleobjects$])
-m4trace:configure.ac:272: -1- AC_SUBST([modulelibs])
-m4trace:configure.ac:272: -1- AC_SUBST_TRACE([modulelibs])
-m4trace:configure.ac:272: -1- m4_pattern_allow([^modulelibs$])
-m4trace:configure.ac:287: -1- AC_SUBST([programdescend])
-m4trace:configure.ac:287: -1- AC_SUBST_TRACE([programdescend])
-m4trace:configure.ac:287: -1- m4_pattern_allow([^programdescend$])
-m4trace:configure.ac:291: -2- AC_DEFINE_TRACE_LITERAL([GCC_SKIP_LOCKING])
-m4trace:configure.ac:291: -2- m4_pattern_allow([^GCC_SKIP_LOCKING$])
-m4trace:configure.ac:291: -2- AH_OUTPUT([GCC_SKIP_LOCKING], [/* Skip gcc locking */
+m4trace:configure.ac:246: -1- AM_CONDITIONAL([ALLSTATIC], [test x$static = xtrue])
+m4trace:configure.ac:246: -1- AC_SUBST([ALLSTATIC_TRUE])
+m4trace:configure.ac:246: -1- AC_SUBST_TRACE([ALLSTATIC_TRUE])
+m4trace:configure.ac:246: -1- m4_pattern_allow([^ALLSTATIC_TRUE$])
+m4trace:configure.ac:246: -1- AC_SUBST([ALLSTATIC_FALSE])
+m4trace:configure.ac:246: -1- AC_SUBST_TRACE([ALLSTATIC_FALSE])
+m4trace:configure.ac:246: -1- m4_pattern_allow([^ALLSTATIC_FALSE$])
+m4trace:configure.ac:246: -1- _AM_SUBST_NOTMAKE([ALLSTATIC_TRUE])
+m4trace:configure.ac:246: -1- _AM_SUBST_NOTMAKE([ALLSTATIC_FALSE])
+m4trace:configure.ac:269: -1- AC_SUBST([socketdir])
+m4trace:configure.ac:269: -1- AC_SUBST_TRACE([socketdir])
+m4trace:configure.ac:269: -1- m4_pattern_allow([^socketdir$])
+m4trace:configure.ac:276: -1- AC_SUBST([moduledirs])
+m4trace:configure.ac:276: -1- AC_SUBST_TRACE([moduledirs])
+m4trace:configure.ac:276: -1- m4_pattern_allow([^moduledirs$])
+m4trace:configure.ac:277: -1- AC_SUBST([moduleobjects])
+m4trace:configure.ac:277: -1- AC_SUBST_TRACE([moduleobjects])
+m4trace:configure.ac:277: -1- m4_pattern_allow([^moduleobjects$])
+m4trace:configure.ac:278: -1- AC_SUBST([modulelibs])
+m4trace:configure.ac:278: -1- AC_SUBST_TRACE([modulelibs])
+m4trace:configure.ac:278: -1- m4_pattern_allow([^modulelibs$])
+m4trace:configure.ac:293: -1- AC_SUBST([programdescend])
+m4trace:configure.ac:293: -1- AC_SUBST_TRACE([programdescend])
+m4trace:configure.ac:293: -1- m4_pattern_allow([^programdescend$])
+m4trace:configure.ac:297: -2- AC_DEFINE_TRACE_LITERAL([GCC_SKIP_LOCKING])
+m4trace:configure.ac:297: -2- m4_pattern_allow([^GCC_SKIP_LOCKING$])
+m4trace:configure.ac:297: -2- AH_OUTPUT([GCC_SKIP_LOCKING], [/* Skip gcc locking */
@%:@undef GCC_SKIP_LOCKING])
-m4trace:configure.ac:301: -1- AM_CONDITIONAL([RECURSOR], [test x"$enable_recursor" = "xyes"])
-m4trace:configure.ac:301: -1- AC_SUBST([RECURSOR_TRUE])
-m4trace:configure.ac:301: -1- AC_SUBST_TRACE([RECURSOR_TRUE])
-m4trace:configure.ac:301: -1- m4_pattern_allow([^RECURSOR_TRUE$])
-m4trace:configure.ac:301: -1- AC_SUBST([RECURSOR_FALSE])
-m4trace:configure.ac:301: -1- AC_SUBST_TRACE([RECURSOR_FALSE])
-m4trace:configure.ac:301: -1- m4_pattern_allow([^RECURSOR_FALSE$])
-m4trace:configure.ac:301: -1- _AM_SUBST_NOTMAKE([RECURSOR_TRUE])
-m4trace:configure.ac:301: -1- _AM_SUBST_NOTMAKE([RECURSOR_FALSE])
-m4trace:configure.ac:325: -1- AH_OUTPUT([HAVE_LDAP_H], [/* Define to 1 if you have the <ldap.h> header file. */
+m4trace:configure.ac:307: -1- AM_CONDITIONAL([RECURSOR], [test x"$enable_recursor" = "xyes"])
+m4trace:configure.ac:307: -1- AC_SUBST([RECURSOR_TRUE])
+m4trace:configure.ac:307: -1- AC_SUBST_TRACE([RECURSOR_TRUE])
+m4trace:configure.ac:307: -1- m4_pattern_allow([^RECURSOR_TRUE$])
+m4trace:configure.ac:307: -1- AC_SUBST([RECURSOR_FALSE])
+m4trace:configure.ac:307: -1- AC_SUBST_TRACE([RECURSOR_FALSE])
+m4trace:configure.ac:307: -1- m4_pattern_allow([^RECURSOR_FALSE$])
+m4trace:configure.ac:307: -1- _AM_SUBST_NOTMAKE([RECURSOR_TRUE])
+m4trace:configure.ac:307: -1- _AM_SUBST_NOTMAKE([RECURSOR_FALSE])
+m4trace:configure.ac:328: -1- AH_OUTPUT([HAVE_LDAP_H], [/* Define to 1 if you have the <ldap.h> header file. */
@%:@undef HAVE_LDAP_H])
-m4trace:configure.ac:325: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDAP_H])
-m4trace:configure.ac:325: -1- m4_pattern_allow([^HAVE_LDAP_H$])
-m4trace:configure.ac:326: -1- AH_OUTPUT([HAVE_LBER_H], [/* Define to 1 if you have the <lber.h> header file. */
+m4trace:configure.ac:328: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDAP_H])
+m4trace:configure.ac:328: -1- m4_pattern_allow([^HAVE_LDAP_H$])
+m4trace:configure.ac:329: -1- AH_OUTPUT([HAVE_LBER_H], [/* Define to 1 if you have the <lber.h> header file. */
@%:@undef HAVE_LBER_H])
-m4trace:configure.ac:326: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LBER_H])
-m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LBER_H$])
-m4trace:configure.ac:327: -1- AC_SUBST([LIBLDAP])
-m4trace:configure.ac:327: -1- AC_SUBST_TRACE([LIBLDAP])
-m4trace:configure.ac:327: -1- m4_pattern_allow([^LIBLDAP$])
-m4trace:configure.ac:328: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBLDAP_R])
-m4trace:configure.ac:328: -1- m4_pattern_allow([^HAVE_LIBLDAP_R$])
-m4trace:configure.ac:328: -1- AH_OUTPUT([HAVE_LIBLDAP_R], [/* Have -lldap_r */
+m4trace:configure.ac:329: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LBER_H])
+m4trace:configure.ac:329: -1- m4_pattern_allow([^HAVE_LBER_H$])
+m4trace:configure.ac:330: -1- AC_SUBST([LIBLDAP])
+m4trace:configure.ac:330: -1- AC_SUBST_TRACE([LIBLDAP])
+m4trace:configure.ac:330: -1- m4_pattern_allow([^LIBLDAP$])
+m4trace:configure.ac:331: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBLDAP_R])
+m4trace:configure.ac:331: -1- m4_pattern_allow([^HAVE_LIBLDAP_R$])
+m4trace:configure.ac:331: -1- AH_OUTPUT([HAVE_LIBLDAP_R], [/* Have -lldap_r */
@%:@undef HAVE_LIBLDAP_R])
-m4trace:configure.ac:328: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBLDAP])
-m4trace:configure.ac:328: -1- m4_pattern_allow([^HAVE_LIBLDAP$])
-m4trace:configure.ac:328: -1- AH_OUTPUT([HAVE_LIBLDAP], [/* Have -lldap */
+m4trace:configure.ac:331: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBLDAP])
+m4trace:configure.ac:331: -1- m4_pattern_allow([^HAVE_LIBLDAP$])
+m4trace:configure.ac:331: -1- AH_OUTPUT([HAVE_LIBLDAP], [/* Have -lldap */
@%:@undef HAVE_LIBLDAP])
-m4trace:configure.ac:337: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDAP_INITIALIZE])
-m4trace:configure.ac:337: -1- m4_pattern_allow([^HAVE_LDAP_INITIALIZE$])
-m4trace:configure.ac:337: -1- AH_OUTPUT([HAVE_LDAP_INITIALIZE], [/* Define to 1 if you have ldap_initialize */
+m4trace:configure.ac:340: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDAP_INITIALIZE])
+m4trace:configure.ac:340: -1- m4_pattern_allow([^HAVE_LDAP_INITIALIZE$])
+m4trace:configure.ac:340: -1- AH_OUTPUT([HAVE_LDAP_INITIALIZE], [/* Define to 1 if you have ldap_initialize */
@%:@undef HAVE_LDAP_INITIALIZE])
-m4trace:configure.ac:341: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDAP_SASL_BIND])
-m4trace:configure.ac:341: -1- m4_pattern_allow([^HAVE_LDAP_SASL_BIND$])
-m4trace:configure.ac:341: -1- AH_OUTPUT([HAVE_LDAP_SASL_BIND], [/* Define to 1 if you have ldap_sasl_bind */
+m4trace:configure.ac:344: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDAP_SASL_BIND])
+m4trace:configure.ac:344: -1- m4_pattern_allow([^HAVE_LDAP_SASL_BIND$])
+m4trace:configure.ac:344: -1- AH_OUTPUT([HAVE_LDAP_SASL_BIND], [/* Define to 1 if you have ldap_sasl_bind */
@%:@undef HAVE_LDAP_SASL_BIND])
-m4trace:configure.ac:350: -1- AH_OUTPUT([HAVE_ODBX_H], [/* Define to 1 if you have the <odbx.h> header file. */
+m4trace:configure.ac:353: -1- AH_OUTPUT([HAVE_ODBX_H], [/* Define to 1 if you have the <odbx.h> header file. */
@%:@undef HAVE_ODBX_H])
-m4trace:configure.ac:350: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ODBX_H])
-m4trace:configure.ac:350: -1- m4_pattern_allow([^HAVE_ODBX_H$])
-m4trace:configure.ac:351: -1- AC_SUBST([LIBOPENDBX])
-m4trace:configure.ac:351: -1- AC_SUBST_TRACE([LIBOPENDBX])
-m4trace:configure.ac:351: -1- m4_pattern_allow([^LIBOPENDBX$])
-m4trace:configure.ac:352: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBOPENDBX])
-m4trace:configure.ac:352: -1- m4_pattern_allow([^HAVE_LIBOPENDBX$])
-m4trace:configure.ac:352: -1- AH_OUTPUT([HAVE_LIBOPENDBX], [/* Have -lopendbx */
+m4trace:configure.ac:353: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ODBX_H])
+m4trace:configure.ac:353: -1- m4_pattern_allow([^HAVE_ODBX_H$])
+m4trace:configure.ac:354: -1- AC_SUBST([LIBOPENDBX])
+m4trace:configure.ac:354: -1- AC_SUBST_TRACE([LIBOPENDBX])
+m4trace:configure.ac:354: -1- m4_pattern_allow([^LIBOPENDBX$])
+m4trace:configure.ac:355: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBOPENDBX])
+m4trace:configure.ac:355: -1- m4_pattern_allow([^HAVE_LIBOPENDBX$])
+m4trace:configure.ac:355: -1- AH_OUTPUT([HAVE_LIBOPENDBX], [/* Have -lopendbx */
@%:@undef HAVE_LIBOPENDBX])
-m4trace:configure.ac:401: -1- AC_SUBST([MYSQL_lib])
-m4trace:configure.ac:401: -1- AC_SUBST_TRACE([MYSQL_lib])
-m4trace:configure.ac:401: -1- m4_pattern_allow([^MYSQL_lib$])
-m4trace:configure.ac:422: -1- AC_SUBST([MYSQL_incdir])
-m4trace:configure.ac:422: -1- AC_SUBST_TRACE([MYSQL_incdir])
-m4trace:configure.ac:422: -1- m4_pattern_allow([^MYSQL_incdir$])
-m4trace:configure.ac:466: -1- AC_SUBST([PGSQL_lib])
-m4trace:configure.ac:466: -1- AC_SUBST_TRACE([PGSQL_lib])
-m4trace:configure.ac:466: -1- m4_pattern_allow([^PGSQL_lib$])
-m4trace:configure.ac:484: -1- AC_SUBST([PGSQL_incdir])
-m4trace:configure.ac:484: -1- AC_SUBST_TRACE([PGSQL_incdir])
-m4trace:configure.ac:484: -1- m4_pattern_allow([^PGSQL_incdir$])
-m4trace:configure.ac:526: -1- AC_SUBST([SQLITE_lib])
-m4trace:configure.ac:526: -1- AC_SUBST_TRACE([SQLITE_lib])
-m4trace:configure.ac:526: -1- m4_pattern_allow([^SQLITE_lib$])
-m4trace:configure.ac:544: -1- AC_SUBST([SQLITE_incdir])
-m4trace:configure.ac:544: -1- AC_SUBST_TRACE([SQLITE_incdir])
-m4trace:configure.ac:544: -1- m4_pattern_allow([^SQLITE_incdir$])
-m4trace:configure.ac:552: -1- AC_SUBST([SQLITE3_CFLAGS])
-m4trace:configure.ac:552: -1- AC_SUBST_TRACE([SQLITE3_CFLAGS])
-m4trace:configure.ac:552: -1- m4_pattern_allow([^SQLITE3_CFLAGS$])
-m4trace:configure.ac:552: -1- AC_SUBST([SQLITE3_LIBS])
-m4trace:configure.ac:552: -1- AC_SUBST_TRACE([SQLITE3_LIBS])
-m4trace:configure.ac:552: -1- m4_pattern_allow([^SQLITE3_LIBS$])
-m4trace:configure.ac:553: -1- AC_SUBST([SQLITE3_LIBS])
-m4trace:configure.ac:553: -1- AC_SUBST_TRACE([SQLITE3_LIBS])
-m4trace:configure.ac:553: -1- m4_pattern_allow([^SQLITE3_LIBS$])
-m4trace:configure.ac:554: -1- AC_SUBST([SQLITE3_CFLAGS])
-m4trace:configure.ac:554: -1- AC_SUBST_TRACE([SQLITE3_CFLAGS])
-m4trace:configure.ac:554: -1- m4_pattern_allow([^SQLITE3_CFLAGS$])
-m4trace:configure.ac:555: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQLITE3])
-m4trace:configure.ac:555: -1- m4_pattern_allow([^HAVE_SQLITE3$])
-m4trace:configure.ac:555: -1- AH_OUTPUT([HAVE_SQLITE3], [/* If we have sqlite3 */
+m4trace:configure.ac:404: -1- AC_SUBST([MYSQL_lib])
+m4trace:configure.ac:404: -1- AC_SUBST_TRACE([MYSQL_lib])
+m4trace:configure.ac:404: -1- m4_pattern_allow([^MYSQL_lib$])
+m4trace:configure.ac:425: -1- AC_SUBST([MYSQL_incdir])
+m4trace:configure.ac:425: -1- AC_SUBST_TRACE([MYSQL_incdir])
+m4trace:configure.ac:425: -1- m4_pattern_allow([^MYSQL_incdir$])
+m4trace:configure.ac:469: -1- AC_SUBST([PGSQL_lib])
+m4trace:configure.ac:469: -1- AC_SUBST_TRACE([PGSQL_lib])
+m4trace:configure.ac:469: -1- m4_pattern_allow([^PGSQL_lib$])
+m4trace:configure.ac:487: -1- AC_SUBST([PGSQL_incdir])
+m4trace:configure.ac:487: -1- AC_SUBST_TRACE([PGSQL_incdir])
+m4trace:configure.ac:487: -1- m4_pattern_allow([^PGSQL_incdir$])
+m4trace:configure.ac:493: -1- AC_SUBST([SQLITE3_CFLAGS])
+m4trace:configure.ac:493: -1- AC_SUBST_TRACE([SQLITE3_CFLAGS])
+m4trace:configure.ac:493: -1- m4_pattern_allow([^SQLITE3_CFLAGS$])
+m4trace:configure.ac:493: -1- AC_SUBST([SQLITE3_LIBS])
+m4trace:configure.ac:493: -1- AC_SUBST_TRACE([SQLITE3_LIBS])
+m4trace:configure.ac:493: -1- m4_pattern_allow([^SQLITE3_LIBS$])
+m4trace:configure.ac:494: -1- AC_SUBST([SQLITE3_LIBS])
+m4trace:configure.ac:494: -1- AC_SUBST_TRACE([SQLITE3_LIBS])
+m4trace:configure.ac:494: -1- m4_pattern_allow([^SQLITE3_LIBS$])
+m4trace:configure.ac:495: -1- AC_SUBST([SQLITE3_CFLAGS])
+m4trace:configure.ac:495: -1- AC_SUBST_TRACE([SQLITE3_CFLAGS])
+m4trace:configure.ac:495: -1- m4_pattern_allow([^SQLITE3_CFLAGS$])
+m4trace:configure.ac:496: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQLITE3])
+m4trace:configure.ac:496: -1- m4_pattern_allow([^HAVE_SQLITE3$])
+m4trace:configure.ac:496: -1- AH_OUTPUT([HAVE_SQLITE3], [/* If we have sqlite3 */
@%:@undef HAVE_SQLITE3])
-m4trace:configure.ac:560: -1- AC_SUBST([CDB_CFLAGS])
-m4trace:configure.ac:560: -1- AC_SUBST_TRACE([CDB_CFLAGS])
-m4trace:configure.ac:560: -1- m4_pattern_allow([^CDB_CFLAGS$])
-m4trace:configure.ac:560: -1- AC_SUBST([CDB_LIBS])
-m4trace:configure.ac:560: -1- AC_SUBST_TRACE([CDB_LIBS])
-m4trace:configure.ac:560: -1- m4_pattern_allow([^CDB_LIBS$])
-m4trace:configure.ac:561: -1- AC_SUBST([CDB_LIBS])
-m4trace:configure.ac:561: -1- AC_SUBST_TRACE([CDB_LIBS])
-m4trace:configure.ac:561: -1- m4_pattern_allow([^CDB_LIBS$])
-m4trace:configure.ac:562: -1- AC_SUBST([CDB_CFLAGS])
-m4trace:configure.ac:562: -1- AC_SUBST_TRACE([CDB_CFLAGS])
-m4trace:configure.ac:562: -1- m4_pattern_allow([^CDB_CFLAGS$])
-m4trace:configure.ac:565: -1- AM_CONDITIONAL([SQLITE3], [test "$needsqlite3"])
-m4trace:configure.ac:565: -1- AC_SUBST([SQLITE3_TRUE])
-m4trace:configure.ac:565: -1- AC_SUBST_TRACE([SQLITE3_TRUE])
-m4trace:configure.ac:565: -1- m4_pattern_allow([^SQLITE3_TRUE$])
-m4trace:configure.ac:565: -1- AC_SUBST([SQLITE3_FALSE])
-m4trace:configure.ac:565: -1- AC_SUBST_TRACE([SQLITE3_FALSE])
-m4trace:configure.ac:565: -1- m4_pattern_allow([^SQLITE3_FALSE$])
-m4trace:configure.ac:565: -1- _AM_SUBST_NOTMAKE([SQLITE3_TRUE])
-m4trace:configure.ac:565: -1- _AM_SUBST_NOTMAKE([SQLITE3_FALSE])
-m4trace:configure.ac:603: -1- AC_SUBST([UNIXODBC_lib])
-m4trace:configure.ac:603: -1- AC_SUBST_TRACE([UNIXODBC_lib])
-m4trace:configure.ac:603: -1- m4_pattern_allow([^UNIXODBC_lib$])
-m4trace:configure.ac:621: -1- AC_SUBST([UNIXODBC_incdir])
-m4trace:configure.ac:621: -1- AC_SUBST_TRACE([UNIXODBC_incdir])
-m4trace:configure.ac:621: -1- m4_pattern_allow([^UNIXODBC_incdir$])
-m4trace:configure.ac:655: -1- AC_SUBST([LIBS])
-m4trace:configure.ac:655: -1- AC_SUBST_TRACE([LIBS])
-m4trace:configure.ac:655: -1- m4_pattern_allow([^LIBS$])
-m4trace:configure.ac:659: -1- AC_CONFIG_FILES([Makefile modules/Makefile pdns/Makefile codedocs/Makefile \
+m4trace:configure.ac:501: -1- AC_SUBST([CDB_CFLAGS])
+m4trace:configure.ac:501: -1- AC_SUBST_TRACE([CDB_CFLAGS])
+m4trace:configure.ac:501: -1- m4_pattern_allow([^CDB_CFLAGS$])
+m4trace:configure.ac:501: -1- AC_SUBST([CDB_LIBS])
+m4trace:configure.ac:501: -1- AC_SUBST_TRACE([CDB_LIBS])
+m4trace:configure.ac:501: -1- m4_pattern_allow([^CDB_LIBS$])
+m4trace:configure.ac:502: -1- AC_SUBST([CDB_LIBS])
+m4trace:configure.ac:502: -1- AC_SUBST_TRACE([CDB_LIBS])
+m4trace:configure.ac:502: -1- m4_pattern_allow([^CDB_LIBS$])
+m4trace:configure.ac:503: -1- AC_SUBST([CDB_CFLAGS])
+m4trace:configure.ac:503: -1- AC_SUBST_TRACE([CDB_CFLAGS])
+m4trace:configure.ac:503: -1- m4_pattern_allow([^CDB_CFLAGS$])
+m4trace:configure.ac:506: -1- AM_CONDITIONAL([SQLITE3], [test "$needsqlite3"])
+m4trace:configure.ac:506: -1- AC_SUBST([SQLITE3_TRUE])
+m4trace:configure.ac:506: -1- AC_SUBST_TRACE([SQLITE3_TRUE])
+m4trace:configure.ac:506: -1- m4_pattern_allow([^SQLITE3_TRUE$])
+m4trace:configure.ac:506: -1- AC_SUBST([SQLITE3_FALSE])
+m4trace:configure.ac:506: -1- AC_SUBST_TRACE([SQLITE3_FALSE])
+m4trace:configure.ac:506: -1- m4_pattern_allow([^SQLITE3_FALSE$])
+m4trace:configure.ac:506: -1- _AM_SUBST_NOTMAKE([SQLITE3_TRUE])
+m4trace:configure.ac:506: -1- _AM_SUBST_NOTMAKE([SQLITE3_FALSE])
+m4trace:configure.ac:544: -1- AC_SUBST([UNIXODBC_lib])
+m4trace:configure.ac:544: -1- AC_SUBST_TRACE([UNIXODBC_lib])
+m4trace:configure.ac:544: -1- m4_pattern_allow([^UNIXODBC_lib$])
+m4trace:configure.ac:562: -1- AC_SUBST([UNIXODBC_incdir])
+m4trace:configure.ac:562: -1- AC_SUBST_TRACE([UNIXODBC_incdir])
+m4trace:configure.ac:562: -1- m4_pattern_allow([^UNIXODBC_incdir$])
+m4trace:configure.ac:596: -1- AC_SUBST([LIBS])
+m4trace:configure.ac:596: -1- AC_SUBST_TRACE([LIBS])
+m4trace:configure.ac:596: -1- m4_pattern_allow([^LIBS$])
+m4trace:configure.ac:600: -1- AC_CONFIG_FILES([Makefile modules/Makefile pdns/Makefile codedocs/Makefile \
pdns/backends/Makefile pdns/backends/bind/Makefile pdns/pdns pdns/precursor \
modules/gmysqlbackend/Makefile modules/db2backend/Makefile \
modules/geobackend/Makefile modules/opendbxbackend/Makefile \
@@ -1125,36 +1123,36 @@
modules/xdbbackend/Makefile modules/godbcbackend/Makefile \
modules/mongodbbackend/Makefile \
modules/gpgsqlbackend/Makefile modules/ldapbackend/Makefile \
-modules/gsqlitebackend/Makefile modules/gsqlite3backend/Makefile \
+modules/gsqlite3backend/Makefile \
modules/goraclebackend/Makefile modules/mydnsbackend/Makefile \
modules/luabackend/Makefile modules/tinydnsbackend/Makefile \
modules/remotebackend/Makefile])
-m4trace:configure.ac:659: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
+m4trace:configure.ac:600: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
You should run autoupdate.], [])
-m4trace:configure.ac:659: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
-m4trace:configure.ac:659: -1- m4_pattern_allow([^LIB@&t@OBJS$])
-m4trace:configure.ac:659: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([LTLIBOBJS])
-m4trace:configure.ac:659: -1- m4_pattern_allow([^LTLIBOBJS$])
-m4trace:configure.ac:659: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
-m4trace:configure.ac:659: -1- AC_SUBST([am__EXEEXT_TRUE])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
-m4trace:configure.ac:659: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
-m4trace:configure.ac:659: -1- AC_SUBST([am__EXEEXT_FALSE])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
-m4trace:configure.ac:659: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
-m4trace:configure.ac:659: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
-m4trace:configure.ac:659: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([top_builddir])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([top_build_prefix])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([srcdir])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([abs_srcdir])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([top_srcdir])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([abs_top_srcdir])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([builddir])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([abs_builddir])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([abs_top_builddir])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([INSTALL])
-m4trace:configure.ac:659: -1- AC_SUBST_TRACE([MKDIR_P])
-m4trace:configure.ac:659: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
+m4trace:configure.ac:600: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
+m4trace:configure.ac:600: -1- m4_pattern_allow([^LIB@&t@OBJS$])
+m4trace:configure.ac:600: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([LTLIBOBJS])
+m4trace:configure.ac:600: -1- m4_pattern_allow([^LTLIBOBJS$])
+m4trace:configure.ac:600: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
+m4trace:configure.ac:600: -1- AC_SUBST([am__EXEEXT_TRUE])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
+m4trace:configure.ac:600: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
+m4trace:configure.ac:600: -1- AC_SUBST([am__EXEEXT_FALSE])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
+m4trace:configure.ac:600: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
+m4trace:configure.ac:600: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
+m4trace:configure.ac:600: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([top_builddir])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([top_build_prefix])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([srcdir])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([abs_srcdir])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([top_srcdir])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([abs_top_srcdir])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([builddir])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([abs_builddir])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([abs_top_builddir])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([INSTALL])
+m4trace:configure.ac:600: -1- AC_SUBST_TRACE([MKDIR_P])
+m4trace:configure.ac:600: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/autom4te.cache/traces.2
^
|
@@ -2917,7 +2917,7 @@
m4trace:configure.ac:2: -1- m4_pattern_allow([^build_alias$])
m4trace:configure.ac:2: -1- m4_pattern_allow([^host_alias$])
m4trace:configure.ac:2: -1- m4_pattern_allow([^target_alias$])
-m4trace:configure.ac:3: -1- AM_INIT_AUTOMAKE([pdns], [3.1])
+m4trace:configure.ac:3: -1- AM_INIT_AUTOMAKE([pdns], [3.2-pre])
m4trace:configure.ac:3: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
m4trace:configure.ac:3: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
m4trace:configure.ac:3: -1- AM_AUTOMAKE_VERSION([1.11.3])
@@ -3353,126 +3353,125 @@
m4trace:configure.ac:138: -1- m4_pattern_allow([^NEED_INET_NTOP_PROTO$])
m4trace:configure.ac:143: -1- m4_pattern_allow([^HAVE_IPV6$])
m4trace:configure.ac:150: -1- m4_pattern_allow([^HAVE_IPV6$])
-m4trace:configure.ac:157: -1- m4_pattern_allow([^THREADFLAGS$])
-m4trace:configure.ac:159: -1- m4_pattern_allow([^DYNLINKFLAGS$])
-m4trace:configure.ac:165: -1- m4_pattern_allow([^VERBOSELOG$])
-m4trace:configure.ac:170: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
+m4trace:configure.ac:156: -1- m4_pattern_allow([^HAVE_IPV6$])
+m4trace:configure.ac:163: -1- m4_pattern_allow([^THREADFLAGS$])
+m4trace:configure.ac:165: -1- m4_pattern_allow([^DYNLINKFLAGS$])
+m4trace:configure.ac:171: -1- m4_pattern_allow([^VERBOSELOG$])
+m4trace:configure.ac:176: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
../../lib/autoconf/general.m4:1482: AC_ARG_WITH is expanded from...
-configure.ac:170: the top level])
-m4trace:configure.ac:175: -1- AM_CONDITIONAL([HAVE_LIBPOLARSSL], [false])
-m4trace:configure.ac:175: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL_TRUE$])
-m4trace:configure.ac:175: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL_FALSE$])
-m4trace:configure.ac:175: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPOLARSSL_TRUE])
-m4trace:configure.ac:175: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPOLARSSL_FALSE])
-m4trace:configure.ac:192: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL$])
-m4trace:configure.ac:199: -1- AM_CONDITIONAL([BOTAN110], [test x"$enable_botan110" = "xyes"])
-m4trace:configure.ac:199: -1- m4_pattern_allow([^BOTAN110_TRUE$])
-m4trace:configure.ac:199: -1- m4_pattern_allow([^BOTAN110_FALSE$])
-m4trace:configure.ac:199: -1- _AM_SUBST_NOTMAKE([BOTAN110_TRUE])
-m4trace:configure.ac:199: -1- _AM_SUBST_NOTMAKE([BOTAN110_FALSE])
-m4trace:configure.ac:205: -1- AM_CONDITIONAL([BOTAN18], [test x"$enable_botan18" = "xyes"])
-m4trace:configure.ac:205: -1- m4_pattern_allow([^BOTAN18_TRUE$])
-m4trace:configure.ac:205: -1- m4_pattern_allow([^BOTAN18_FALSE$])
-m4trace:configure.ac:205: -1- _AM_SUBST_NOTMAKE([BOTAN18_TRUE])
-m4trace:configure.ac:205: -1- _AM_SUBST_NOTMAKE([BOTAN18_FALSE])
-m4trace:configure.ac:211: -1- AM_CONDITIONAL([CRYPTOPP], [test x"$enable_cryptopp" = "xyes"])
-m4trace:configure.ac:211: -1- m4_pattern_allow([^CRYPTOPP_TRUE$])
-m4trace:configure.ac:211: -1- m4_pattern_allow([^CRYPTOPP_FALSE$])
-m4trace:configure.ac:211: -1- _AM_SUBST_NOTMAKE([CRYPTOPP_TRUE])
-m4trace:configure.ac:211: -1- _AM_SUBST_NOTMAKE([CRYPTOPP_FALSE])
-m4trace:configure.ac:215: -1- PKG_CHECK_MODULES([BOTAN110], [botan-1.10], [HAVE_BOTAN110=yes], [as_fn_error $? "+Could not find botan 1.10" "$LINENO" 5])
-m4trace:configure.ac:215: -1- m4_pattern_allow([^BOTAN110_CFLAGS$])
-m4trace:configure.ac:215: -1- m4_pattern_allow([^BOTAN110_LIBS$])
-m4trace:configure.ac:215: -1- PKG_CHECK_EXISTS([botan-1.10], [pkg_cv_[]BOTAN110_CFLAGS=`$PKG_CONFIG --[]cflags "botan-1.10" 2>/dev/null`
- test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
-m4trace:configure.ac:215: -1- PKG_CHECK_EXISTS([botan-1.10], [pkg_cv_[]BOTAN110_LIBS=`$PKG_CONFIG --[]libs "botan-1.10" 2>/dev/null`
- test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
-m4trace:configure.ac:215: -1- _PKG_SHORT_ERRORS_SUPPORTED
-m4trace:configure.ac:216: -1- m4_pattern_allow([^BOTAN110_LIBS$])
-m4trace:configure.ac:217: -1- m4_pattern_allow([^BOTAN110_CFLAGS$])
-m4trace:configure.ac:218: -1- m4_pattern_allow([^HAVE_BOTAN110$])
-m4trace:configure.ac:223: -1- PKG_CHECK_MODULES([BOTAN18], [botan-1.8], [HAVE_BOTAN18=yes], [as_fn_error $? "+Could not find botan 1.8" "$LINENO" 5])
-m4trace:configure.ac:223: -1- m4_pattern_allow([^BOTAN18_CFLAGS$])
-m4trace:configure.ac:223: -1- m4_pattern_allow([^BOTAN18_LIBS$])
-m4trace:configure.ac:223: -1- PKG_CHECK_EXISTS([botan-1.8], [pkg_cv_[]BOTAN18_CFLAGS=`$PKG_CONFIG --[]cflags "botan-1.8" 2>/dev/null`
- test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
-m4trace:configure.ac:223: -1- PKG_CHECK_EXISTS([botan-1.8], [pkg_cv_[]BOTAN18_LIBS=`$PKG_CONFIG --[]libs "botan-1.8" 2>/dev/null`
- test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
-m4trace:configure.ac:223: -1- _PKG_SHORT_ERRORS_SUPPORTED
-m4trace:configure.ac:224: -1- m4_pattern_allow([^BOTAN18_LIBS$])
-m4trace:configure.ac:225: -1- m4_pattern_allow([^BOTAN18_CFLAGS$])
-m4trace:configure.ac:226: -1- m4_pattern_allow([^HAVE_BOTAN18$])
-m4trace:configure.ac:240: -1- AM_CONDITIONAL([ALLSTATIC], [test x$static = xtrue])
-m4trace:configure.ac:240: -1- m4_pattern_allow([^ALLSTATIC_TRUE$])
-m4trace:configure.ac:240: -1- m4_pattern_allow([^ALLSTATIC_FALSE$])
-m4trace:configure.ac:240: -1- _AM_SUBST_NOTMAKE([ALLSTATIC_TRUE])
-m4trace:configure.ac:240: -1- _AM_SUBST_NOTMAKE([ALLSTATIC_FALSE])
-m4trace:configure.ac:263: -1- m4_pattern_allow([^socketdir$])
-m4trace:configure.ac:270: -1- m4_pattern_allow([^moduledirs$])
-m4trace:configure.ac:271: -1- m4_pattern_allow([^moduleobjects$])
-m4trace:configure.ac:272: -1- m4_pattern_allow([^modulelibs$])
-m4trace:configure.ac:287: -1- m4_pattern_allow([^programdescend$])
-m4trace:configure.ac:291: -2- m4_pattern_allow([^GCC_SKIP_LOCKING$])
-m4trace:configure.ac:301: -1- AM_CONDITIONAL([RECURSOR], [test x"$enable_recursor" = "xyes"])
-m4trace:configure.ac:301: -1- m4_pattern_allow([^RECURSOR_TRUE$])
-m4trace:configure.ac:301: -1- m4_pattern_allow([^RECURSOR_FALSE$])
-m4trace:configure.ac:301: -1- _AM_SUBST_NOTMAKE([RECURSOR_TRUE])
-m4trace:configure.ac:301: -1- _AM_SUBST_NOTMAKE([RECURSOR_FALSE])
-m4trace:configure.ac:325: -1- m4_pattern_allow([^HAVE_LDAP_H$])
-m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_LBER_H$])
-m4trace:configure.ac:327: -1- m4_pattern_allow([^LIBLDAP$])
-m4trace:configure.ac:328: -1- m4_pattern_allow([^HAVE_LIBLDAP_R$])
-m4trace:configure.ac:328: -1- m4_pattern_allow([^HAVE_LIBLDAP$])
-m4trace:configure.ac:337: -1- m4_pattern_allow([^HAVE_LDAP_INITIALIZE$])
-m4trace:configure.ac:341: -1- m4_pattern_allow([^HAVE_LDAP_SASL_BIND$])
-m4trace:configure.ac:350: -1- m4_pattern_allow([^HAVE_ODBX_H$])
-m4trace:configure.ac:351: -1- m4_pattern_allow([^LIBOPENDBX$])
-m4trace:configure.ac:352: -1- m4_pattern_allow([^HAVE_LIBOPENDBX$])
-m4trace:configure.ac:401: -1- m4_pattern_allow([^MYSQL_lib$])
-m4trace:configure.ac:422: -1- m4_pattern_allow([^MYSQL_incdir$])
-m4trace:configure.ac:466: -1- m4_pattern_allow([^PGSQL_lib$])
-m4trace:configure.ac:484: -1- m4_pattern_allow([^PGSQL_incdir$])
-m4trace:configure.ac:526: -1- m4_pattern_allow([^SQLITE_lib$])
-m4trace:configure.ac:544: -1- m4_pattern_allow([^SQLITE_incdir$])
-m4trace:configure.ac:552: -1- PKG_CHECK_MODULES([SQLITE3], [$SQLITE3PC], [HAVE_SQLITE3=yes], [as_fn_error $? "+Could not find sqlite3" "$LINENO" 5])
-m4trace:configure.ac:552: -1- m4_pattern_allow([^SQLITE3_CFLAGS$])
-m4trace:configure.ac:552: -1- m4_pattern_allow([^SQLITE3_LIBS$])
-m4trace:configure.ac:552: -1- PKG_CHECK_EXISTS([$SQLITE3PC], [pkg_cv_[]SQLITE3_CFLAGS=`$PKG_CONFIG --[]cflags "$SQLITE3PC" 2>/dev/null`
- test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
-m4trace:configure.ac:552: -1- PKG_CHECK_EXISTS([$SQLITE3PC], [pkg_cv_[]SQLITE3_LIBS=`$PKG_CONFIG --[]libs "$SQLITE3PC" 2>/dev/null`
- test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
-m4trace:configure.ac:552: -1- _PKG_SHORT_ERRORS_SUPPORTED
-m4trace:configure.ac:553: -1- m4_pattern_allow([^SQLITE3_LIBS$])
-m4trace:configure.ac:554: -1- m4_pattern_allow([^SQLITE3_CFLAGS$])
-m4trace:configure.ac:555: -1- m4_pattern_allow([^HAVE_SQLITE3$])
-m4trace:configure.ac:560: -1- PKG_CHECK_MODULES([CDB], [libcdb], [HAVE_CDB=yes], [as_fn_error $? "+Could not find libcdb/tinycdb" "$LINENO" 5])
-m4trace:configure.ac:560: -1- m4_pattern_allow([^CDB_CFLAGS$])
-m4trace:configure.ac:560: -1- m4_pattern_allow([^CDB_LIBS$])
-m4trace:configure.ac:560: -1- PKG_CHECK_EXISTS([libcdb], [pkg_cv_[]CDB_CFLAGS=`$PKG_CONFIG --[]cflags "libcdb" 2>/dev/null`
- test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
-m4trace:configure.ac:560: -1- PKG_CHECK_EXISTS([libcdb], [pkg_cv_[]CDB_LIBS=`$PKG_CONFIG --[]libs "libcdb" 2>/dev/null`
- test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
-m4trace:configure.ac:560: -1- _PKG_SHORT_ERRORS_SUPPORTED
-m4trace:configure.ac:561: -1- m4_pattern_allow([^CDB_LIBS$])
-m4trace:configure.ac:562: -1- m4_pattern_allow([^CDB_CFLAGS$])
-m4trace:configure.ac:565: -1- AM_CONDITIONAL([SQLITE3], [test "$needsqlite3"])
-m4trace:configure.ac:565: -1- m4_pattern_allow([^SQLITE3_TRUE$])
-m4trace:configure.ac:565: -1- m4_pattern_allow([^SQLITE3_FALSE$])
-m4trace:configure.ac:565: -1- _AM_SUBST_NOTMAKE([SQLITE3_TRUE])
-m4trace:configure.ac:565: -1- _AM_SUBST_NOTMAKE([SQLITE3_FALSE])
-m4trace:configure.ac:603: -1- m4_pattern_allow([^UNIXODBC_lib$])
-m4trace:configure.ac:621: -1- m4_pattern_allow([^UNIXODBC_incdir$])
-m4trace:configure.ac:655: -1- m4_pattern_allow([^LIBS$])
-m4trace:configure.ac:659: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
+configure.ac:176: the top level])
+m4trace:configure.ac:181: -1- AM_CONDITIONAL([HAVE_LIBPOLARSSL], [false])
+m4trace:configure.ac:181: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL_TRUE$])
+m4trace:configure.ac:181: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL_FALSE$])
+m4trace:configure.ac:181: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPOLARSSL_TRUE])
+m4trace:configure.ac:181: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPOLARSSL_FALSE])
+m4trace:configure.ac:198: -1- m4_pattern_allow([^HAVE_LIBPOLARSSL$])
+m4trace:configure.ac:205: -1- AM_CONDITIONAL([BOTAN110], [test x"$enable_botan110" = "xyes"])
+m4trace:configure.ac:205: -1- m4_pattern_allow([^BOTAN110_TRUE$])
+m4trace:configure.ac:205: -1- m4_pattern_allow([^BOTAN110_FALSE$])
+m4trace:configure.ac:205: -1- _AM_SUBST_NOTMAKE([BOTAN110_TRUE])
+m4trace:configure.ac:205: -1- _AM_SUBST_NOTMAKE([BOTAN110_FALSE])
+m4trace:configure.ac:211: -1- AM_CONDITIONAL([BOTAN18], [test x"$enable_botan18" = "xyes"])
+m4trace:configure.ac:211: -1- m4_pattern_allow([^BOTAN18_TRUE$])
+m4trace:configure.ac:211: -1- m4_pattern_allow([^BOTAN18_FALSE$])
+m4trace:configure.ac:211: -1- _AM_SUBST_NOTMAKE([BOTAN18_TRUE])
+m4trace:configure.ac:211: -1- _AM_SUBST_NOTMAKE([BOTAN18_FALSE])
+m4trace:configure.ac:217: -1- AM_CONDITIONAL([CRYPTOPP], [test x"$enable_cryptopp" = "xyes"])
+m4trace:configure.ac:217: -1- m4_pattern_allow([^CRYPTOPP_TRUE$])
+m4trace:configure.ac:217: -1- m4_pattern_allow([^CRYPTOPP_FALSE$])
+m4trace:configure.ac:217: -1- _AM_SUBST_NOTMAKE([CRYPTOPP_TRUE])
+m4trace:configure.ac:217: -1- _AM_SUBST_NOTMAKE([CRYPTOPP_FALSE])
+m4trace:configure.ac:221: -1- PKG_CHECK_MODULES([BOTAN110], [botan-1.10], [HAVE_BOTAN110=yes], [as_fn_error $? "+Could not find botan 1.10" "$LINENO" 5])
+m4trace:configure.ac:221: -1- m4_pattern_allow([^BOTAN110_CFLAGS$])
+m4trace:configure.ac:221: -1- m4_pattern_allow([^BOTAN110_LIBS$])
+m4trace:configure.ac:221: -1- PKG_CHECK_EXISTS([botan-1.10], [pkg_cv_[]BOTAN110_CFLAGS=`$PKG_CONFIG --[]cflags "botan-1.10" 2>/dev/null`
+ test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
+m4trace:configure.ac:221: -1- PKG_CHECK_EXISTS([botan-1.10], [pkg_cv_[]BOTAN110_LIBS=`$PKG_CONFIG --[]libs "botan-1.10" 2>/dev/null`
+ test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
+m4trace:configure.ac:221: -1- _PKG_SHORT_ERRORS_SUPPORTED
+m4trace:configure.ac:222: -1- m4_pattern_allow([^BOTAN110_LIBS$])
+m4trace:configure.ac:223: -1- m4_pattern_allow([^BOTAN110_CFLAGS$])
+m4trace:configure.ac:224: -1- m4_pattern_allow([^HAVE_BOTAN110$])
+m4trace:configure.ac:229: -1- PKG_CHECK_MODULES([BOTAN18], [botan-1.8], [HAVE_BOTAN18=yes], [as_fn_error $? "+Could not find botan 1.8" "$LINENO" 5])
+m4trace:configure.ac:229: -1- m4_pattern_allow([^BOTAN18_CFLAGS$])
+m4trace:configure.ac:229: -1- m4_pattern_allow([^BOTAN18_LIBS$])
+m4trace:configure.ac:229: -1- PKG_CHECK_EXISTS([botan-1.8], [pkg_cv_[]BOTAN18_CFLAGS=`$PKG_CONFIG --[]cflags "botan-1.8" 2>/dev/null`
+ test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
+m4trace:configure.ac:229: -1- PKG_CHECK_EXISTS([botan-1.8], [pkg_cv_[]BOTAN18_LIBS=`$PKG_CONFIG --[]libs "botan-1.8" 2>/dev/null`
+ test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
+m4trace:configure.ac:229: -1- _PKG_SHORT_ERRORS_SUPPORTED
+m4trace:configure.ac:230: -1- m4_pattern_allow([^BOTAN18_LIBS$])
+m4trace:configure.ac:231: -1- m4_pattern_allow([^BOTAN18_CFLAGS$])
+m4trace:configure.ac:232: -1- m4_pattern_allow([^HAVE_BOTAN18$])
+m4trace:configure.ac:246: -1- AM_CONDITIONAL([ALLSTATIC], [test x$static = xtrue])
+m4trace:configure.ac:246: -1- m4_pattern_allow([^ALLSTATIC_TRUE$])
+m4trace:configure.ac:246: -1- m4_pattern_allow([^ALLSTATIC_FALSE$])
+m4trace:configure.ac:246: -1- _AM_SUBST_NOTMAKE([ALLSTATIC_TRUE])
+m4trace:configure.ac:246: -1- _AM_SUBST_NOTMAKE([ALLSTATIC_FALSE])
+m4trace:configure.ac:269: -1- m4_pattern_allow([^socketdir$])
+m4trace:configure.ac:276: -1- m4_pattern_allow([^moduledirs$])
+m4trace:configure.ac:277: -1- m4_pattern_allow([^moduleobjects$])
+m4trace:configure.ac:278: -1- m4_pattern_allow([^modulelibs$])
+m4trace:configure.ac:293: -1- m4_pattern_allow([^programdescend$])
+m4trace:configure.ac:297: -2- m4_pattern_allow([^GCC_SKIP_LOCKING$])
+m4trace:configure.ac:307: -1- AM_CONDITIONAL([RECURSOR], [test x"$enable_recursor" = "xyes"])
+m4trace:configure.ac:307: -1- m4_pattern_allow([^RECURSOR_TRUE$])
+m4trace:configure.ac:307: -1- m4_pattern_allow([^RECURSOR_FALSE$])
+m4trace:configure.ac:307: -1- _AM_SUBST_NOTMAKE([RECURSOR_TRUE])
+m4trace:configure.ac:307: -1- _AM_SUBST_NOTMAKE([RECURSOR_FALSE])
+m4trace:configure.ac:328: -1- m4_pattern_allow([^HAVE_LDAP_H$])
+m4trace:configure.ac:329: -1- m4_pattern_allow([^HAVE_LBER_H$])
+m4trace:configure.ac:330: -1- m4_pattern_allow([^LIBLDAP$])
+m4trace:configure.ac:331: -1- m4_pattern_allow([^HAVE_LIBLDAP_R$])
+m4trace:configure.ac:331: -1- m4_pattern_allow([^HAVE_LIBLDAP$])
+m4trace:configure.ac:340: -1- m4_pattern_allow([^HAVE_LDAP_INITIALIZE$])
+m4trace:configure.ac:344: -1- m4_pattern_allow([^HAVE_LDAP_SASL_BIND$])
+m4trace:configure.ac:353: -1- m4_pattern_allow([^HAVE_ODBX_H$])
+m4trace:configure.ac:354: -1- m4_pattern_allow([^LIBOPENDBX$])
+m4trace:configure.ac:355: -1- m4_pattern_allow([^HAVE_LIBOPENDBX$])
+m4trace:configure.ac:404: -1- m4_pattern_allow([^MYSQL_lib$])
+m4trace:configure.ac:425: -1- m4_pattern_allow([^MYSQL_incdir$])
+m4trace:configure.ac:469: -1- m4_pattern_allow([^PGSQL_lib$])
+m4trace:configure.ac:487: -1- m4_pattern_allow([^PGSQL_incdir$])
+m4trace:configure.ac:493: -1- PKG_CHECK_MODULES([SQLITE3], [$SQLITE3PC], [HAVE_SQLITE3=yes], [as_fn_error $? "+Could not find sqlite3" "$LINENO" 5])
+m4trace:configure.ac:493: -1- m4_pattern_allow([^SQLITE3_CFLAGS$])
+m4trace:configure.ac:493: -1- m4_pattern_allow([^SQLITE3_LIBS$])
+m4trace:configure.ac:493: -1- PKG_CHECK_EXISTS([$SQLITE3PC], [pkg_cv_[]SQLITE3_CFLAGS=`$PKG_CONFIG --[]cflags "$SQLITE3PC" 2>/dev/null`
+ test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
+m4trace:configure.ac:493: -1- PKG_CHECK_EXISTS([$SQLITE3PC], [pkg_cv_[]SQLITE3_LIBS=`$PKG_CONFIG --[]libs "$SQLITE3PC" 2>/dev/null`
+ test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
+m4trace:configure.ac:493: -1- _PKG_SHORT_ERRORS_SUPPORTED
+m4trace:configure.ac:494: -1- m4_pattern_allow([^SQLITE3_LIBS$])
+m4trace:configure.ac:495: -1- m4_pattern_allow([^SQLITE3_CFLAGS$])
+m4trace:configure.ac:496: -1- m4_pattern_allow([^HAVE_SQLITE3$])
+m4trace:configure.ac:501: -1- PKG_CHECK_MODULES([CDB], [libcdb], [HAVE_CDB=yes], [as_fn_error $? "+Could not find libcdb/tinycdb" "$LINENO" 5])
+m4trace:configure.ac:501: -1- m4_pattern_allow([^CDB_CFLAGS$])
+m4trace:configure.ac:501: -1- m4_pattern_allow([^CDB_LIBS$])
+m4trace:configure.ac:501: -1- PKG_CHECK_EXISTS([libcdb], [pkg_cv_[]CDB_CFLAGS=`$PKG_CONFIG --[]cflags "libcdb" 2>/dev/null`
+ test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
+m4trace:configure.ac:501: -1- PKG_CHECK_EXISTS([libcdb], [pkg_cv_[]CDB_LIBS=`$PKG_CONFIG --[]libs "libcdb" 2>/dev/null`
+ test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
+m4trace:configure.ac:501: -1- _PKG_SHORT_ERRORS_SUPPORTED
+m4trace:configure.ac:502: -1- m4_pattern_allow([^CDB_LIBS$])
+m4trace:configure.ac:503: -1- m4_pattern_allow([^CDB_CFLAGS$])
+m4trace:configure.ac:506: -1- AM_CONDITIONAL([SQLITE3], [test "$needsqlite3"])
+m4trace:configure.ac:506: -1- m4_pattern_allow([^SQLITE3_TRUE$])
+m4trace:configure.ac:506: -1- m4_pattern_allow([^SQLITE3_FALSE$])
+m4trace:configure.ac:506: -1- _AM_SUBST_NOTMAKE([SQLITE3_TRUE])
+m4trace:configure.ac:506: -1- _AM_SUBST_NOTMAKE([SQLITE3_FALSE])
+m4trace:configure.ac:544: -1- m4_pattern_allow([^UNIXODBC_lib$])
+m4trace:configure.ac:562: -1- m4_pattern_allow([^UNIXODBC_incdir$])
+m4trace:configure.ac:596: -1- m4_pattern_allow([^LIBS$])
+m4trace:configure.ac:600: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
You should run autoupdate.], [])
-m4trace:configure.ac:659: -1- m4_pattern_allow([^LIB@&t@OBJS$])
-m4trace:configure.ac:659: -1- m4_pattern_allow([^LTLIBOBJS$])
-m4trace:configure.ac:659: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
-m4trace:configure.ac:659: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
-m4trace:configure.ac:659: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
-m4trace:configure.ac:659: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
-m4trace:configure.ac:659: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
-m4trace:configure.ac:659: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
-m4trace:configure.ac:659: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
-m4trace:configure.ac:659: -1- _LT_PROG_LTMAIN
+m4trace:configure.ac:600: -1- m4_pattern_allow([^LIB@&t@OBJS$])
+m4trace:configure.ac:600: -1- m4_pattern_allow([^LTLIBOBJS$])
+m4trace:configure.ac:600: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
+m4trace:configure.ac:600: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
+m4trace:configure.ac:600: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
+m4trace:configure.ac:600: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
+m4trace:configure.ac:600: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
+m4trace:configure.ac:600: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
+m4trace:configure.ac:600: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
+m4trace:configure.ac:600: -1- _LT_PROG_LTMAIN
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/build-scripts/rpm-build-instruction
^
|
@@ -1,7 +1,7 @@
#!/bin/sh
#LIBS="-lkrb5 -lk5crypto -lpgport -lgssapi_krb5 -lkrb5support -lgssapi_krb5 -lcom_err -lnsl -lresolv" \
CC="ccache gcc" CXX="ccache g++" CPPFLAGS=-I/usr/local/include/botan-1.10 ./configure \
- --with-modules="gmysql gpgsql gsqlite gsqlite3 pipe geo lua" \
+ --with-modules="gmysql gpgsql gsqlite3 pipe geo lua" \
--with-dynmodules="" \
--enable-static-binaries \
--with-pgsql-lib=/opt/postgresql/lib --with-pgsql-includes=/opt/postgresql/include \
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/build-scripts/tar-gz-build-instruction
^
|
@@ -2,6 +2,6 @@
./bootstrap &&
./configure \
--with-pgsql-lib=/opt/postgresql/lib --with-pgsql-includes=/opt/postgresql/include \
---with-modules="mydns gmysql mongodb lua gpgsql xdb pipe oracle pipe db2 ldap gsqlite gsqlite3 geo goracle opendbx godbc" \
+--with-modules="mydns gmysql mongodb lua gpgsql xdb pipe oracle pipe db2 ldap gsqlite3 geo goracle opendbx godbc" \
--with-dynmodules="" &&
make dist
\ No newline at end of file
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/codedocs/Makefile
^
|
@@ -144,13 +144,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/codedocs
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/codedocs/Makefile.in
^
|
@@ -144,8 +144,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/config.h
^
|
@@ -189,7 +189,7 @@
/* #undef VERBOSELOG */
/* Version number of package */
-#define VERSION "3.1"
+#define VERSION "3.2-pre"
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/config.log
^
|
@@ -58,37 +58,37 @@
## Core tests. ##
## ----------- ##
-configure:2676: checking for a BSD-compatible install
-configure:2744: result: /usr/bin/install -c
-configure:2755: checking whether build environment is sane
-configure:2805: result: yes
-configure:2946: checking for a thread-safe mkdir -p
-configure:2985: result: /bin/mkdir -p
-configure:2998: checking for gawk
-configure:3028: result: no
-configure:2998: checking for mawk
-configure:3014: found /usr/bin/mawk
-configure:3025: result: mawk
-configure:3036: checking whether make sets $(MAKE)
-configure:3058: result: yes
-configure:3142: checking build system type
-configure:3156: result: x86_64-unknown-linux-gnu
-configure:3176: checking host system type
-configure:3189: result: x86_64-unknown-linux-gnu
-configure:3223: checking for style of include used by make
-configure:3251: result: GNU
-configure:3322: checking for gcc
-configure:3338: found /usr/bin/gcc
-configure:3349: result: gcc
-configure:3578: checking for C compiler version
-configure:3587: gcc --version >&5
+configure:2667: checking for a BSD-compatible install
+configure:2735: result: /usr/bin/install -c
+configure:2746: checking whether build environment is sane
+configure:2796: result: yes
+configure:2937: checking for a thread-safe mkdir -p
+configure:2976: result: /bin/mkdir -p
+configure:2989: checking for gawk
+configure:3019: result: no
+configure:2989: checking for mawk
+configure:3005: found /usr/bin/mawk
+configure:3016: result: mawk
+configure:3027: checking whether make sets $(MAKE)
+configure:3049: result: yes
+configure:3133: checking build system type
+configure:3147: result: x86_64-unknown-linux-gnu
+configure:3167: checking host system type
+configure:3180: result: x86_64-unknown-linux-gnu
+configure:3214: checking for style of include used by make
+configure:3242: result: GNU
+configure:3313: checking for gcc
+configure:3329: found /usr/bin/gcc
+configure:3340: result: gcc
+configure:3569: checking for C compiler version
+configure:3578: gcc --version >&5
gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-configure:3598: $? = 0
-configure:3587: gcc -v >&5
+configure:3589: $? = 0
+configure:3578: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6/lto-wrapper
@@ -96,58 +96,58 @@
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
-configure:3598: $? = 0
-configure:3587: gcc -V >&5
+configure:3589: $? = 0
+configure:3578: gcc -V >&5
gcc: error: unrecognized option '-V'
gcc: fatal error: no input files
compilation terminated.
-configure:3598: $? = 4
-configure:3587: gcc -qversion >&5
+configure:3589: $? = 4
+configure:3578: gcc -qversion >&5
gcc: error: unrecognized option '-qversion'
gcc: fatal error: no input files
compilation terminated.
-configure:3598: $? = 4
-configure:3618: checking whether the C compiler works
-configure:3640: gcc conftest.c >&5
-configure:3644: $? = 0
-configure:3692: result: yes
-configure:3695: checking for C compiler default output file name
-configure:3697: result: a.out
-configure:3703: checking for suffix of executables
-configure:3710: gcc -o conftest conftest.c >&5
-configure:3714: $? = 0
-configure:3736: result:
-configure:3758: checking whether we are cross compiling
-configure:3766: gcc -o conftest conftest.c >&5
-configure:3770: $? = 0
-configure:3777: ./conftest
-configure:3781: $? = 0
-configure:3796: result: no
-configure:3801: checking for suffix of object files
-configure:3823: gcc -c conftest.c >&5
-configure:3827: $? = 0
-configure:3848: result: o
-configure:3852: checking whether we are using the GNU C compiler
-configure:3871: gcc -c conftest.c >&5
-configure:3871: $? = 0
-configure:3880: result: yes
-configure:3889: checking whether gcc accepts -g
-configure:3909: gcc -c -g conftest.c >&5
-configure:3909: $? = 0
-configure:3950: result: yes
-configure:3967: checking for gcc option to accept ISO C89
-configure:4031: gcc -c -g -O2 conftest.c >&5
-configure:4031: $? = 0
-configure:4044: result: none needed
-configure:4066: checking dependency style of gcc
-configure:4177: result: gcc3
-configure:4198: checking how to run the C preprocessor
-configure:4229: gcc -E conftest.c
-configure:4229: $? = 0
-configure:4243: gcc -E conftest.c
+configure:3589: $? = 4
+configure:3609: checking whether the C compiler works
+configure:3631: gcc conftest.c >&5
+configure:3635: $? = 0
+configure:3683: result: yes
+configure:3686: checking for C compiler default output file name
+configure:3688: result: a.out
+configure:3694: checking for suffix of executables
+configure:3701: gcc -o conftest conftest.c >&5
+configure:3705: $? = 0
+configure:3727: result:
+configure:3749: checking whether we are cross compiling
+configure:3757: gcc -o conftest conftest.c >&5
+configure:3761: $? = 0
+configure:3768: ./conftest
+configure:3772: $? = 0
+configure:3787: result: no
+configure:3792: checking for suffix of object files
+configure:3814: gcc -c conftest.c >&5
+configure:3818: $? = 0
+configure:3839: result: o
+configure:3843: checking whether we are using the GNU C compiler
+configure:3862: gcc -c conftest.c >&5
+configure:3862: $? = 0
+configure:3871: result: yes
+configure:3880: checking whether gcc accepts -g
+configure:3900: gcc -c -g conftest.c >&5
+configure:3900: $? = 0
+configure:3941: result: yes
+configure:3958: checking for gcc option to accept ISO C89
+configure:4022: gcc -c -g -O2 conftest.c >&5
+configure:4022: $? = 0
+configure:4035: result: none needed
+configure:4057: checking dependency style of gcc
+configure:4168: result: gcc3
+configure:4189: checking how to run the C preprocessor
+configure:4220: gcc -E conftest.c
+configure:4220: $? = 0
+configure:4234: gcc -E conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
-configure:4243: $? = 1
+configure:4234: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -157,16 +157,16 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
-configure:4268: result: gcc -E
-configure:4288: gcc -E conftest.c
-configure:4288: $? = 0
-configure:4302: gcc -E conftest.c
+configure:4259: result: gcc -E
+configure:4279: gcc -E conftest.c
+configure:4279: $? = 0
+configure:4293: gcc -E conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
-configure:4302: $? = 1
+configure:4293: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -176,63 +176,63 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
-configure:4331: checking for grep that handles long lines and -e
-configure:4389: result: /bin/grep
-configure:4394: checking for egrep
-configure:4456: result: /bin/grep -E
-configure:4461: checking for ANSI C header files
-configure:4481: gcc -c -g -O2 conftest.c >&5
-configure:4481: $? = 0
-configure:4554: gcc -o conftest -g -O2 conftest.c >&5
-configure:4554: $? = 0
-configure:4554: ./conftest
-configure:4554: $? = 0
-configure:4565: result: yes
-configure:4578: checking for sys/types.h
-configure:4578: gcc -c -g -O2 conftest.c >&5
-configure:4578: $? = 0
-configure:4578: result: yes
-configure:4578: checking for sys/stat.h
-configure:4578: gcc -c -g -O2 conftest.c >&5
-configure:4578: $? = 0
-configure:4578: result: yes
-configure:4578: checking for stdlib.h
-configure:4578: gcc -c -g -O2 conftest.c >&5
-configure:4578: $? = 0
-configure:4578: result: yes
-configure:4578: checking for string.h
-configure:4578: gcc -c -g -O2 conftest.c >&5
-configure:4578: $? = 0
-configure:4578: result: yes
-configure:4578: checking for memory.h
-configure:4578: gcc -c -g -O2 conftest.c >&5
-configure:4578: $? = 0
-configure:4578: result: yes
-configure:4578: checking for strings.h
-configure:4578: gcc -c -g -O2 conftest.c >&5
-configure:4578: $? = 0
-configure:4578: result: yes
-configure:4578: checking for inttypes.h
-configure:4578: gcc -c -g -O2 conftest.c >&5
-configure:4578: $? = 0
-configure:4578: result: yes
-configure:4578: checking for stdint.h
-configure:4578: gcc -c -g -O2 conftest.c >&5
-configure:4578: $? = 0
-configure:4578: result: yes
-configure:4578: checking for unistd.h
-configure:4578: gcc -c -g -O2 conftest.c >&5
-configure:4578: $? = 0
-configure:4578: result: yes
-configure:4590: checking whether byte ordering is bigendian
-configure:4605: gcc -c -g -O2 conftest.c >&5
+configure:4322: checking for grep that handles long lines and -e
+configure:4380: result: /bin/grep
+configure:4385: checking for egrep
+configure:4447: result: /bin/grep -E
+configure:4452: checking for ANSI C header files
+configure:4472: gcc -c -g -O2 conftest.c >&5
+configure:4472: $? = 0
+configure:4545: gcc -o conftest -g -O2 conftest.c >&5
+configure:4545: $? = 0
+configure:4545: ./conftest
+configure:4545: $? = 0
+configure:4556: result: yes
+configure:4569: checking for sys/types.h
+configure:4569: gcc -c -g -O2 conftest.c >&5
+configure:4569: $? = 0
+configure:4569: result: yes
+configure:4569: checking for sys/stat.h
+configure:4569: gcc -c -g -O2 conftest.c >&5
+configure:4569: $? = 0
+configure:4569: result: yes
+configure:4569: checking for stdlib.h
+configure:4569: gcc -c -g -O2 conftest.c >&5
+configure:4569: $? = 0
+configure:4569: result: yes
+configure:4569: checking for string.h
+configure:4569: gcc -c -g -O2 conftest.c >&5
+configure:4569: $? = 0
+configure:4569: result: yes
+configure:4569: checking for memory.h
+configure:4569: gcc -c -g -O2 conftest.c >&5
+configure:4569: $? = 0
+configure:4569: result: yes
+configure:4569: checking for strings.h
+configure:4569: gcc -c -g -O2 conftest.c >&5
+configure:4569: $? = 0
+configure:4569: result: yes
+configure:4569: checking for inttypes.h
+configure:4569: gcc -c -g -O2 conftest.c >&5
+configure:4569: $? = 0
+configure:4569: result: yes
+configure:4569: checking for stdint.h
+configure:4569: gcc -c -g -O2 conftest.c >&5
+configure:4569: $? = 0
+configure:4569: result: yes
+configure:4569: checking for unistd.h
+configure:4569: gcc -c -g -O2 conftest.c >&5
+configure:4569: $? = 0
+configure:4569: result: yes
+configure:4581: checking whether byte ordering is bigendian
+configure:4596: gcc -c -g -O2 conftest.c >&5
conftest.c:22:9: error: unknown type name 'not'
conftest.c:22:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
conftest.c:22:15: error: unknown type name 'universal'
-configure:4605: $? = 1
+configure:4596: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -242,7 +242,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -259,13 +259,13 @@
| #endif
| typedef int dummy;
|
-configure:4650: gcc -c -g -O2 conftest.c >&5
-configure:4650: $? = 0
-configure:4668: gcc -c -g -O2 conftest.c >&5
+configure:4641: gcc -c -g -O2 conftest.c >&5
+configure:4641: $? = 0
+configure:4659: gcc -c -g -O2 conftest.c >&5
conftest.c: In function 'main':
conftest.c:28:4: error: unknown type name 'not'
conftest.c:28:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
-configure:4668: $? = 1
+configure:4659: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -275,7 +275,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -300,18 +300,18 @@
| ;
| return 0;
| }
-configure:4796: result: no
-configure:4865: checking for gcc
-configure:4892: result: gcc
-configure:5121: checking for C compiler version
-configure:5130: gcc --version >&5
+configure:4787: result: no
+configure:4856: checking for gcc
+configure:4883: result: gcc
+configure:5112: checking for C compiler version
+configure:5121: gcc --version >&5
gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-configure:5141: $? = 0
-configure:5130: gcc -v >&5
+configure:5132: $? = 0
+configure:5121: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6/lto-wrapper
@@ -319,37 +319,37 @@
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
-configure:5141: $? = 0
-configure:5130: gcc -V >&5
+configure:5132: $? = 0
+configure:5121: gcc -V >&5
gcc: error: unrecognized option '-V'
gcc: fatal error: no input files
compilation terminated.
-configure:5141: $? = 4
-configure:5130: gcc -qversion >&5
+configure:5132: $? = 4
+configure:5121: gcc -qversion >&5
gcc: error: unrecognized option '-qversion'
gcc: fatal error: no input files
compilation terminated.
-configure:5141: $? = 4
-configure:5145: checking whether we are using the GNU C compiler
-configure:5173: result: yes
-configure:5182: checking whether gcc accepts -g
-configure:5243: result: yes
-configure:5260: checking for gcc option to accept ISO C89
-configure:5337: result: none needed
-configure:5359: checking dependency style of gcc
-configure:5470: result: gcc3
-configure:5543: checking for g++
-configure:5559: found /usr/bin/g++
-configure:5570: result: g++
-configure:5597: checking for C++ compiler version
-configure:5606: g++ --version >&5
+configure:5132: $? = 4
+configure:5136: checking whether we are using the GNU C compiler
+configure:5164: result: yes
+configure:5173: checking whether gcc accepts -g
+configure:5234: result: yes
+configure:5251: checking for gcc option to accept ISO C89
+configure:5328: result: none needed
+configure:5350: checking dependency style of gcc
+configure:5461: result: gcc3
+configure:5534: checking for g++
+configure:5550: found /usr/bin/g++
+configure:5561: result: g++
+configure:5588: checking for C++ compiler version
+configure:5597: g++ --version >&5
g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-configure:5617: $? = 0
-configure:5606: g++ -v >&5
+configure:5608: $? = 0
+configure:5597: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6/lto-wrapper
@@ -357,59 +357,59 @@
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
-configure:5617: $? = 0
-configure:5606: g++ -V >&5
+configure:5608: $? = 0
+configure:5597: g++ -V >&5
g++: error: unrecognized option '-V'
g++: fatal error: no input files
compilation terminated.
-configure:5617: $? = 4
-configure:5606: g++ -qversion >&5
+configure:5608: $? = 4
+configure:5597: g++ -qversion >&5
g++: error: unrecognized option '-qversion'
g++: fatal error: no input files
compilation terminated.
-configure:5617: $? = 4
-configure:5621: checking whether we are using the GNU C++ compiler
-configure:5640: g++ -c -Wall -O2 conftest.cpp >&5
-configure:5640: $? = 0
-configure:5649: result: yes
-configure:5658: checking whether g++ accepts -g
-configure:5678: g++ -c -g conftest.cpp >&5
-configure:5678: $? = 0
-configure:5719: result: yes
-configure:5744: checking dependency style of g++
-configure:5855: result: gcc3
-configure:5871: checking whether gcc and cc understand -c and -o together
-configure:5902: gcc -c conftest.c -o conftest2.o >&5
-configure:5906: $? = 0
-configure:5912: gcc -c conftest.c -o conftest2.o >&5
-configure:5916: $? = 0
-configure:5927: cc -c conftest.c >&5
-configure:5931: $? = 0
-configure:5939: cc -c conftest.c -o conftest2.o >&5
-configure:5943: $? = 0
-configure:5949: cc -c conftest.c -o conftest2.o >&5
-configure:5953: $? = 0
-configure:5971: result: yes
-configure:6000: checking for bison
-configure:6016: found /usr/bin/bison
-configure:6027: result: bison -y
-configure:6043: checking for flex
-configure:6059: found /usr/bin/flex
-configure:6070: result: flex
-configure:6107: flex conftest.l
-configure:6111: $? = 0
-configure:6113: checking lex output file root
-configure:6127: result: lex.yy
-configure:6132: checking lex library
-configure:6146: gcc -o conftest -g -O2 conftest.c >&5
-/tmp/ccbIJYFf.o: In function `input':
+configure:5608: $? = 4
+configure:5612: checking whether we are using the GNU C++ compiler
+configure:5631: g++ -c -Wall -O2 conftest.cpp >&5
+configure:5631: $? = 0
+configure:5640: result: yes
+configure:5649: checking whether g++ accepts -g
+configure:5669: g++ -c -g conftest.cpp >&5
+configure:5669: $? = 0
+configure:5710: result: yes
+configure:5735: checking dependency style of g++
+configure:5846: result: gcc3
+configure:5862: checking whether gcc and cc understand -c and -o together
+configure:5893: gcc -c conftest.c -o conftest2.o >&5
+configure:5897: $? = 0
+configure:5903: gcc -c conftest.c -o conftest2.o >&5
+configure:5907: $? = 0
+configure:5918: cc -c conftest.c >&5
+configure:5922: $? = 0
+configure:5930: cc -c conftest.c -o conftest2.o >&5
+configure:5934: $? = 0
+configure:5940: cc -c conftest.c -o conftest2.o >&5
+configure:5944: $? = 0
+configure:5962: result: yes
+configure:5991: checking for bison
+configure:6007: found /usr/bin/bison
+configure:6018: result: bison -y
+configure:6034: checking for flex
+configure:6050: found /usr/bin/flex
+configure:6061: result: flex
+configure:6098: flex conftest.l
+configure:6102: $? = 0
+configure:6104: checking lex output file root
+configure:6118: result: lex.yy
+configure:6123: checking lex library
+configure:6137: gcc -o conftest -g -O2 conftest.c >&5
+/tmp/ccI2urEJ.o: In function `input':
/home/oliver/src/svn/pdns-3.1/lex.yy.c:1182: undefined reference to `yywrap'
-/tmp/ccbIJYFf.o: In function `yylex':
+/tmp/ccI2urEJ.o: In function `yylex':
/home/oliver/src/svn/pdns-3.1/lex.yy.c:881: undefined reference to `yywrap'
-/tmp/ccbIJYFf.o: In function `main':
+/tmp/ccI2urEJ.o: In function `main':
/home/oliver/src/svn/pdns-3.1/conftest.l:17: undefined reference to `yywrap'
collect2: ld returned 1 exit status
-configure:6146: $? = 1
+configure:6137: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -419,7 +419,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2216,146 +2216,146 @@
| {
| return ! yylex () + ! yywrap ();
| }
-configure:6146: gcc -o conftest -g -O2 conftest.c -lfl >&5
-configure:6146: $? = 0
-configure:6156: result: -lfl
-configure:6162: checking whether yytext is a pointer
-configure:6179: gcc -o conftest -g -O2 conftest.c -lfl >&5
-configure:6179: $? = 0
-configure:6187: result: yes
-configure:6201: checking whether make sets $(MAKE)
-configure:6223: result: yes
-configure:6278: checking how to print strings
-configure:6305: result: printf
-configure:6326: checking for a sed that does not truncate output
-configure:6390: result: /bin/sed
-configure:6408: checking for fgrep
-configure:6470: result: /bin/grep -F
-configure:6505: checking for ld used by gcc
-configure:6572: result: /usr/bin/ld
-configure:6579: checking if the linker (/usr/bin/ld) is GNU ld
-configure:6594: result: yes
-configure:6606: checking for BSD- or MS-compatible name lister (nm)
-configure:6655: result: /usr/bin/nm -B
-configure:6785: checking the name lister (/usr/bin/nm -B) interface
-configure:6792: gcc -c -g -O2 conftest.c >&5
-configure:6795: /usr/bin/nm -B "conftest.o"
-configure:6798: output
+configure:6137: gcc -o conftest -g -O2 conftest.c -lfl >&5
+configure:6137: $? = 0
+configure:6147: result: -lfl
+configure:6153: checking whether yytext is a pointer
+configure:6170: gcc -o conftest -g -O2 conftest.c -lfl >&5
+configure:6170: $? = 0
+configure:6178: result: yes
+configure:6192: checking whether make sets $(MAKE)
+configure:6214: result: yes
+configure:6269: checking how to print strings
+configure:6296: result: printf
+configure:6317: checking for a sed that does not truncate output
+configure:6381: result: /bin/sed
+configure:6399: checking for fgrep
+configure:6461: result: /bin/grep -F
+configure:6496: checking for ld used by gcc
+configure:6563: result: /usr/bin/ld
+configure:6570: checking if the linker (/usr/bin/ld) is GNU ld
+configure:6585: result: yes
+configure:6597: checking for BSD- or MS-compatible name lister (nm)
+configure:6646: result: /usr/bin/nm -B
+configure:6776: checking the name lister (/usr/bin/nm -B) interface
+configure:6783: gcc -c -g -O2 conftest.c >&5
+configure:6786: /usr/bin/nm -B "conftest.o"
+configure:6789: output
0000000000000000 B some_variable
-configure:6805: result: BSD nm
-configure:6808: checking whether ln -s works
-configure:6812: result: yes
-configure:6820: checking the maximum length of command line arguments
-configure:6950: result: 3458764513820540925
-configure:6967: checking whether the shell understands some XSI constructs
-configure:6977: result: yes
-configure:6981: checking whether the shell understands "+="
-configure:6987: result: yes
-configure:7022: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format
-configure:7062: result: func_convert_file_noop
-configure:7069: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format
-configure:7089: result: func_convert_file_noop
-configure:7096: checking for /usr/bin/ld option to reload object files
-configure:7103: result: -r
-configure:7177: checking for objdump
-configure:7193: found /usr/bin/objdump
-configure:7204: result: objdump
-configure:7236: checking how to recognize dependent libraries
-configure:7438: result: pass_all
-configure:7523: checking for dlltool
-configure:7553: result: no
-configure:7583: checking how to associate runtime and link libraries
-configure:7610: result: printf %s\n
-configure:7670: checking for ar
-configure:7686: found /usr/bin/ar
-configure:7697: result: ar
-configure:7734: checking for archiver @FILE support
-configure:7751: gcc -c -g -O2 conftest.c >&5
-configure:7751: $? = 0
-configure:7754: ar cru libconftest.a @conftest.lst >&5
-configure:7757: $? = 0
-configure:7762: ar cru libconftest.a @conftest.lst >&5
+configure:6796: result: BSD nm
+configure:6799: checking whether ln -s works
+configure:6803: result: yes
+configure:6811: checking the maximum length of command line arguments
+configure:6941: result: 3458764513820540925
+configure:6958: checking whether the shell understands some XSI constructs
+configure:6968: result: yes
+configure:6972: checking whether the shell understands "+="
+configure:6978: result: yes
+configure:7013: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format
+configure:7053: result: func_convert_file_noop
+configure:7060: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format
+configure:7080: result: func_convert_file_noop
+configure:7087: checking for /usr/bin/ld option to reload object files
+configure:7094: result: -r
+configure:7168: checking for objdump
+configure:7184: found /usr/bin/objdump
+configure:7195: result: objdump
+configure:7227: checking how to recognize dependent libraries
+configure:7429: result: pass_all
+configure:7514: checking for dlltool
+configure:7544: result: no
+configure:7574: checking how to associate runtime and link libraries
+configure:7601: result: printf %s\n
+configure:7661: checking for ar
+configure:7677: found /usr/bin/ar
+configure:7688: result: ar
+configure:7725: checking for archiver @FILE support
+configure:7742: gcc -c -g -O2 conftest.c >&5
+configure:7742: $? = 0
+configure:7745: ar cru libconftest.a @conftest.lst >&5
+configure:7748: $? = 0
+configure:7753: ar cru libconftest.a @conftest.lst >&5
ar: conftest.o: No such file or directory
-configure:7765: $? = 1
-configure:7777: result: @
-configure:7835: checking for strip
-configure:7851: found /usr/bin/strip
-configure:7862: result: strip
-configure:7934: checking for ranlib
-configure:7950: found /usr/bin/ranlib
-configure:7961: result: ranlib
-configure:8063: checking command to parse /usr/bin/nm -B output from gcc object
-configure:8183: gcc -c -g -O2 conftest.c >&5
-configure:8186: $? = 0
-configure:8190: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
-configure:8193: $? = 0
-configure:8259: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
-configure:8262: $? = 0
-configure:8300: result: ok
-configure:8337: checking for sysroot
-configure:8367: result: no
-configure:8444: gcc -c -g -O2 conftest.c >&5
-configure:8447: $? = 0
-configure:8623: checking for mt
-configure:8639: found /bin/mt
-configure:8650: result: mt
-configure:8673: checking if mt is a manifest tool
-configure:8679: mt '-?'
-configure:8687: result: no
-configure:9326: checking for dlfcn.h
-configure:9326: gcc -c -g -O2 conftest.c >&5
-configure:9326: $? = 0
-configure:9326: result: yes
-configure:9543: checking for objdir
-configure:9558: result: .libs
-configure:9829: checking if gcc supports -fno-rtti -fno-exceptions
-configure:9847: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
+configure:7756: $? = 1
+configure:7768: result: @
+configure:7826: checking for strip
+configure:7842: found /usr/bin/strip
+configure:7853: result: strip
+configure:7925: checking for ranlib
+configure:7941: found /usr/bin/ranlib
+configure:7952: result: ranlib
+configure:8054: checking command to parse /usr/bin/nm -B output from gcc object
+configure:8174: gcc -c -g -O2 conftest.c >&5
+configure:8177: $? = 0
+configure:8181: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
+configure:8184: $? = 0
+configure:8250: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
+configure:8253: $? = 0
+configure:8291: result: ok
+configure:8328: checking for sysroot
+configure:8358: result: no
+configure:8435: gcc -c -g -O2 conftest.c >&5
+configure:8438: $? = 0
+configure:8614: checking for mt
+configure:8630: found /bin/mt
+configure:8641: result: mt
+configure:8664: checking if mt is a manifest tool
+configure:8670: mt '-?'
+configure:8678: result: no
+configure:9317: checking for dlfcn.h
+configure:9317: gcc -c -g -O2 conftest.c >&5
+configure:9317: $? = 0
+configure:9317: result: yes
+configure:9534: checking for objdir
+configure:9549: result: .libs
+configure:9820: checking if gcc supports -fno-rtti -fno-exceptions
+configure:9838: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default]
-configure:9851: $? = 0
-configure:9864: result: no
-configure:10191: checking for gcc option to produce PIC
-configure:10198: result: -fPIC -DPIC
-configure:10206: checking if gcc PIC flag -fPIC -DPIC works
-configure:10224: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5
-configure:10228: $? = 0
-configure:10241: result: yes
-configure:10270: checking if gcc static flag -static works
-configure:10298: result: yes
-configure:10313: checking if gcc supports -c -o file.o
-configure:10334: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
-configure:10338: $? = 0
-configure:10360: result: yes
-configure:10368: checking if gcc supports -c -o file.o
-configure:10415: result: yes
-configure:10448: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
-configure:11605: result: yes
-configure:11642: checking whether -lc should be explicitly linked in
-configure:11650: gcc -c -g -O2 conftest.c >&5
-configure:11653: $? = 0
-configure:11668: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
-configure:11671: $? = 0
-configure:11685: result: no
-configure:11845: checking dynamic linker characteristics
-configure:12356: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5
-configure:12356: $? = 0
-configure:12590: result: GNU/Linux ld.so
-configure:12697: checking how to hardcode library paths into programs
-configure:12722: result: immediate
-configure:13262: checking whether stripping libraries is possible
-configure:13267: result: yes
-configure:13302: checking if libtool supports shared libraries
-configure:13304: result: yes
-configure:13307: checking whether to build shared libraries
-configure:13328: result: yes
-configure:13331: checking whether to build static libraries
-configure:13335: result: yes
-configure:13358: checking how to run the C++ preprocessor
-configure:13385: g++ -E conftest.cpp
-configure:13385: $? = 0
-configure:13399: g++ -E conftest.cpp
+configure:9842: $? = 0
+configure:9855: result: no
+configure:10182: checking for gcc option to produce PIC
+configure:10189: result: -fPIC -DPIC
+configure:10197: checking if gcc PIC flag -fPIC -DPIC works
+configure:10215: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5
+configure:10219: $? = 0
+configure:10232: result: yes
+configure:10261: checking if gcc static flag -static works
+configure:10289: result: yes
+configure:10304: checking if gcc supports -c -o file.o
+configure:10325: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
+configure:10329: $? = 0
+configure:10351: result: yes
+configure:10359: checking if gcc supports -c -o file.o
+configure:10406: result: yes
+configure:10439: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
+configure:11596: result: yes
+configure:11633: checking whether -lc should be explicitly linked in
+configure:11641: gcc -c -g -O2 conftest.c >&5
+configure:11644: $? = 0
+configure:11659: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
+configure:11662: $? = 0
+configure:11676: result: no
+configure:11836: checking dynamic linker characteristics
+configure:12347: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5
+configure:12347: $? = 0
+configure:12581: result: GNU/Linux ld.so
+configure:12688: checking how to hardcode library paths into programs
+configure:12713: result: immediate
+configure:13253: checking whether stripping libraries is possible
+configure:13258: result: yes
+configure:13293: checking if libtool supports shared libraries
+configure:13295: result: yes
+configure:13298: checking whether to build shared libraries
+configure:13319: result: yes
+configure:13322: checking whether to build static libraries
+configure:13326: result: yes
+configure:13349: checking how to run the C++ preprocessor
+configure:13376: g++ -E conftest.cpp
+configure:13376: $? = 0
+configure:13390: g++ -E conftest.cpp
conftest.cpp:24:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
-configure:13399: $? = 1
+configure:13390: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2365,7 +2365,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2381,13 +2381,13 @@
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
-configure:13424: result: g++ -E
-configure:13444: g++ -E conftest.cpp
-configure:13444: $? = 0
-configure:13458: g++ -E conftest.cpp
+configure:13415: result: g++ -E
+configure:13435: g++ -E conftest.cpp
+configure:13435: $? = 0
+configure:13449: g++ -E conftest.cpp
conftest.cpp:24:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
-configure:13458: $? = 1
+configure:13449: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2397,7 +2397,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2413,55 +2413,55 @@
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
-configure:13627: checking for ld used by g++
-configure:13694: result: /usr/bin/ld -m elf_x86_64
-configure:13701: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
-configure:13716: result: yes
-configure:13771: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
-configure:14776: result: yes
-configure:14812: g++ -c -Wall -O2 conftest.cpp >&5
-configure:14815: $? = 0
-configure:15335: checking for g++ option to produce PIC
-configure:15342: result: -fPIC -DPIC
-configure:15350: checking if g++ PIC flag -fPIC -DPIC works
-configure:15368: g++ -c -Wall -O2 -fPIC -DPIC -DPIC conftest.cpp >&5
-configure:15372: $? = 0
-configure:15385: result: yes
-configure:15408: checking if g++ static flag -static works
-configure:15436: result: yes
-configure:15448: checking if g++ supports -c -o file.o
-configure:15469: g++ -c -Wall -O2 -o out/conftest2.o conftest.cpp >&5
-configure:15473: $? = 0
-configure:15495: result: yes
-configure:15500: checking if g++ supports -c -o file.o
-configure:15547: result: yes
-configure:15577: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
-configure:15616: result: yes
-configure:15757: checking dynamic linker characteristics
-configure:16436: result: GNU/Linux ld.so
-configure:16489: checking how to hardcode library paths into programs
-configure:16514: result: immediate
+configure:13618: checking for ld used by g++
+configure:13685: result: /usr/bin/ld -m elf_x86_64
+configure:13692: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
+configure:13707: result: yes
+configure:13762: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
+configure:14767: result: yes
+configure:14803: g++ -c -Wall -O2 conftest.cpp >&5
+configure:14806: $? = 0
+configure:15326: checking for g++ option to produce PIC
+configure:15333: result: -fPIC -DPIC
+configure:15341: checking if g++ PIC flag -fPIC -DPIC works
+configure:15359: g++ -c -Wall -O2 -fPIC -DPIC -DPIC conftest.cpp >&5
+configure:15363: $? = 0
+configure:15376: result: yes
+configure:15399: checking if g++ static flag -static works
+configure:15427: result: yes
+configure:15439: checking if g++ supports -c -o file.o
+configure:15460: g++ -c -Wall -O2 -o out/conftest2.o conftest.cpp >&5
+configure:15464: $? = 0
+configure:15486: result: yes
+configure:15491: checking if g++ supports -c -o file.o
+configure:15538: result: yes
+configure:15568: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
+configure:15607: result: yes
+configure:15748: checking dynamic linker characteristics
+configure:16427: result: GNU/Linux ld.so
+configure:16480: checking how to hardcode library paths into programs
+configure:16505: result: immediate
configure: this is boost.m4 serial 12
-configure:16611: checking for Boost headers version >= 103400
-configure:16682: g++ -c -Wall -O2 conftest.cpp >&5
-configure:16682: $? = 0
-configure:16703: result: yes
-configure:16723: checking for Boost's header version
-configure:16741: result: 1_48
-configure:16764: checking boost/foreach.hpp usability
-configure:16764: g++ -c -Wall -O2 conftest.cpp >&5
-configure:16764: $? = 0
-configure:16764: result: yes
-configure:16764: checking boost/foreach.hpp presence
-configure:16764: g++ -E conftest.cpp
-configure:16764: $? = 0
-configure:16764: result: yes
-configure:16764: checking for boost/foreach.hpp
-configure:16764: result: yes
-configure:16783: checking for the toolset name used by Boost for g++
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16602: checking for Boost headers version >= 103400
+configure:16673: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16673: $? = 0
+configure:16694: result: yes
+configure:16714: checking for Boost's header version
+configure:16732: result: 1_48
+configure:16755: checking boost/foreach.hpp usability
+configure:16755: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16755: $? = 0
+configure:16755: result: yes
+configure:16755: checking boost/foreach.hpp presence
+configure:16755: g++ -E conftest.cpp
+configure:16755: $? = 0
+configure:16755: result: yes
+configure:16755: checking for boost/foreach.hpp
+configure:16755: result: yes
+configure:16774: checking for the toolset name used by Boost for g++
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 4 && __GNUC_MINOR__ == 3 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2471,7 +2471,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2502,9 +2502,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 4 && __GNUC_MINOR__ == 2 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2514,7 +2514,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2545,9 +2545,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 4 && __GNUC_MINOR__ == 1 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2557,7 +2557,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2588,9 +2588,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 4 && __GNUC_MINOR__ == 0 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2600,7 +2600,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2631,9 +2631,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 3 && !defined __ICC && (defined WIN32 || defined WINNT || defined _WIN32 || defined __WIN32 || defined __WIN32__ || defined __WINNT || defined __WINNT__)
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2643,7 +2643,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2674,9 +2674,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 3 && __GNUC_MINOR__ == 4 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2686,7 +2686,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2717,9 +2717,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 3 && __GNUC_MINOR__ == 3 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2729,7 +2729,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2760,9 +2760,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined _MSC_VER && _MSC_VER >= 1500
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2772,7 +2772,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2803,9 +2803,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined _MSC_VER && _MSC_VER == 1400
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2815,7 +2815,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2846,9 +2846,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 3 && __GNUC_MINOR__ == 2 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2858,7 +2858,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2889,9 +2889,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined _MSC_VER && _MSC_VER == 1310
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2901,7 +2901,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2932,9 +2932,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 3 && __GNUC_MINOR__ == 1 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2944,7 +2944,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -2975,9 +2975,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 3 && __GNUC_MINOR__ == 0 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -2987,7 +2987,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3018,9 +3018,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __BORLANDC__
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3030,7 +3030,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3061,11 +3061,11 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:27:49: error: operator "defined" requires an identifier
conftest.cpp:27:22: error: missing ')' in expression
conftest.cpp:30:3: error: #error defined __ICC && (defined __unix || defined )
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3075,7 +3075,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3106,9 +3106,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __ICL
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3118,7 +3118,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3149,9 +3149,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined _MSC_VER && _MSC_VER == 1300
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3161,7 +3161,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3192,9 +3192,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 4 && __GNUC_MINOR__ == 4 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3204,7 +3204,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3235,9 +3235,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __GNUC__ && __GNUC__ == 2 && __GNUC_MINOR__ == 95 && !defined __ICC
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3247,7 +3247,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3278,9 +3278,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __MWERKS__ && __MWERKS__ <= 0x32FF
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3290,7 +3290,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3321,9 +3321,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined _MSC_VER && _MSC_VER < 1300 && !defined UNDER_CE
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3333,7 +3333,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3364,9 +3364,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined _MSC_VER && _MSC_VER < 1300 && defined UNDER_CE
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3376,7 +3376,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3407,9 +3407,9 @@
| ;
| return 0;
| }
-configure:16855: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16846: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error defined __MWERKS__ && __MWERKS__ <= 0x31FF
-configure:16855: $? = 1
+configure:16846: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3419,7 +3419,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3450,11 +3450,11 @@
| ;
| return 0;
| }
-configure:16883: WARNING: could not figure out which toolset name to use for g++
-configure:16890: result:
-configure:16917: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16874: WARNING: could not figure out which toolset name to use for g++
+configure:16881: result:
+configure:16908: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp:30:3: error: #error MT not needed
-configure:16917: $? = 1
+configure:16908: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -3464,7 +3464,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -3495,613 +3495,613 @@
| ;
| return 0;
| }
-configure:16944: checking boost/program_options.hpp usability
-configure:16944: g++ -c -Wall -O2 conftest.cpp >&5
-configure:16944: $? = 0
-configure:16944: result: yes
-configure:16944: checking boost/program_options.hpp presence
-configure:16944: g++ -E conftest.cpp
-configure:16944: $? = 0
-configure:16944: result: yes
-configure:16944: checking for boost/program_options.hpp
-configure:16944: result: yes
-configure:16971: checking for the Boost program_options library
-configure:17013: g++ -c -Wall -O2 conftest.cpp >&5
-configure:17013: $? = 0
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--mt-1_48 >&5
+configure:16935: checking boost/program_options.hpp usability
+configure:16935: g++ -c -Wall -O2 conftest.cpp >&5
+configure:16935: $? = 0
+configure:16935: result: yes
+configure:16935: checking boost/program_options.hpp presence
+configure:16935: g++ -E conftest.cpp
+configure:16935: $? = 0
+configure:16935: result: yes
+configure:16935: checking for boost/program_options.hpp
+configure:16935: result: yes
+configure:16962: checking for the Boost program_options library
+configure:17004: g++ -c -Wall -O2 conftest.cpp >&5
+configure:17004: $? = 0
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--mt-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--mt-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--mt-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--mt-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--mt-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--mt-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--mt-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options--d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--mt >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--mt >&5
/usr/bin/ld: cannot find -lboost_program_options--mt
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--mt >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--mt >&5
/usr/bin/ld: cannot find -lboost_program_options--mt
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--mt >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--mt >&5
/usr/bin/ld: cannot find -lboost_program_options--mt
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--mt >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--mt >&5
/usr/bin/ld: cannot find -lboost_program_options--mt
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options- >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options- >&5
/usr/bin/ld: cannot find -lboost_program_options-
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options- >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options- >&5
/usr/bin/ld: cannot find -lboost_program_options-
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options- >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options- >&5
/usr/bin/ld: cannot find -lboost_program_options-
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options- >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options- >&5
/usr/bin/ld: cannot find -lboost_program_options-
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--mt-d >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--mt-d >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-d
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--mt-d >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--mt-d >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-d
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--mt-d >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--mt-d >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-d
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--mt-d >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--mt-d >&5
/usr/bin/ld: cannot find -lboost_program_options--mt-d
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--d >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options--d >&5
/usr/bin/ld: cannot find -lboost_program_options--d
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--d >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options--d >&5
/usr/bin/ld: cannot find -lboost_program_options--d
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--d >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options--d >&5
/usr/bin/ld: cannot find -lboost_program_options--d
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--d >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options--d >&5
/usr/bin/ld: cannot find -lboost_program_options--d
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options-mt-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options-mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-mt-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options-mt-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options-mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-mt-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options-mt-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options-mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-mt-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options-mt-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options-mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-mt-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options-mt-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options-mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-mt-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options-mt-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options-mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-mt-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options-mt-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options-mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-mt-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options-mt-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options-mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-mt-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_program_options-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_program_options-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options-d-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_program_options-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_program_options-d-1_48
collect2: ld returned 1 exit status
-configure:17079: $? = 1
-configure:17064: re-using the existing conftest.o
-configure:17070: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options-mt >&5
-configure:17079: $? = 0
-configure:17118: result: yes
-configure:17160: checking boost/archive/text_oarchive.hpp usability
-configure:17160: g++ -c -Wall -O2 conftest.cpp >&5
-configure:17160: $? = 0
-configure:17160: result: yes
-configure:17160: checking boost/archive/text_oarchive.hpp presence
-configure:17160: g++ -E conftest.cpp
-configure:17160: $? = 0
-configure:17160: result: yes
-configure:17160: checking for boost/archive/text_oarchive.hpp
-configure:17160: result: yes
-configure:17187: checking for the Boost serialization library
-configure:17230: g++ -c -Wall -O2 conftest.cpp >&5
-configure:17230: $? = 0
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--mt-1_48 >&5
+configure:17070: $? = 1
+configure:17055: re-using the existing conftest.o
+configure:17061: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_program_options-mt >&5
+configure:17070: $? = 0
+configure:17109: result: yes
+configure:17151: checking boost/archive/text_oarchive.hpp usability
+configure:17151: g++ -c -Wall -O2 conftest.cpp >&5
+configure:17151: $? = 0
+configure:17151: result: yes
+configure:17151: checking boost/archive/text_oarchive.hpp presence
+configure:17151: g++ -E conftest.cpp
+configure:17151: $? = 0
+configure:17151: result: yes
+configure:17151: checking for boost/archive/text_oarchive.hpp
+configure:17151: result: yes
+configure:17178: checking for the Boost serialization library
+configure:17221: g++ -c -Wall -O2 conftest.cpp >&5
+configure:17221: $? = 0
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--mt-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--mt-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--mt-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--mt-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--mt-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--mt-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--mt-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization--d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--mt >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--mt >&5
/usr/bin/ld: cannot find -lboost_serialization--mt
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--mt >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--mt >&5
/usr/bin/ld: cannot find -lboost_serialization--mt
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--mt >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--mt >&5
/usr/bin/ld: cannot find -lboost_serialization--mt
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--mt >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--mt >&5
/usr/bin/ld: cannot find -lboost_serialization--mt
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization- >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization- >&5
/usr/bin/ld: cannot find -lboost_serialization-
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization- >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization- >&5
/usr/bin/ld: cannot find -lboost_serialization-
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization- >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization- >&5
/usr/bin/ld: cannot find -lboost_serialization-
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization- >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization- >&5
/usr/bin/ld: cannot find -lboost_serialization-
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--mt-d >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--mt-d >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-d
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--mt-d >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--mt-d >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-d
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--mt-d >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--mt-d >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-d
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--mt-d >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--mt-d >&5
/usr/bin/ld: cannot find -lboost_serialization--mt-d
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--d >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization--d >&5
/usr/bin/ld: cannot find -lboost_serialization--d
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--d >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization--d >&5
/usr/bin/ld: cannot find -lboost_serialization--d
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--d >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization--d >&5
/usr/bin/ld: cannot find -lboost_serialization--d
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--d >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization--d >&5
/usr/bin/ld: cannot find -lboost_serialization--d
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization-mt-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization-mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-mt-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization-mt-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization-mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-mt-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization-mt-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization-mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-mt-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization-mt-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization-mt-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-mt-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization-mt-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization-mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-mt-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization-mt-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization-mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-mt-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization-mt-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization-mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-mt-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization-mt-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization-mt-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-mt-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/lib conftest.o -lboost_serialization-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib conftest.o -lboost_serialization-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization-d-1_48 >&5
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/lib64 conftest.o -lboost_serialization-d-1_48 >&5
/usr/bin/ld: cannot find -lboost_serialization-d-1_48
collect2: ld returned 1 exit status
-configure:17296: $? = 1
-configure:17281: re-using the existing conftest.o
-configure:17287: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization-mt >&5
-configure:17296: $? = 0
-configure:17335: result: yes
-configure:17414: checking for pkg-config
-configure:17432: found /usr/bin/pkg-config
-configure:17444: result: /usr/bin/pkg-config
-configure:17469: checking pkg-config is at least version 0.9.0
-configure:17472: result: yes
-configure:17481: checking if with lua
-configure:17492: result: yes
-configure:17503: checking for LUA
-configure:17510: $PKG_CONFIG --exists --print-errors "$LUAPC >= 5.1"
+configure:17287: $? = 1
+configure:17272: re-using the existing conftest.o
+configure:17278: g++ -o conftest -Wall -O2 -L/usr/local/lib conftest.o -lboost_serialization-mt >&5
+configure:17287: $? = 0
+configure:17326: result: yes
+configure:17405: checking for pkg-config
+configure:17423: found /usr/bin/pkg-config
+configure:17435: result: /usr/bin/pkg-config
+configure:17460: checking pkg-config is at least version 0.9.0
+configure:17463: result: yes
+configure:17472: checking if with lua
+configure:17483: result: yes
+configure:17494: checking for LUA
+configure:17501: $PKG_CONFIG --exists --print-errors "$LUAPC >= 5.1"
Package lua was not found in the pkg-config search path.
Perhaps you should add the directory containing `lua.pc'
to the PKG_CONFIG_PATH environment variable
No package 'lua' found
-configure:17513: $? = 1
-configure:17527: $PKG_CONFIG --exists --print-errors "$LUAPC >= 5.1"
+configure:17504: $? = 1
+configure:17518: $PKG_CONFIG --exists --print-errors "$LUAPC >= 5.1"
Package lua was not found in the pkg-config search path.
Perhaps you should add the directory containing `lua.pc'
to the PKG_CONFIG_PATH environment variable
No package 'lua' found
-configure:17530: $? = 1
-configure:17544: result: no
+configure:17521: $? = 1
+configure:17535: result: no
No package 'lua' found
-configure:17563: checking for LUA
-configure:17570: $PKG_CONFIG --exists --print-errors "lua5.1 >= 5.1"
-configure:17573: $? = 0
-configure:17587: $PKG_CONFIG --exists --print-errors "lua5.1 >= 5.1"
-configure:17590: $? = 0
-configure:17826: result: yes
-configure:18137: checking whether user requires sqlite3
-configure:18147: result: no
-configure:18157: checking for ANSI C header files
-configure:18261: result: yes
-configure:18272: checking fcntl.h usability
-configure:18272: g++ -c -Wall -O2 conftest.cpp >&5
-configure:18272: $? = 0
-configure:18272: result: yes
-configure:18272: checking fcntl.h presence
-configure:18272: g++ -E conftest.cpp
-configure:18272: $? = 0
-configure:18272: result: yes
-configure:18272: checking for fcntl.h
-configure:18272: result: yes
-configure:18272: checking getopt.h usability
-configure:18272: g++ -c -Wall -O2 conftest.cpp >&5
-configure:18272: $? = 0
-configure:18272: result: yes
-configure:18272: checking getopt.h presence
-configure:18272: g++ -E conftest.cpp
-configure:18272: $? = 0
-configure:18272: result: yes
-configure:18272: checking for getopt.h
-configure:18272: result: yes
-configure:18272: checking limits.h usability
-configure:18272: g++ -c -Wall -O2 conftest.cpp >&5
-configure:18272: $? = 0
-configure:18272: result: yes
-configure:18272: checking limits.h presence
-configure:18272: g++ -E conftest.cpp
-configure:18272: $? = 0
-configure:18272: result: yes
-configure:18272: checking for limits.h
-configure:18272: result: yes
-configure:18272: checking for strings.h
-configure:18272: result: yes
-configure:18272: checking sys/time.h usability
-configure:18272: g++ -c -Wall -O2 conftest.cpp >&5
-configure:18272: $? = 0
-configure:18272: result: yes
-configure:18272: checking sys/time.h presence
-configure:18272: g++ -E conftest.cpp
-configure:18272: $? = 0
-configure:18272: result: yes
-configure:18272: checking for sys/time.h
-configure:18272: result: yes
-configure:18272: checking syslog.h usability
-configure:18272: g++ -c -Wall -O2 conftest.cpp >&5
-configure:18272: $? = 0
-configure:18272: result: yes
-configure:18272: checking syslog.h presence
-configure:18272: g++ -E conftest.cpp
-configure:18272: $? = 0
-configure:18272: result: yes
-configure:18272: checking for syslog.h
-configure:18272: result: yes
-configure:18272: checking for unistd.h
-configure:18272: result: yes
-configure:18283: checking for size_t
-configure:18283: g++ -c -Wall -O2 conftest.cpp >&5
-configure:18283: $? = 0
-configure:18283: g++ -c -Wall -O2 conftest.cpp >&5
+configure:17554: checking for LUA
+configure:17561: $PKG_CONFIG --exists --print-errors "lua5.1 >= 5.1"
+configure:17564: $? = 0
+configure:17578: $PKG_CONFIG --exists --print-errors "lua5.1 >= 5.1"
+configure:17581: $? = 0
+configure:17817: result: yes
+configure:18128: checking whether user requires sqlite3
+configure:18138: result: no
+configure:18148: checking for ANSI C header files
+configure:18252: result: yes
+configure:18263: checking fcntl.h usability
+configure:18263: g++ -c -Wall -O2 conftest.cpp >&5
+configure:18263: $? = 0
+configure:18263: result: yes
+configure:18263: checking fcntl.h presence
+configure:18263: g++ -E conftest.cpp
+configure:18263: $? = 0
+configure:18263: result: yes
+configure:18263: checking for fcntl.h
+configure:18263: result: yes
+configure:18263: checking getopt.h usability
+configure:18263: g++ -c -Wall -O2 conftest.cpp >&5
+configure:18263: $? = 0
+configure:18263: result: yes
+configure:18263: checking getopt.h presence
+configure:18263: g++ -E conftest.cpp
+configure:18263: $? = 0
+configure:18263: result: yes
+configure:18263: checking for getopt.h
+configure:18263: result: yes
+configure:18263: checking limits.h usability
+configure:18263: g++ -c -Wall -O2 conftest.cpp >&5
+configure:18263: $? = 0
+configure:18263: result: yes
+configure:18263: checking limits.h presence
+configure:18263: g++ -E conftest.cpp
+configure:18263: $? = 0
+configure:18263: result: yes
+configure:18263: checking for limits.h
+configure:18263: result: yes
+configure:18263: checking for strings.h
+configure:18263: result: yes
+configure:18263: checking sys/time.h usability
+configure:18263: g++ -c -Wall -O2 conftest.cpp >&5
+configure:18263: $? = 0
+configure:18263: result: yes
+configure:18263: checking sys/time.h presence
+configure:18263: g++ -E conftest.cpp
+configure:18263: $? = 0
+configure:18263: result: yes
+configure:18263: checking for sys/time.h
+configure:18263: result: yes
+configure:18263: checking syslog.h usability
+configure:18263: g++ -c -Wall -O2 conftest.cpp >&5
+configure:18263: $? = 0
+configure:18263: result: yes
+configure:18263: checking syslog.h presence
+configure:18263: g++ -E conftest.cpp
+configure:18263: $? = 0
+configure:18263: result: yes
+configure:18263: checking for syslog.h
+configure:18263: result: yes
+configure:18263: checking for unistd.h
+configure:18263: result: yes
+configure:18274: checking for size_t
+configure:18274: g++ -c -Wall -O2 conftest.cpp >&5
+configure:18274: $? = 0
+configure:18274: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:74:20: error: expected primary-expression before ')' token
-configure:18283: $? = 1
+configure:18274: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -4111,7 +4111,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -4181,20 +4181,20 @@
| ;
| return 0;
| }
-configure:18283: result: yes
-configure:18294: checking whether time.h and sys/time.h may both be included
-configure:18314: g++ -c -Wall -O2 conftest.cpp >&5
-configure:18314: $? = 0
-configure:18321: result: yes
-configure:18329: checking whether struct tm is in sys/time.h or time.h
-configure:18349: g++ -c -Wall -O2 conftest.cpp >&5
-configure:18349: $? = 0
-configure:18356: result: time.h
-configure:18365: checking return type of signal handlers
-configure:18383: g++ -c -Wall -O2 conftest.cpp >&5
+configure:18274: result: yes
+configure:18285: checking whether time.h and sys/time.h may both be included
+configure:18305: g++ -c -Wall -O2 conftest.cpp >&5
+configure:18305: $? = 0
+configure:18312: result: yes
+configure:18320: checking whether struct tm is in sys/time.h or time.h
+configure:18340: g++ -c -Wall -O2 conftest.cpp >&5
+configure:18340: $? = 0
+configure:18347: result: time.h
+configure:18356: checking return type of signal handlers
+configure:18374: g++ -c -Wall -O2 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:45:27: error: void value not ignored as it ought to be
-configure:18383: $? = 1
+configure:18374: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -4204,7 +4204,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -4244,56 +4244,56 @@
| ;
| return 0;
| }
-configure:18390: result: void
-configure:18401: checking for gethostname
-configure:18401: g++ -o conftest -Wall -O2 conftest.cpp >&5
-configure:18401: $? = 0
-configure:18401: result: yes
-configure:18401: checking for gettimeofday
-configure:18401: g++ -o conftest -Wall -O2 conftest.cpp >&5
-configure:18401: $? = 0
-configure:18401: result: yes
-configure:18401: checking for mkdir
-configure:18401: g++ -o conftest -Wall -O2 conftest.cpp >&5
-configure:18401: $? = 0
-configure:18401: result: yes
-configure:18401: checking for mktime
-configure:18401: g++ -o conftest -Wall -O2 conftest.cpp >&5
-configure:18401: $? = 0
-configure:18401: result: yes
-configure:18401: checking for select
-configure:18401: g++ -o conftest -Wall -O2 conftest.cpp >&5
-configure:18401: $? = 0
-configure:18401: result: yes
-configure:18401: checking for socket
-configure:18401: g++ -o conftest -Wall -O2 conftest.cpp >&5
-configure:18401: $? = 0
-configure:18401: result: yes
-configure:18401: checking for strerror
-configure:18401: g++ -o conftest -Wall -O2 conftest.cpp >&5
-configure:18401: $? = 0
-configure:18401: result: yes
-configure:18417: checking for dlopen in -ldl
-configure:18442: g++ -o conftest -Wall -O2 conftest.cpp -ldl >&5
-configure:18442: $? = 0
-configure:18451: result: yes
-configure:18466: checking for RTLD_NOW
-configure:18481: g++ -o conftest -Wall -O2 conftest.cpp -lz -ldl >&5
-configure:18481: $? = 0
-configure:18488: result: yes
-configure:18502: checking for crypt in -lcrypt
-configure:18527: g++ -o conftest -Wall -O2 conftest.cpp -lcrypt >&5
-configure:18527: $? = 0
-configure:18536: result: yes
-configure:18609: checking whether we will be doing verbose logging
-configure:18623: result: no
-configure:18626: checking whether we will try to link in system PolarSSL
-configure:18636: result: yes
-configure:18647: checking PolarSSL version >= 1.1
-configure:18667: g++ -c -D_GNU_SOURCE -Wall -O2 conftest.cpp >&5
+configure:18381: result: void
+configure:18392: checking for gethostname
+configure:18392: g++ -o conftest -Wall -O2 conftest.cpp >&5
+configure:18392: $? = 0
+configure:18392: result: yes
+configure:18392: checking for gettimeofday
+configure:18392: g++ -o conftest -Wall -O2 conftest.cpp >&5
+configure:18392: $? = 0
+configure:18392: result: yes
+configure:18392: checking for mkdir
+configure:18392: g++ -o conftest -Wall -O2 conftest.cpp >&5
+configure:18392: $? = 0
+configure:18392: result: yes
+configure:18392: checking for mktime
+configure:18392: g++ -o conftest -Wall -O2 conftest.cpp >&5
+configure:18392: $? = 0
+configure:18392: result: yes
+configure:18392: checking for select
+configure:18392: g++ -o conftest -Wall -O2 conftest.cpp >&5
+configure:18392: $? = 0
+configure:18392: result: yes
+configure:18392: checking for socket
+configure:18392: g++ -o conftest -Wall -O2 conftest.cpp >&5
+configure:18392: $? = 0
+configure:18392: result: yes
+configure:18392: checking for strerror
+configure:18392: g++ -o conftest -Wall -O2 conftest.cpp >&5
+configure:18392: $? = 0
+configure:18392: result: yes
+configure:18408: checking for dlopen in -ldl
+configure:18433: g++ -o conftest -Wall -O2 conftest.cpp -ldl >&5
+configure:18433: $? = 0
+configure:18442: result: yes
+configure:18457: checking for RTLD_NOW
+configure:18472: g++ -o conftest -Wall -O2 conftest.cpp -lz -ldl >&5
+configure:18472: $? = 0
+configure:18479: result: yes
+configure:18493: checking for crypt in -lcrypt
+configure:18518: g++ -o conftest -Wall -O2 conftest.cpp -lcrypt >&5
+configure:18518: $? = 0
+configure:18527: result: yes
+configure:18608: checking whether we will be doing verbose logging
+configure:18622: result: no
+configure:18625: checking whether we will try to link in system PolarSSL
+configure:18635: result: yes
+configure:18646: checking PolarSSL version >= 1.1
+configure:18666: g++ -c -D_GNU_SOURCE -Wall -O2 conftest.cpp >&5
conftest.cpp:51:30: fatal error: polarssl/version.h: No such file or directory
compilation terminated.
-configure:18667: $? = 1
+configure:18666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
@@ -4303,7 +4303,7 @@
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "pdns"
-| #define VERSION "3.1"
+| #define VERSION "3.2-pre"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
@@ -4359,24 +4359,24 @@
| ;
| return 0;
| }
-configure:18673: result: no
-configure:18724: checking whether we will be linking in Botan 1.10
-configure:18733: result: no
-configure:18744: checking whether we will be linking in Botan 1.8
-configure:18753: result: no
-configure:18764: checking whether we will be linking in Crypto++
-configure:18773: result: no
-configure:18944: checking whether we should build static binaries
-configure:18958: result:
-configure:19014: checking whether we will be building the server
-configure:19024: result: yes
-configure:19042: checking whether we will be building the recursor
-configure:19052: result: no
-configure:19391: checking for MySQL library directory
-configure:19413: result: /usr/lib/x86_64-linux-gnu/
-configure:19415: checking for MySQL include directory
-configure:19435: result: /usr/include/mysql
-configure:20030: creating ./config.status
+configure:18672: result: no
+configure:18723: checking whether we will be linking in Botan 1.10
+configure:18732: result: no
+configure:18743: checking whether we will be linking in Botan 1.8
+configure:18752: result: no
+configure:18763: checking whether we will be linking in Crypto++
+configure:18772: result: no
+configure:18943: checking whether we should build static binaries
+configure:18957: result:
+configure:19013: checking whether we will be building the server
+configure:19023: result: yes
+configure:19041: checking whether we will be building the recursor
+configure:19051: result: no
+configure:19387: checking for MySQL library directory
+configure:19409: result: /usr/lib/x86_64-linux-gnu/
+configure:19411: checking for MySQL include directory
+configure:19431: result: /usr/include/mysql
+configure:19951: creating ./config.status
## ---------------- ##
## Cache variables. ##
@@ -4666,13 +4666,11 @@
SQLITE3_FALSE=''
SQLITE3_LIBS=''
SQLITE3_TRUE='#'
-SQLITE_incdir=''
-SQLITE_lib=''
STRIP='strip'
THREADFLAGS='-pthread'
UNIXODBC_incdir=''
UNIXODBC_lib=''
-VERSION='3.1'
+VERSION='3.2-pre'
YACC='bison -y'
YFLAGS=''
ac_ct_AR='ar'
@@ -4745,7 +4743,7 @@
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define PACKAGE "pdns"
-#define VERSION "3.1"
+#define VERSION "3.2-pre"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
@@ -4803,33 +4801,49 @@
on dev-72
-config.status:1262: creating Makefile
-config.status:1262: creating modules/Makefile
-config.status:1262: creating pdns/Makefile
-config.status:1262: creating codedocs/Makefile
-config.status:1262: creating pdns/backends/Makefile
-config.status:1262: creating pdns/backends/bind/Makefile
-config.status:1262: creating pdns/pdns
-config.status:1262: creating pdns/precursor
-config.status:1262: creating modules/gmysqlbackend/Makefile
-config.status:1262: creating modules/db2backend/Makefile
-config.status:1262: creating modules/geobackend/Makefile
-config.status:1262: creating modules/opendbxbackend/Makefile
-config.status:1262: creating modules/pipebackend/Makefile
-config.status:1262: creating modules/oraclebackend/Makefile
-config.status:1262: creating modules/xdbbackend/Makefile
-config.status:1262: creating modules/godbcbackend/Makefile
-config.status:1262: creating modules/mongodbbackend/Makefile
-config.status:1262: creating modules/gpgsqlbackend/Makefile
-config.status:1262: creating modules/ldapbackend/Makefile
-config.status:1262: creating modules/gsqlitebackend/Makefile
-config.status:1262: creating modules/gsqlite3backend/Makefile
-config.status:1262: creating modules/goraclebackend/Makefile
-config.status:1262: creating modules/mydnsbackend/Makefile
-config.status:1262: creating modules/luabackend/Makefile
-config.status:1262: creating modules/tinydnsbackend/Makefile
-config.status:1262: creating modules/remotebackend/Makefile
-config.status:1262: creating config.h
-config.status:1443: config.h is unchanged
-config.status:1491: executing depfiles commands
-config.status:1491: executing libtool commands
+config.status:1259: creating Makefile
+config.status:1259: creating modules/Makefile
+config.status:1259: creating pdns/Makefile
+config.status:1259: creating codedocs/Makefile
+config.status:1259: creating pdns/backends/Makefile
+config.status:1259: creating pdns/backends/bind/Makefile
+config.status:1259: creating pdns/pdns
+config.status:1259: creating pdns/precursor
+config.status:1259: creating modules/gmysqlbackend/Makefile
+config.status:1259: creating modules/db2backend/Makefile
+config.status:1259: creating modules/geobackend/Makefile
+config.status:1259: creating modules/opendbxbackend/Makefile
+config.status:1259: creating modules/pipebackend/Makefile
+config.status:1259: creating modules/oraclebackend/Makefile
+config.status:1259: creating modules/xdbbackend/Makefile
+config.status:1259: creating modules/godbcbackend/Makefile
+config.status:1259: creating modules/mongodbbackend/Makefile
+config.status:1259: creating modules/gpgsqlbackend/Makefile
+config.status:1259: creating modules/ldapbackend/Makefile
+config.status:1259: creating modules/gsqlite3backend/Makefile
+config.status:1259: creating modules/goraclebackend/Makefile
+config.status:1259: creating modules/mydnsbackend/Makefile
+config.status:1259: creating modules/luabackend/Makefile
+config.status:1259: creating modules/tinydnsbackend/Makefile
+config.status:1259: creating modules/remotebackend/Makefile
+config.status:1259: creating config.h
+config.status:1488: executing depfiles commands
+config.status:1488: executing libtool commands
+
+## ---------------------- ##
+## Running config.status. ##
+## ---------------------- ##
+
+This file was extended by config.status, which was
+generated by GNU Autoconf 2.68. Invocation command line was
+
+ CONFIG_FILES =
+ CONFIG_HEADERS =
+ CONFIG_LINKS =
+ CONFIG_COMMANDS =
+ $ ./config.status config.h
+
+on dev-72
+
+config.status:1259: creating config.h
+config.status:1440: config.h is unchanged
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/config.status
^
|
@@ -405,7 +405,7 @@
"
# Files that config.status was made for.
-config_files=" Makefile modules/Makefile pdns/Makefile codedocs/Makefile pdns/backends/Makefile pdns/backends/bind/Makefile pdns/pdns pdns/precursor modules/gmysqlbackend/Makefile modules/db2backend/Makefile modules/geobackend/Makefile modules/opendbxbackend/Makefile modules/pipebackend/Makefile modules/oraclebackend/Makefile modules/xdbbackend/Makefile modules/godbcbackend/Makefile modules/mongodbbackend/Makefile modules/gpgsqlbackend/Makefile modules/ldapbackend/Makefile modules/gsqlitebackend/Makefile modules/gsqlite3backend/Makefile modules/goraclebackend/Makefile modules/mydnsbackend/Makefile modules/luabackend/Makefile modules/tinydnsbackend/Makefile modules/remotebackend/Makefile"
+config_files=" Makefile modules/Makefile pdns/Makefile codedocs/Makefile pdns/backends/Makefile pdns/backends/bind/Makefile pdns/pdns pdns/precursor modules/gmysqlbackend/Makefile modules/db2backend/Makefile modules/geobackend/Makefile modules/opendbxbackend/Makefile modules/pipebackend/Makefile modules/oraclebackend/Makefile modules/xdbbackend/Makefile modules/godbcbackend/Makefile modules/mongodbbackend/Makefile modules/gpgsqlbackend/Makefile modules/ldapbackend/Makefile modules/gsqlite3backend/Makefile modules/goraclebackend/Makefile modules/mydnsbackend/Makefile modules/luabackend/Makefile modules/tinydnsbackend/Makefile modules/remotebackend/Makefile"
config_headers=" config.h"
config_commands=" depfiles libtool"
@@ -797,7 +797,7 @@
PACKAGE='pdns'
- VERSION='3.1'
+ VERSION='3.2-pre'
TIMESTAMP=''
RM='rm -f'
ofile='libtool'
@@ -834,7 +834,6 @@
"modules/mongodbbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/mongodbbackend/Makefile" ;;
"modules/gpgsqlbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gpgsqlbackend/Makefile" ;;
"modules/ldapbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/ldapbackend/Makefile" ;;
- "modules/gsqlitebackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gsqlitebackend/Makefile" ;;
"modules/gsqlite3backend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gsqlite3backend/Makefile" ;;
"modules/goraclebackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/goraclebackend/Makefile" ;;
"modules/mydnsbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/mydnsbackend/Makefile" ;;
@@ -918,8 +917,6 @@
S["CDB_CFLAGS"]=""
S["SQLITE3_LIBS"]=""
S["SQLITE3_CFLAGS"]=""
-S["SQLITE_incdir"]=""
-S["SQLITE_lib"]=""
S["PGSQL_incdir"]=""
S["PGSQL_lib"]=""
S["MYSQL_incdir"]="/usr/include/mysql"
@@ -1039,7 +1036,7 @@
S["AUTOMAKE"]="${SHELL} /home/oliver/src/svn/pdns-3.1/missing --run automake-1.11"
S["AUTOCONF"]="${SHELL} /home/oliver/src/svn/pdns-3.1/missing --run autoconf"
S["ACLOCAL"]="${SHELL} /home/oliver/src/svn/pdns-3.1/missing --run aclocal-1.11"
-S["VERSION"]="3.1"
+S["VERSION"]="3.2-pre"
S["PACKAGE"]="pdns"
S["CYGPATH_W"]="echo"
S["am__isrc"]=""
@@ -1132,7 +1129,7 @@
D["PACKAGE_BUGREPORT"]=" \"\""
D["PACKAGE_URL"]=" \"\""
D["PACKAGE"]=" \"pdns\""
-D["VERSION"]=" \"3.1\""
+D["VERSION"]=" \"3.2-pre\""
D["STDC_HEADERS"]=" 1"
D["HAVE_SYS_TYPES_H"]=" 1"
D["HAVE_SYS_STAT_H"]=" 1"
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/configure
^
|
@@ -622,8 +622,6 @@
CDB_CFLAGS
SQLITE3_LIBS
SQLITE3_CFLAGS
-SQLITE_incdir
-SQLITE_lib
PGSQL_incdir
PGSQL_lib
MYSQL_incdir
@@ -820,9 +818,6 @@
with_pgsql
with_pgsql_lib
with_pgsql_includes
-with_sqlite
-with_sqlite_lib
-with_sqlite_includes
with_unixodbc
with_unixodbc_lib
with_unixodbc_includes
@@ -1516,10 +1511,6 @@
--with-pgsql-lib=<path> directory path of PgSQL library installation
--with-pgsql-includes=<path>
directory path of PgSQL header installation
- --with-sqlite=<path> root directory path of SQLite installation
- --with-sqlite-lib=<path> directory path of SQLite library installation
- --with-sqlite-includes=<path>
- directory path of SQLite header installation
--with-unixodbc=<path> root directory path of unixodbc installation
--with-unixodbc-lib=<path> directory path of unixodbc library installation
--with-unixodbc-includes=<path> directory path of unixodbc header installation
@@ -3095,7 +3086,7 @@
# Define the identity of the package.
PACKAGE=pdns
- VERSION=3.1
+ VERSION=3.2-pre
cat >>confdefs.h <<_ACEOF
@@ -18592,6 +18583,14 @@
THREADFLAGS="-pthread"
CXXFLAGS="-D_GNU_SOURCE $CXXFLAGS"
;;
+darwin11* | darwin12*)
+
+$as_echo "#define HAVE_IPV6 1" >>confdefs.h
+
+ DYNLINKFLAGS="-rdynamic"
+ LDFLAGS="-pthread $LDFLAGS"
+ CXXFLAGS="-pthread $CXXFLAGS -D__APPLE_USE_RFC_3542"
+ ;;
*)
$as_echo "#define HAVE_IPV6 1" >>confdefs.h
@@ -19072,9 +19071,6 @@
gpgsql )
needpgsql=yes
;;
- gsqlite )
- needsqlite=yes
- ;;
gsqlite3 )
needsqlite3=yes
;;
@@ -19511,81 +19507,6 @@
$as_echo "$PGSQL_incdir" >&6; }
fi
-if test "$needsqlite"
-then
-
-
-# Check whether --with-sqlite was given.
-if test "${with_sqlite+set}" = set; then :
- withval=$with_sqlite; SQLITE_lib_check="$withval/lib/sqlite $with_sqlite/lib"
- SQLITE_inc_check="$withval/include/sqlite"
-else
- SQLITE_lib_check="/usr/local/sqlite/lib/sqlite /usr/local/lib/sqlite /opt/pgsql/lib/sqlite /usr/lib/sqlite /usr/local/sqlite/lib /usr/local/lib /opt/sqlite/lib /usr/lib /usr/lib64"
- SQLITE_inc_check="/usr/local/sqlite/include/sqlite /usr/local/include/sqlite/ /usr/local/include /opt/sqlite/include/sqlite /opt/sqlite/include /usr/include/ /usr/include/sqlite"
-fi
-
-
-# Check whether --with-sqlite-lib was given.
-if test "${with_sqlite_lib+set}" = set; then :
- withval=$with_sqlite_lib; SQLITE_lib_check="$withval/lib/sqlite $withval/sqlite $withval"
-fi
-
-
-# Check whether --with-sqlite-includes was given.
-if test "${with_sqlite_includes+set}" = set; then :
- withval=$with_sqlite_includes; SQLITE_inc_check="$withval/include/sqlite $withval/sqlite $withval"
-fi
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SQLite library directory" >&5
-$as_echo_n "checking for SQLite library directory... " >&6; }
- SQLITE_libdir=
- for m in $SQLITE_lib_check; do
- if test -d "$m" && \
- (test -f "$m/libsqlite.so" || test -f "$m/libsqlite.a")
- then
- SQLITE_libdir=$m
- break
- fi
- done
- if test -z "$SQLITE_libdir"; then
- as_fn_error $? "Didn't find the sqlite library dir in '$SQLITE_lib_check'" "$LINENO" 5
- fi
- case "$SQLITE_libdir" in
- /usr/lib ) SQLITE_lib="" ;;
- /usr/lib64 ) SQLITE_lib="" ;;
- /* ) SQLITE_lib="-L$SQLITE_libdir -Wl,-rpath,$SQLITE_libdir"
- LDFLAGS="$SQLITE_lib $LDFLAGS"
- ;;
- * ) as_fn_error $? "The SQLite library directory ($SQLITE_libdir) must be an absolute path." "$LINENO" 5 ;;
- esac
-
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SQLITE_libdir" >&5
-$as_echo "$SQLITE_libdir" >&6; }
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SQLite include directory" >&5
-$as_echo_n "checking for SQLite include directory... " >&6; }
- SQLITE_incdir=
- for m in $SQLITE_inc_check; do
- if test -d "$m" && test -f "$m/sqlite.h"
- then
- SQLITE_incdir=$m
- break
- fi
- done
- if test -z "$SQLITE_incdir"; then
- as_fn_error $? "Didn't find the SQLite include dir in '$SQLITE_inc_check'" "$LINENO" 5
- fi
- case "$SQLITE_incdir" in
- /* ) ;;
- * ) as_fn_error $? "The SQLite include directory ($SQLITE_incdir) must be an absolute path." "$LINENO" 5 ;;
- esac
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SQLITE_incdir" >&5
-$as_echo "$SQLITE_incdir" >&6; }
-
-# LIBS="$LIBS -lsqlite"
-fi
-
if test "$needsqlite3"
then
@@ -19858,7 +19779,7 @@
export moduledirs moduleobjects modulelibs
-ac_config_files="$ac_config_files Makefile modules/Makefile pdns/Makefile codedocs/Makefile pdns/backends/Makefile pdns/backends/bind/Makefile pdns/pdns pdns/precursor modules/gmysqlbackend/Makefile modules/db2backend/Makefile modules/geobackend/Makefile modules/opendbxbackend/Makefile modules/pipebackend/Makefile modules/oraclebackend/Makefile modules/xdbbackend/Makefile modules/godbcbackend/Makefile modules/mongodbbackend/Makefile modules/gpgsqlbackend/Makefile modules/ldapbackend/Makefile modules/gsqlitebackend/Makefile modules/gsqlite3backend/Makefile modules/goraclebackend/Makefile modules/mydnsbackend/Makefile modules/luabackend/Makefile modules/tinydnsbackend/Makefile modules/remotebackend/Makefile"
+ac_config_files="$ac_config_files Makefile modules/Makefile pdns/Makefile codedocs/Makefile pdns/backends/Makefile pdns/backends/bind/Makefile pdns/pdns pdns/precursor modules/gmysqlbackend/Makefile modules/db2backend/Makefile modules/geobackend/Makefile modules/opendbxbackend/Makefile modules/pipebackend/Makefile modules/oraclebackend/Makefile modules/xdbbackend/Makefile modules/godbcbackend/Makefile modules/mongodbbackend/Makefile modules/gpgsqlbackend/Makefile modules/ldapbackend/Makefile modules/gsqlite3backend/Makefile modules/goraclebackend/Makefile modules/mydnsbackend/Makefile modules/luabackend/Makefile modules/tinydnsbackend/Makefile modules/remotebackend/Makefile"
cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
@@ -21023,7 +20944,6 @@
"modules/mongodbbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/mongodbbackend/Makefile" ;;
"modules/gpgsqlbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gpgsqlbackend/Makefile" ;;
"modules/ldapbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/ldapbackend/Makefile" ;;
- "modules/gsqlitebackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gsqlitebackend/Makefile" ;;
"modules/gsqlite3backend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/gsqlite3backend/Makefile" ;;
"modules/goraclebackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/goraclebackend/Makefile" ;;
"modules/mydnsbackend/Makefile") CONFIG_FILES="$CONFIG_FILES modules/mydnsbackend/Makefile" ;;
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/configure.ac
^
|
@@ -1,6 +1,6 @@
dnl intro
AC_INIT(pdns/receiver.cc)
-AM_INIT_AUTOMAKE(pdns, 3.1)
+AM_INIT_AUTOMAKE(pdns, 3.2-pre)
AC_CANONICAL_HOST
AM_CONFIG_HEADER(config.h)
AC_C_BIGENDIAN
@@ -146,6 +146,12 @@
THREADFLAGS="-pthread"
CXXFLAGS="-D_GNU_SOURCE $CXXFLAGS"
;;
+darwin11* | darwin12*)
+ AC_DEFINE(HAVE_IPV6,1,[If the host operating system understands IPv6])
+ DYNLINKFLAGS="-rdynamic"
+ LDFLAGS="-pthread $LDFLAGS"
+ CXXFLAGS="-pthread $CXXFLAGS -D__APPLE_USE_RFC_3542"
+ ;;
*)
AC_DEFINE(HAVE_IPV6,1,[If the host operating system understands IPv6])
DYNLINKFLAGS="-rdynamic"
@@ -312,9 +318,6 @@
gpgsql )
needpgsql=yes
;;
- gsqlite )
- needsqlite=yes
- ;;
gsqlite3 )
needsqlite3=yes
;;
@@ -485,68 +488,6 @@
AC_MSG_RESULT([$PGSQL_incdir])
fi
-if test "$needsqlite"
-then
-
- AC_ARG_WITH(sqlite,
- [ --with-sqlite=<path> root directory path of SQLite installation],
- [SQLITE_lib_check="$withval/lib/sqlite $with_sqlite/lib"
- SQLITE_inc_check="$withval/include/sqlite"],
- [SQLITE_lib_check="/usr/local/sqlite/lib/sqlite /usr/local/lib/sqlite /opt/pgsql/lib/sqlite /usr/lib/sqlite /usr/local/sqlite/lib /usr/local/lib /opt/sqlite/lib /usr/lib /usr/lib64"
- SQLITE_inc_check="/usr/local/sqlite/include/sqlite /usr/local/include/sqlite/ /usr/local/include /opt/sqlite/include/sqlite /opt/sqlite/include /usr/include/ /usr/include/sqlite"])
- AC_ARG_WITH(sqlite-lib,
- [ --with-sqlite-lib=<path> directory path of SQLite library installation],
- [SQLITE_lib_check="$withval/lib/sqlite $withval/sqlite $withval"])
- AC_ARG_WITH(sqlite-includes,
- [ --with-sqlite-includes=<path>
- directory path of SQLite header installation],
- [SQLITE_inc_check="$withval/include/sqlite $withval/sqlite $withval"])
- AC_MSG_CHECKING([for SQLite library directory])
- SQLITE_libdir=
- for m in $SQLITE_lib_check; do
- if test -d "$m" && \
- (test -f "$m/libsqlite.so" || test -f "$m/libsqlite.a")
- then
- SQLITE_libdir=$m
- break
- fi
- done
- if test -z "$SQLITE_libdir"; then
- AC_MSG_ERROR([Didn't find the sqlite library dir in '$SQLITE_lib_check'])
- fi
- case "$SQLITE_libdir" in
- /usr/lib ) SQLITE_lib="" ;;
- /usr/lib64 ) SQLITE_lib="" ;;
- /* ) SQLITE_lib="-L$SQLITE_libdir -Wl,-rpath,$SQLITE_libdir"
- LDFLAGS="$SQLITE_lib $LDFLAGS"
- ;;
- * ) AC_MSG_ERROR([The SQLite library directory ($SQLITE_libdir) must be an absolute path.]) ;;
- esac
-
- AC_SUBST(SQLITE_lib)
- AC_MSG_RESULT([$SQLITE_libdir])
- AC_MSG_CHECKING([for SQLite include directory])
- SQLITE_incdir=
- for m in $SQLITE_inc_check; do
- if test -d "$m" && test -f "$m/sqlite.h"
- then
- SQLITE_incdir=$m
- break
- fi
- done
- if test -z "$SQLITE_incdir"; then
- AC_MSG_ERROR([Didn't find the SQLite include dir in '$SQLITE_inc_check'])
- fi
- case "$SQLITE_incdir" in
- /* ) ;;
- * ) AC_MSG_ERROR([The SQLite include directory ($SQLITE_incdir) must be an absolute path.]) ;;
- esac
- AC_SUBST(SQLITE_incdir)
- AC_MSG_RESULT([$SQLITE_incdir])
-
-# LIBS="$LIBS -lsqlite"
-fi
-
if test "$needsqlite3"
then
PKG_CHECK_MODULES(SQLITE3, $SQLITE3PC, HAVE_SQLITE3=yes, AC_MSG_ERROR([+Could not find sqlite3]))
@@ -664,7 +605,7 @@
modules/xdbbackend/Makefile modules/godbcbackend/Makefile \
modules/mongodbbackend/Makefile \
modules/gpgsqlbackend/Makefile modules/ldapbackend/Makefile \
-modules/gsqlitebackend/Makefile modules/gsqlite3backend/Makefile \
+modules/gsqlite3backend/Makefile \
modules/goraclebackend/Makefile modules/mydnsbackend/Makefile \
modules/luabackend/Makefile modules/tinydnsbackend/Makefile \
modules/remotebackend/Makefile)
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/debian-pdns/changelog
^
|
@@ -1,3 +1,9 @@
+pdns (3.2-pre-1) unstable; urgency=medium
+
+ * fill in the blanks
+
+ -- bert hubert <bert.hubert@netherlabs.nl> Thu, 7 Oct 2012 09:23:33 +0100
+
pdns (3.1-1) unstable; urgency=medium
* fill in the blanks
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/debian-pdns/rules
^
|
@@ -2,7 +2,7 @@
tmpdir := $(shell pwd)/debian-pdns/tmp
be_tmpdir := $(shell pwd)/debian-pdns/tmp-backend
-backends := opendbx ldap pipe gmysql gpgsql gsqlite gsqlite3
+backends := opendbx ldap pipe gmysql gpgsql gsqlite3
debs := opendbx ldap pipe pgsql sqlite sqlite3
binary-doc:
@@ -51,7 +51,7 @@
--infodir='$${datadir}/info' \
--mandir='$${datadir}/man' \
--with-pgsql-lib=/opt/postgresql/lib --with-pgsql-includes=/opt/postgresql/include \
- --with-modules="gmysql gpgsql pipe gsqlite gsqlite3 lua geo" \
+ --with-modules="gmysql gpgsql pipe gsqlite3 lua geo" \
--with-dynmodules="" \
--enable-botan1.10 --enable-cryptopp \
--enable-static-binaries
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/libtool
^
|
@@ -1,7 +1,7 @@
#! /bin/bash
# libtool - Provide generalized library-building support services.
-# Generated automatically by config.status (pdns) 3.1
+# Generated automatically by config.status (pdns) 3.2-pre
# Libtool was configured on host dev-72:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
#
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/Makefile
^
|
@@ -183,13 +183,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules
@@ -251,7 +249,7 @@
top_builddir = ..
top_srcdir = ..
SUBDIRS = gmysqlbackend geobackend pipebackend pipebackend
-DIST_SUBDIRS = db2backend geobackend gmysqlbackend godbcbackend goraclebackend gpgsqlbackend gsqlite3backend gsqlitebackend ldapbackend luabackend mongodbbackend mydnsbackend opendbxbackend oraclebackend pipebackend xdbbackend tinydnsbackend remotebackend
+DIST_SUBDIRS = db2backend geobackend gmysqlbackend godbcbackend goraclebackend gpgsqlbackend gsqlite3backend ldapbackend luabackend mongodbbackend mydnsbackend opendbxbackend oraclebackend pipebackend xdbbackend tinydnsbackend remotebackend
all: all-recursive
.SUFFIXES:
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/Makefile.am
^
|
@@ -1,2 +1,2 @@
SUBDIRS=@moduledirs@
-DIST_SUBDIRS=db2backend geobackend gmysqlbackend godbcbackend goraclebackend gpgsqlbackend gsqlite3backend gsqlitebackend ldapbackend luabackend mongodbbackend mydnsbackend opendbxbackend oraclebackend pipebackend xdbbackend tinydnsbackend remotebackend
+DIST_SUBDIRS=db2backend geobackend gmysqlbackend godbcbackend goraclebackend gpgsqlbackend gsqlite3backend ldapbackend luabackend mongodbbackend mydnsbackend opendbxbackend oraclebackend pipebackend xdbbackend tinydnsbackend remotebackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/Makefile.in
^
|
@@ -183,8 +183,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
@@ -251,7 +249,7 @@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
SUBDIRS = @moduledirs@
-DIST_SUBDIRS = db2backend geobackend gmysqlbackend godbcbackend goraclebackend gpgsqlbackend gsqlite3backend gsqlitebackend ldapbackend luabackend mongodbbackend mydnsbackend opendbxbackend oraclebackend pipebackend xdbbackend tinydnsbackend remotebackend
+DIST_SUBDIRS = db2backend geobackend gmysqlbackend godbcbackend goraclebackend gpgsqlbackend gsqlite3backend ldapbackend luabackend mongodbbackend mydnsbackend opendbxbackend oraclebackend pipebackend xdbbackend tinydnsbackend remotebackend
all: all-recursive
.SUFFIXES:
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/db2backend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/db2backend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/db2backend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/geobackend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/geobackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/geobackend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/gmysqlbackend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/gmysqlbackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/gmysqlbackend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/gmysqlbackend/gmysqlbackend.cc
^
|
@@ -1,4 +1,4 @@
-// $Id: gmysqlbackend.cc 2732 2012-10-03 17:21:21Z peter $
+// $Id: gmysqlbackend.cc 2770 2012-10-06 10:58:38Z ahu $
#include <string>
#include <map>
@@ -26,7 +26,8 @@
getArgAsNum("port"),
getArg("socket"),
getArg("user"),
- getArg("password")));
+ getArg("password"),
+ getArg("group")));
}
@@ -50,6 +51,7 @@
declare(suffix,"port","Database backend port to connect to","0");
declare(suffix,"socket","Pdns backend socket to connect to","");
declare(suffix,"password","Pdns backend password to connect with","");
+ declare(suffix,"group", "Pdns backend MySQL 'group' to connect as", "client");
declare(suffix,"dnssec","Assume DNSSEC Schema is in place","no");
declare(suffix,"basic-query","Basic query","select content,ttl,prio,type,domain_id,name from records where type='%s' and name='%s'");
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/gmysqlbackend/smysql.cc
^
|
@@ -1,6 +1,6 @@
/* Copyright 2001 Netherlabs BV, bert.hubert@netherlabs.nl. See LICENSE
for more information.
- $Id: smysql.cc 2591 2012-04-29 14:47:17Z peter $ */
+ $Id: smysql.cc 2780 2012-10-07 16:39:22Z ahu $ */
#include "smysql.hh"
#include <string>
#include <iostream>
@@ -14,15 +14,14 @@
pthread_mutex_t SMySQL::s_myinitlock = PTHREAD_MUTEX_INITIALIZER;
SMySQL::SMySQL(const string &database, const string &host, uint16_t port, const string &msocket, const string &user,
- const string &password)
+ const string &password, const string &group)
{
{
Lock l(&s_myinitlock);
mysql_init(&d_db);
- mysql_options(&d_db, MYSQL_READ_DEFAULT_GROUP, "client");
- my_bool reconnect = 1;
#if MYSQL_VERSION_ID >= 50013
+ my_bool reconnect = 1;
mysql_options(&d_db, MYSQL_OPT_RECONNECT, &reconnect);
#endif
@@ -31,12 +30,15 @@
mysql_options(&d_db, MYSQL_OPT_READ_TIMEOUT, &timeout);
mysql_options(&d_db, MYSQL_OPT_WRITE_TIMEOUT, &timeout);
#endif
+
+ mysql_options(&d_db, MYSQL_READ_DEFAULT_GROUP, group.c_str());
- if (!mysql_real_connect(&d_db, host.empty() ? 0 : host.c_str(),
- user.empty() ? 0 : user.c_str(),
- password.empty() ? 0 : password.c_str(),
- database.c_str(), port,
- msocket.empty() ? 0 : msocket.c_str(),
+ if (!mysql_real_connect(&d_db, host.empty() ? NULL : host.c_str(),
+ user.empty() ? NULL : user.c_str(),
+ password.empty() ? NULL : password.c_str(),
+ database.empty() ? NULL : database.c_str(),
+ port,
+ msocket.empty() ? NULL : msocket.c_str(),
CLIENT_MULTI_RESULTS)) {
throw sPerrorException("Unable to connect to database");
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/gmysqlbackend/smysql.hh
^
|
@@ -1,6 +1,6 @@
/* Copyright 2001 Netherlabs BV, bert.hubert@netherlabs.nl. See LICENSE
for more information.
- $Id: smysql.hh 2591 2012-04-29 14:47:17Z peter $ */
+ $Id: smysql.hh 2770 2012-10-06 10:58:38Z ahu $ */
#ifndef SMYSQL_HH
#define SMYSQL_HH
@@ -12,8 +12,8 @@
{
public:
SMySQL(const string &database, const string &host="", uint16_t port=0,
- const string &msocket="",const string &user="",
- const string &password="");
+ const string &msocket="",const string &user="",
+ const string &password="", const string &group="");
~SMySQL();
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/godbcbackend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/godbcbackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/godbcbackend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/goraclebackend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/goraclebackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/goraclebackend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/gpgsqlbackend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/gpgsqlbackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/gpgsqlbackend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/gsqlite3backend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/gsqlite3backend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/gsqlite3backend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Deleted |
pdns-3.1.tar.gz/modules/gsqlitebackend/Makefile.am
^
|
@@ -1,12 +0,0 @@
-AM_CPPFLAGS=@THREADFLAGS@ $(BOOST_CPPFLAGS)
-lib_LTLIBRARIES = libgsqlitebackend.la
-
-EXTRA_DIST=OBJECTFILES OBJECTLIBS
-
-INCLUDES=-I@SQLITE_incdir@
-
-libgsqlitebackend_la_SOURCES=gsqlitebackend.cc gsqlitebackend.hh \
- ssqlite.hh ssqlite.cc
-
-
-libgsqlitebackend_la_LDFLAGS=-module -avoid-version -lsqlite
|
[-]
[+]
|
Deleted |
pdns-3.1.tar.gz/modules/gsqlitebackend/OBJECTFILES
^
|
@@ -1 +0,0 @@
-gsqlitebackend.o ssqlite.o
\ No newline at end of file
|
[-]
[+]
|
Deleted |
pdns-3.1.tar.gz/modules/gsqlitebackend/OBJECTLIBS
^
|
@@ -1 +0,0 @@
--lsqlite
\ No newline at end of file
|
[-]
[+]
|
Deleted |
pdns-3.1.tar.gz/modules/gsqlitebackend/gsqlitebackend.cc
^
|
@@ -1,112 +0,0 @@
-
-//
-// SQLite backend for PowerDNS
-// Copyright (C) 2003, Michel Stol <michel@powerdns.com>
-//
-
-#include "pdns/utility.hh"
-#include <map>
-#include <unistd.h>
-#include <sstream>
-#include <string>
-
-#include "pdns/dns.hh"
-#include "pdns/dnsbackend.hh"
-#include "pdns/dnspacket.hh"
-#include "pdns/ueberbackend.hh"
-#include "pdns/ahuexception.hh"
-#include "pdns/logger.hh"
-#include "pdns/arguments.hh"
-#include "ssqlite.hh"
-#include "gsqlitebackend.hh"
-#include <boost/algorithm/string.hpp>
-
-// Connects to the database.
-gSQLiteBackend::gSQLiteBackend( const std::string & mode, const std::string & suffix ) : GSQLBackend( mode, suffix )
-{
- try
- {
- setDB( new SSQLite( getArg( "database" )));
- }
- catch( SSqlException & e )
- {
- L << Logger::Error << mode << ": connection failed: " << e.txtReason() << std::endl;
- throw AhuException( "Unable to launch " + mode + " connection: " + e.txtReason());
- }
-
- L << Logger::Warning << mode << ": connection to '"<<getArg("database")<<"' successful" << std::endl;
-}
-
-
-//! Constructs a gSQLiteBackend
-class gSQLiteFactory : public BackendFactory
-{
-public:
- //! Constructor.
- gSQLiteFactory( const std::string & mode ) : BackendFactory( mode ), d_mode( mode )
- {
- }
-
- //! Declares all needed arguments.
- void declareArguments( const std::string & suffix = "" )
- {
- declare( suffix, "database", "Filename of the SQLite database", "powerdns.sqlite" );
-
- declare( suffix, "basic-query", "Basic query","select content,ttl,prio,type,domain_id,name from records where type='%s' and name='%s'");
- declare( suffix, "id-query", "Basic with ID query","select content,ttl,prio,type,domain_id,name from records where type='%s' and name='%s' and domain_id=%d");
- declare( suffix, "wildcard-query", "Wildcard query","select content,ttl,prio,type,domain_id,name from records where type='%s' and name like '%s'");
- declare( suffix, "wildcard-id-query", "Wildcard with ID query","select content,ttl,prio,type,domain_id,name from records where type='%s' and name like '%s' and domain_id=%d");
-
- declare( suffix, "any-query", "Any query","select content,ttl,prio,type,domain_id,name from records where name='%s'");
- declare( suffix, "any-id-query", "Any with ID query","select content,ttl,prio,type,domain_id,name from records where name='%s' and domain_id=%d");
- declare( suffix, "wildcard-any-query", "Wildcard ANY query","select content,ttl,prio,type,domain_id,name from records where name like '%s'");
- declare( suffix, "wildcard-any-id-query", "Wildcard ANY with ID query","select content,ttl,prio,type,domain_id,name from records where name like '%s' and domain_id=%d");
-
- declare( suffix, "list-query", "AXFR query", "select content,ttl,prio,type,domain_id,name from records where domain_id=%d");
- declare( suffix, "master-zone-query", "Data", "select master from domains where name='%s' and type='SLAVE'");
-
- declare( suffix, "info-zone-query", "","select id,name,master,last_check,notified_serial,type from domains where name='%s'");
-
- declare( suffix, "info-all-slaves-query", "","select id,name,master,last_check,type from domains where type='SLAVE'");
- declare( suffix, "supermaster-query", "", "select account from supermasters where ip='%s' and nameserver='%s'");
- declare( suffix, "insert-slave-query", "", "insert into domains (type,name,master,account) values('SLAVE','%s','%s','%s')");
- declare( suffix, "insert-record-query", "", "insert into records (content,ttl,prio,type,domain_id,name) values ('%s',%d,%d,'%s',%d,'%s')");
- declare( suffix, "update-serial-query", "", "update domains set notified_serial=%d where id=%d");
- declare( suffix, "update-lastcheck-query", "", "update domains set last_check=%d where id=%d");
- declare( suffix, "zone-lastchange-query", "", "select max(change_date) from records where domain_id=%d");
- declare( suffix, "info-all-master-query", "", "select id,name,master,last_check,notified_serial,type from domains where type='MASTER'");
- declare( suffix, "delete-zone-query", "", "delete from records where domain_id=%d");
- }
-
- //! Constructs a new gSQLiteBackend object.
- DNSBackend *make( const string & suffix = "" )
- {
- return new gSQLiteBackend( d_mode, suffix );
- }
-
-private:
- const string d_mode;
-};
-
-
-//! Magic class that is activated when the dynamic library is loaded
-class gSQLiteLoader
-{
-public:
- //! This reports us to the main UeberBackend class
- gSQLiteLoader()
- {
- BackendMakers().report( new gSQLiteFactory( "gsqlite" ));
- L<<Logger::Warning << "This is module gsqlite reporting" << std::endl;
- }
-};
-
-string gSQLiteBackend::sqlEscape(const string &name)
-{
- return boost::replace_all_copy(name, "'", "''");
-}
-
-
-//! Reports the backendloader to the UeberBackend.
-static gSQLiteLoader gsqliteloader;
-
|
[-]
[+]
|
Deleted |
pdns-3.1.tar.gz/modules/gsqlitebackend/gsqlitebackend.hh
^
|
@@ -1,24 +0,0 @@
-
-//
-// SQLite backend for PowerDNS
-// Copyright (C) 2003, Michel Stol <michel@powerdns.com>
-//
-
-#ifndef GSQLITEBACKEND_HH
-#define GSQLITEBACKEND_HH
-
-#include <string>
-#include "pdns/backends/gsql/gsqlbackend.hh"
-
-//! The gSQLiteBackend retrieves it's data from a SQLite database (http://www.sqlite.org/)
-class gSQLiteBackend : public GSQLBackend
-{
-private:
-protected:
-public:
- //! Constructs the backend, throws an exception if it failed..
- gSQLiteBackend( const std::string & mode, const std::string & suffix );
- virtual string sqlEscape(const string &name);
-};
-
-#endif // GSQLITEBACKEND_HH
|
[-]
[+]
|
Deleted |
pdns-3.1.tar.gz/modules/gsqlitebackend/ssqlite.cc
^
|
@@ -1,154 +0,0 @@
-
-//
-// SQLite backend for PowerDNS
-// Copyright (C) 2003, Michel Stol <michel@powerdns.com>
-//
-
-#include "pdns/utility.hh"
-#include <string>
-#include "ssqlite.hh"
-#include <iostream>
-
-#ifdef WIN32
-# include <io.h>
-# define access _access
-# define F_OK 0
-#else // WIN32
-# include <unistd.h>
-#endif // Unix
-
-// Constructor.
-SSQLite::SSQLite( const std::string & database )
-{
- // Open the database connection.
- if ( access( database.c_str(), F_OK ) == -1 )
- throw sPerrorException( "SQLite database does not exist yet" );
-
- m_pDB = sqlite_open( database.c_str(), 0, NULL );
- if ( !m_pDB )
- throw sPerrorException( "Could not connect to the SQLite database '" + database + "'" );
-}
-
-
-// Destructor.
-SSQLite::~SSQLite( void )
-{
- sqlite_close( m_pDB );
-}
-
-
-// Constructs a SSqlException object.
-SSqlException SSQLite::sPerrorException( const std::string & reason )
-{
- return SSqlException( reason );
-}
-
-
-// Performs a query.
-int SSQLite::doQuery( const std::string & query, result_t & result )
-{
- result.clear();
-
- doQuery( query );
-
- row_t row;
- while( getRow( row ))
- result.push_back( row );
-
- return result.size();
-}
-
-
-// Performs a query.
-int SSQLite::doQuery( const std::string & query )
-{
- const char *pOut;
-
- // Execute the query.
- char *pError = NULL;
- if ( sqlite_compile( m_pDB, query.c_str(), &pOut, &m_pVM, &pError ) != SQLITE_OK )
- throw sPerrorException( "Could not create SQLite VM for query" );
-
- if ( !m_pVM ) {
- std::string report( "Unable to compile SQLite statement" );
-
- if( pError )
- {
- report += string( ": " ) + pError;
- sqlite_freemem( pError );
- }
-
- sPerrorException( report );
- }
- return 0;
-}
-
-
-// Returns a row from the result set.
-bool SSQLite::getRow( row_t & row )
-{
- int numCols;
- int rc;
- const char **ppData;
- const char **ppColumnNames;
-
- row.clear();
-
- do
- {
- rc = sqlite_step( m_pVM, &numCols, &ppData, &ppColumnNames );
-
- if ( rc == SQLITE_BUSY )
- Utility::usleep( 250 ); // FIXME: Should this be increased, decreased, or is it Just Right? :)
- else
- break;
-
- } while ( true );
-
- if ( rc == SQLITE_ROW )
- {
- // Another row received, process it.
- for ( int i = 0; i < numCols; i++ )
- {
- if ( ppData[ i ] )
- row.push_back( ppData[ i ] );
- else
- row.push_back( "" ); // NULL value.
- }
-
- return true;
- }
-
- if ( rc == SQLITE_DONE )
- {
- // We're done, clean up.
- sqlite_finalize( m_pVM, NULL );
- m_pVM = NULL;
-
- return false;
- }
-
- // Something went wrong, complain.
- throw sPerrorException( "Error while retrieving SQLite query results" );
-
- // Prevent some compilers from complaining.
- return false;
-}
-
-
-// Escape a SQL query.
-std::string SSQLite::escape( const std::string & name)
-{
- std::string a;
-
- for( std::string::const_iterator i = name.begin(); i != name.end(); ++i )
- {
- if( *i == '\'')
- a += '\'';
-
- a += *i;
- }
-
- return a;
-}
-
|
[-]
[+]
|
Deleted |
pdns-3.1.tar.gz/modules/gsqlitebackend/ssqlite.hh
^
|
@@ -1,56 +0,0 @@
-
-//
-// SQLite backend for PowerDNS
-// Copyright (C) 2003, Michel Stol <michel@powerdns.com>
-//
-
-#ifndef SSQLITE_HH
-#define SSQLITE_HH
-
-#include <sqlite.h>
-#include "pdns/backends/gsql/ssql.hh"
-
-class SSQLite : public SSql
-{
-private:
- //! Pointer to the SQLite database instance.
- sqlite *m_pDB;
-
- //! Pointer to the SQLite virtual machine executing a query.
- sqlite_vm *m_pVM;
-
-protected:
-public:
- //! Constructor.
- SSQLite( const std::string & database );
-
- //! Destructor.
- ~SSQLite( void );
-
- //! Performs a query and puts answers in result
- int doQuery( const std::string & query, result_t & result );
-
- //! Performs a query, caller can retrieve answers with getRow
- int doQuery( const std::string & query );
-
- //! Performs a command that does not return rows
- int doCommand( const std::string & query )
- {
- result_t result;
- return doQuery(query, result); // 'result' is necessary to force doQuery to do the work, closing Debian bug 280359
- }
-
-
- //! Returns a row from a result set.
- bool getRow( row_t & row );
-
- //! Escapes the SQL query.
- std::string escape( const std::string & query );
-
- //! Used to create an backend specific exception message.
- SSqlException sPerrorException( const std::string & reason );
-
-};
-
-#endif // SSQLITE_HH
-
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/ldapbackend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/ldapbackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/ldapbackend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/luabackend/Makefile
^
|
@@ -206,13 +206,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/luabackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/luabackend/Makefile.in
^
|
@@ -206,8 +206,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/luabackend/reload.cc
^
|
@@ -61,9 +61,13 @@
lua_close(lua);
logging = ::arg().mustDo("query-logging") || mustDo("logging-query");
-
+
+#ifdef LUA_VERSION_MAJOR == 5 && LUA_VERSION_MINOR > 1
+ lua = luaL_newstate();
+#else
lua = lua_open();
-
+#endif
+
if (lua != NULL) {
lua_atpanic(lua, my_lua_panic);
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/mongodbbackend/Makefile
^
|
@@ -206,13 +206,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/mongodbbackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/mongodbbackend/Makefile.in
^
|
@@ -206,8 +206,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/mydnsbackend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/mydnsbackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/mydnsbackend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/opendbxbackend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/opendbxbackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/opendbxbackend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/oraclebackend/Makefile
^
|
@@ -205,13 +205,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/oraclebackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/oraclebackend/Makefile.in
^
|
@@ -205,8 +205,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/pipebackend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/pipebackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/pipebackend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/remotebackend/Makefile
^
|
@@ -205,13 +205,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/remotebackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/remotebackend/Makefile.in
^
|
@@ -205,8 +205,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/tinydnsbackend/Makefile
^
|
@@ -204,13 +204,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/tinydnsbackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/tinydnsbackend/Makefile.in
^
|
@@ -204,8 +204,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/tinydnsbackend/tinydnsbackend.cc
^
|
@@ -1,7 +1,6 @@
#include "tinydnsbackend.hh"
#include "pdns/lock.hh"
#include <cdb.h>
-#include <pdns/dnslabel.hh>
#include <pdns/misc.hh>
#include <pdns/iputils.hh>
#include <pdns/dnspacket.hh>
@@ -60,6 +59,7 @@
setArgPrefix("tinydns"+suffix);
d_suffix = suffix;
d_locations = mustDo("locations");
+ d_ignorebogus = mustDo("ignore-bogus-records");
d_taiepoch = 4611686018427387904ULL + getArgAsNum("tai-adjust");
}
@@ -131,7 +131,7 @@
d_cdbReader->searchAll();
DNSResourceRecord rr;
- while (get(rr)) {
+ while (get(rr)) {
if (rr.qtype.getCode() == QType::SOA) {
SOAData sd;
fillSOAData(rr.content, sd);
@@ -151,8 +151,7 @@
bool TinyDNSBackend::list(const string &target, int domain_id) {
d_isAxfr=true;
- DNSLabel l(target.c_str());
- string key = l.binary();
+ string key = simpleCompress(target);
d_cdbReader=new CDB(getArg("dbfile"));
return d_cdbReader->searchSuffix(key);
}
@@ -161,11 +160,10 @@
d_isAxfr = false;
string queryDomain = toLowerCanonic(qdomain);
- DNSLabel l(queryDomain.c_str());
- string key=l.binary();
+ string key=simpleCompress(queryDomain);
DLOG(L<<Logger::Debug<<backendname<<"[lookup] query for qtype ["<<qtype.getName()<<"] qdomain ["<<qdomain<<"]"<<endl);
-// DLOG(L<<Logger::Debug<<"[lookup] key ["<<makeHexDump(key)<<"]"<<endl);
+ DLOG(L<<Logger::Debug<<"[lookup] key ["<<makeHexDump(key)<<"]"<<endl);
d_isWildcardQuery = false;
if (key[0] == '\001' && key[1] == '\052') {
@@ -216,42 +214,41 @@
PacketReader pr(bytes);
rr.qtype = QType(pr.get16BitInt());
- char locwild = pr.get8BitInt();
- if(locwild != '\075' && (locwild == '\076' || locwild == '\053')) {
- if (d_isAxfr && d_locations) { // We skip records with a location in AXFR, unless we disable locations.
- continue;
- }
- char recloc[2];
- recloc[0] = pr.get8BitInt();
- recloc[1] = pr.get8BitInt();
-
- if (d_locations) {
- bool foundLocation = false;
- vector<string> locations = getLocations();
- while(locations.size() > 0) {
- string locId = locations.back();
- locations.pop_back();
-
- if (recloc[0] == locId[0] && recloc[1] == locId[1]) {
- foundLocation = true;
- break;
+ if(d_isAxfr || d_qtype.getCode() == QType::ANY || rr.qtype == d_qtype) {
+ char locwild = pr.get8BitInt();
+ if(locwild != '\075' && (locwild == '\076' || locwild == '\053')) {
+ if (d_isAxfr && d_locations) { // We skip records with a location in AXFR, unless we disable locations.
+ continue;
+ }
+ char recloc[2];
+ recloc[0] = pr.get8BitInt();
+ recloc[1] = pr.get8BitInt();
+
+ if (d_locations) {
+ bool foundLocation = false;
+ vector<string> locations = getLocations();
+ while(locations.size() > 0) {
+ string locId = locations.back();
+ locations.pop_back();
+
+ if (recloc[0] == locId[0] && recloc[1] == locId[1]) {
+ foundLocation = true;
+ break;
+ }
}
+ if (!foundLocation) {
+ continue;
+ }
}
- if (!foundLocation) {
- continue;
- }
}
- }
- if(d_isAxfr || d_qtype.getCode() == QType::ANY || rr.qtype == d_qtype) {
-
if (d_isAxfr && (val[2] == '\052' || val[2] == '\053' )) { // Keys are not stored with wildcard character, with AXFR we need to add that.
key.insert(0, 1, '\052');
key.insert(0, 1, '\001');
}
- DNSLabel dnsKey(key.c_str(), key.size());
- rr.qname = dnsKey.human();
- rr.qname = rr.qname.erase(rr.qname.size()-1, 1);// strip the last dot, packethandler needs this.
+ rr.qname.clear();
+ simpleExpandTo(key, 0, rr.qname);
+ rr.qname = stripDot(rr.qname); // strip the last dot, packethandler needs this.
rr.domain_id=-1;
// 11:13.21 <@ahu> IT IS ALWAYS AUTH --- well not really because we are just a backend :-)
// We could actually do NSEC3-NARROW DNSSEC according to Habbie, if we do, we need to change something ehre.
@@ -272,24 +269,33 @@
continue;
}
}
-
- DNSRecord dr;
- dr.d_class = 1;
- dr.d_type = rr.qtype.getCode();
- dr.d_clen = val.size()-pr.d_pos;
- DNSRecordContent *drc = DNSRecordContent::mastermake(dr, pr);
-
- string content = drc->getZoneRepresentation();
- delete drc;
- if(rr.qtype.getCode() == QType::MX || rr.qtype.getCode() == QType::SRV) {
- vector<string>parts;
- stringtok(parts,content," ");
- rr.priority=atoi(parts[0].c_str());
- rr.content=content.substr(parts[0].size()+1);
- } else {
- rr.content = content;
+ try {
+ DNSRecord dr;
+ dr.d_class = 1;
+ dr.d_type = rr.qtype.getCode();
+ dr.d_clen = val.size()-pr.d_pos;
+ DNSRecordContent *drc = DNSRecordContent::mastermake(dr, pr);
+
+ string content = drc->getZoneRepresentation();
+ cerr<<"CONTENT: "<<content<<endl;
+ delete drc;
+ if(rr.qtype.getCode() == QType::MX || rr.qtype.getCode() == QType::SRV) {
+ vector<string>parts;
+ stringtok(parts,content," ");
+ rr.priority=atoi(parts[0].c_str());
+ rr.content=content.substr(parts[0].size()+1);
+ } else {
+ rr.content = content;
+ }
+ }
+ catch (...) {
+ if (d_ignorebogus) {
+ L<<Logger::Error<<backendname<<"Failed to parse record content for "<<rr.qname<<" with type "<<rr.qtype.getName()<<". Ignoring!"<<endl;
+ continue;
+ } else
+ throw;
}
- DLOG(L<<Logger::Debug<<backendname<<"Returning ["<<rr.content<<"] for ["<<rr.qname<<"] of RecordType ["<<rr.qtype.getName()<<"]"<<endl;);
+// DLOG(L<<Logger::Debug<<backendname<<"Returning ["<<rr.content<<"] for ["<<rr.qname<<"] of RecordType ["<<rr.qtype.getName()<<"]"<<endl;);
return true;
}
} // end of while
@@ -308,8 +314,9 @@
void declareArguments(const string &suffix="") {
declare(suffix, "notify-on-startup", "Tell the TinyDNSBackend to notify all the slave nameservers on startup. Default is no.", "no");
declare(suffix, "dbfile", "Location of the cdb data file", "data.cdb");
- declare(suffix, "tai-adjust", "This adjusts the TAI value if timestamps are used. These seconds will be added to the start point (1970) and will allow you to adjust for leap seconds. The default is 10.", "10");
+ declare(suffix, "tai-adjust", "This adjusts the TAI value if timestamps are used. These seconds will be added to the start point (1970) and will allow you to adjust for leap seconds. The default is 11.", "11");
declare(suffix, "locations", "Enable or Disable location support in the backend. Changing the value to 'no' will make the backend ignore the locations. This then returns all records!", "yes");
+ declare(suffix, "ignore-bogus-records", "The data.cdb file might have some wront record data, this causes PowerDNS to fail, where tinydns would send out truncated data. This option makes powerdns ignore that data!", "no");
}
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/tinydnsbackend/tinydnsbackend.hh
^
|
@@ -80,7 +80,7 @@
bool d_isWildcardQuery; // Indicate if the query received was a wildcard query.
bool d_isAxfr; // Indicate if we received a list() and not a lookup().
bool d_locations;
- bool d_timestamps;
+ bool d_ignorebogus;
string d_suffix;
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/xdbbackend/Makefile
^
|
@@ -215,13 +215,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/modules/xdbbackend
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/modules/xdbbackend/Makefile.in
^
|
@@ -215,8 +215,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns.spec
^
|
@@ -1,6 +1,6 @@
BuildRoot: /tmp/pdns
Name: pdns-static
-Version: 3.1
+Version: 3.2pre
Release: 1
Summary: extremely powerful and versatile nameserver
License: GPL
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/.deps/sdig.Po
^
|
@@ -1 +1,2969 @@
-# dummy
+sdig.o: sdig.cc dnsparser.hh /usr/include/c++/4.6/map \
+ /usr/include/c++/4.6/bits/stl_tree.h \
+ /usr/include/c++/4.6/bits/stl_algobase.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/c++config.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/os_defines.h \
+ /usr/include/features.h /usr/include/x86_64-linux-gnu/bits/predefs.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/cpu_defines.h \
+ /usr/include/c++/4.6/bits/functexcept.h \
+ /usr/include/c++/4.6/bits/exception_defines.h \
+ /usr/include/c++/4.6/bits/cpp_type_traits.h \
+ /usr/include/c++/4.6/ext/type_traits.h \
+ /usr/include/c++/4.6/ext/numeric_traits.h \
+ /usr/include/c++/4.6/bits/stl_pair.h /usr/include/c++/4.6/bits/move.h \
+ /usr/include/c++/4.6/bits/concept_check.h \
+ /usr/include/c++/4.6/bits/stl_iterator_base_types.h \
+ /usr/include/c++/4.6/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/4.6/bits/stl_iterator.h \
+ /usr/include/c++/4.6/debug/debug.h /usr/include/c++/4.6/bits/allocator.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/c++allocator.h \
+ /usr/include/c++/4.6/ext/new_allocator.h /usr/include/c++/4.6/new \
+ /usr/include/c++/4.6/exception /usr/include/c++/4.6/bits/stl_function.h \
+ /usr/include/c++/4.6/backward/binders.h \
+ /usr/include/c++/4.6/bits/stl_map.h \
+ /usr/include/c++/4.6/initializer_list \
+ /usr/include/c++/4.6/bits/stl_multimap.h \
+ /usr/include/c++/4.6/bits/range_access.h /usr/include/c++/4.6/sstream \
+ /usr/include/c++/4.6/istream /usr/include/c++/4.6/ios \
+ /usr/include/c++/4.6/iosfwd /usr/include/c++/4.6/bits/stringfwd.h \
+ /usr/include/c++/4.6/bits/postypes.h /usr/include/c++/4.6/cwchar \
+ /usr/include/wchar.h /usr/include/stdio.h \
+ /usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdarg.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/lib/gcc/x86_64-linux-gnu/4.6/include/stddef.h \
+ /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/wchar2.h \
+ /usr/include/c++/4.6/bits/char_traits.h \
+ /usr/include/c++/4.6/bits/localefwd.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/c++locale.h \
+ /usr/include/c++/4.6/clocale /usr/include/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/4.6/cctype \
+ /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/c++/4.6/bits/ios_base.h \
+ /usr/include/c++/4.6/ext/atomicity.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/gthr.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/gthr-default.h \
+ /usr/include/pthread.h /usr/include/sched.h /usr/include/time.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h /usr/include/unistd.h \
+ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \
+ /usr/include/x86_64-linux-gnu/bits/environments.h \
+ /usr/include/x86_64-linux-gnu/bits/confname.h /usr/include/getopt.h \
+ /usr/include/x86_64-linux-gnu/bits/unistd.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/atomic_word.h \
+ /usr/include/c++/4.6/bits/locale_classes.h /usr/include/c++/4.6/string \
+ /usr/include/c++/4.6/bits/ostream_insert.h \
+ /usr/include/c++/4.6/bits/cxxabi_forced.h \
+ /usr/include/c++/4.6/bits/basic_string.h \
+ /usr/include/c++/4.6/bits/basic_string.tcc \
+ /usr/include/c++/4.6/bits/locale_classes.tcc \
+ /usr/include/c++/4.6/streambuf /usr/include/c++/4.6/bits/streambuf.tcc \
+ /usr/include/c++/4.6/bits/basic_ios.h \
+ /usr/include/c++/4.6/bits/locale_facets.h /usr/include/c++/4.6/cwctype \
+ /usr/include/wctype.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/ctype_base.h \
+ /usr/include/c++/4.6/bits/streambuf_iterator.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/ctype_inline.h \
+ /usr/include/c++/4.6/bits/locale_facets.tcc \
+ /usr/include/c++/4.6/bits/basic_ios.tcc /usr/include/c++/4.6/ostream \
+ /usr/include/c++/4.6/bits/ostream.tcc \
+ /usr/include/c++/4.6/bits/istream.tcc \
+ /usr/include/c++/4.6/bits/sstream.tcc /usr/include/c++/4.6/stdexcept \
+ /usr/include/c++/4.6/iostream /usr/include/c++/4.6/vector \
+ /usr/include/c++/4.6/bits/stl_construct.h \
+ /usr/include/c++/4.6/bits/stl_uninitialized.h \
+ /usr/include/c++/4.6/bits/stl_vector.h \
+ /usr/include/c++/4.6/bits/stl_bvector.h \
+ /usr/include/c++/4.6/bits/vector.tcc /usr/include/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ misc.hh /usr/include/inttypes.h \
+ /usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdint.h /usr/include/stdint.h \
+ /usr/include/c++/4.6/cstring /usr/include/string.h \
+ /usr/include/x86_64-linux-gnu/bits/string3.h /usr/include/c++/4.6/cstdio \
+ /usr/include/libio.h /usr/include/_G_config.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio2.h \
+ /usr/include/boost/algorithm/string.hpp \
+ /usr/include/boost/algorithm/string/std_containers_traits.hpp \
+ /usr/include/boost/config.hpp /usr/include/boost/config/user.hpp \
+ /usr/include/boost/config/select_compiler_config.hpp \
+ /usr/include/boost/config/compiler/gcc.hpp \
+ /usr/include/boost/config/select_stdlib_config.hpp \
+ /usr/include/c++/4.6/cstddef \
+ /usr/include/boost/config/no_tr1/utility.hpp \
+ /usr/include/c++/4.6/utility /usr/include/c++/4.6/bits/stl_relops.h \
+ /usr/include/boost/config/stdlib/libstdcpp3.hpp \
+ /usr/include/boost/config/select_platform_config.hpp \
+ /usr/include/boost/config/platform/linux.hpp \
+ /usr/include/c++/4.6/cstdlib /usr/include/stdlib.h \
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/sigset.h \
+ /usr/include/x86_64-linux-gnu/bits/select2.h \
+ /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/alloca.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib.h \
+ /usr/include/boost/config/posix_features.hpp \
+ /usr/include/boost/config/suffix.hpp \
+ /usr/include/boost/algorithm/string/std/string_traits.hpp \
+ /usr/include/boost/algorithm/string/yes_no_type.hpp \
+ /usr/include/boost/algorithm/string/sequence_traits.hpp \
+ /usr/include/boost/mpl/bool.hpp /usr/include/boost/mpl/bool_fwd.hpp \
+ /usr/include/boost/mpl/aux_/adl_barrier.hpp \
+ /usr/include/boost/mpl/aux_/config/adl.hpp \
+ /usr/include/boost/mpl/aux_/config/msvc.hpp \
+ /usr/include/boost/mpl/aux_/config/intel.hpp \
+ /usr/include/boost/mpl/aux_/config/gcc.hpp \
+ /usr/include/boost/mpl/aux_/config/workaround.hpp \
+ /usr/include/boost/detail/workaround.hpp \
+ /usr/include/boost/mpl/integral_c_tag.hpp \
+ /usr/include/boost/mpl/aux_/config/static_constant.hpp \
+ /usr/include/boost/algorithm/string/std/list_traits.hpp \
+ /usr/include/c++/4.6/list /usr/include/c++/4.6/bits/stl_list.h \
+ /usr/include/c++/4.6/bits/list.tcc \
+ /usr/include/boost/algorithm/string/std/slist_traits.hpp \
+ /usr/include/boost/algorithm/string/config.hpp \
+ /usr/include/c++/4.6/ext/slist /usr/include/c++/4.6/algorithm \
+ /usr/include/c++/4.6/bits/stl_algo.h \
+ /usr/include/c++/4.6/bits/algorithmfwd.h \
+ /usr/include/c++/4.6/bits/stl_heap.h \
+ /usr/include/c++/4.6/bits/stl_tempbuf.h \
+ /usr/include/boost/algorithm/string/trim.hpp \
+ /usr/include/boost/range/begin.hpp /usr/include/boost/range/config.hpp \
+ /usr/include/boost/range/iterator.hpp \
+ /usr/include/boost/range/mutable_iterator.hpp \
+ /usr/include/boost/range/detail/extract_optional_type.hpp \
+ /usr/include/boost/iterator/iterator_traits.hpp \
+ /usr/include/boost/detail/iterator.hpp /usr/include/c++/4.6/iterator \
+ /usr/include/c++/4.6/bits/stream_iterator.h \
+ /usr/include/boost/range/const_iterator.hpp \
+ /usr/include/boost/type_traits/remove_const.hpp \
+ /usr/include/boost/type_traits/is_volatile.hpp \
+ /usr/include/boost/type_traits/detail/cv_traits_impl.hpp \
+ /usr/include/boost/type_traits/detail/bool_trait_def.hpp \
+ /usr/include/boost/type_traits/detail/template_arity_spec.hpp \
+ /usr/include/boost/mpl/int.hpp /usr/include/boost/mpl/int_fwd.hpp \
+ /usr/include/boost/mpl/aux_/nttp_decl.hpp \
+ /usr/include/boost/mpl/aux_/config/nttp.hpp \
+ /usr/include/boost/mpl/aux_/integral_wrapper.hpp \
+ /usr/include/boost/mpl/aux_/static_cast.hpp \
+ /usr/include/boost/preprocessor/cat.hpp \
+ /usr/include/boost/preprocessor/config/config.hpp \
+ /usr/include/boost/mpl/aux_/template_arity_fwd.hpp \
+ /usr/include/boost/mpl/aux_/preprocessor/params.hpp \
+ /usr/include/boost/mpl/aux_/config/preprocessor.hpp \
+ /usr/include/boost/preprocessor/comma_if.hpp \
+ /usr/include/boost/preprocessor/punctuation/comma_if.hpp \
+ /usr/include/boost/preprocessor/control/if.hpp \
+ /usr/include/boost/preprocessor/control/iif.hpp \
+ /usr/include/boost/preprocessor/logical/bool.hpp \
+ /usr/include/boost/preprocessor/facilities/empty.hpp \
+ /usr/include/boost/preprocessor/punctuation/comma.hpp \
+ /usr/include/boost/preprocessor/repeat.hpp \
+ /usr/include/boost/preprocessor/repetition/repeat.hpp \
+ /usr/include/boost/preprocessor/debug/error.hpp \
+ /usr/include/boost/preprocessor/detail/auto_rec.hpp \
+ /usr/include/boost/preprocessor/tuple/eat.hpp \
+ /usr/include/boost/preprocessor/inc.hpp \
+ /usr/include/boost/preprocessor/arithmetic/inc.hpp \
+ /usr/include/boost/mpl/aux_/config/lambda.hpp \
+ /usr/include/boost/mpl/aux_/config/ttp.hpp \
+ /usr/include/boost/mpl/aux_/config/ctps.hpp \
+ /usr/include/boost/mpl/aux_/config/overload_resolution.hpp \
+ /usr/include/boost/type_traits/integral_constant.hpp \
+ /usr/include/boost/mpl/integral_c.hpp \
+ /usr/include/boost/mpl/integral_c_fwd.hpp \
+ /usr/include/boost/mpl/aux_/lambda_support.hpp \
+ /usr/include/boost/type_traits/detail/bool_trait_undef.hpp \
+ /usr/include/boost/type_traits/broken_compiler_spec.hpp \
+ /usr/include/boost/type_traits/detail/type_trait_def.hpp \
+ /usr/include/boost/type_traits/detail/type_trait_undef.hpp \
+ /usr/include/boost/type_traits/is_const.hpp \
+ /usr/include/boost/type_traits/is_reference.hpp \
+ /usr/include/boost/type_traits/config.hpp \
+ /usr/include/boost/type_traits/is_lvalue_reference.hpp \
+ /usr/include/boost/type_traits/is_rvalue_reference.hpp \
+ /usr/include/boost/type_traits/ice.hpp \
+ /usr/include/boost/type_traits/detail/yes_no_type.hpp \
+ /usr/include/boost/type_traits/detail/ice_or.hpp \
+ /usr/include/boost/type_traits/detail/ice_and.hpp \
+ /usr/include/boost/type_traits/detail/ice_not.hpp \
+ /usr/include/boost/type_traits/detail/ice_eq.hpp \
+ /usr/include/boost/mpl/eval_if.hpp /usr/include/boost/mpl/if.hpp \
+ /usr/include/boost/mpl/aux_/value_wknd.hpp \
+ /usr/include/boost/mpl/aux_/config/integral.hpp \
+ /usr/include/boost/mpl/aux_/config/eti.hpp \
+ /usr/include/boost/mpl/aux_/na_spec.hpp \
+ /usr/include/boost/mpl/lambda_fwd.hpp \
+ /usr/include/boost/mpl/void_fwd.hpp /usr/include/boost/mpl/aux_/na.hpp \
+ /usr/include/boost/mpl/aux_/na_fwd.hpp \
+ /usr/include/boost/mpl/aux_/lambda_arity_param.hpp \
+ /usr/include/boost/mpl/aux_/arity.hpp \
+ /usr/include/boost/mpl/aux_/config/dtp.hpp \
+ /usr/include/boost/mpl/aux_/preprocessor/enum.hpp \
+ /usr/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /usr/include/boost/mpl/limits/arity.hpp \
+ /usr/include/boost/preprocessor/logical/and.hpp \
+ /usr/include/boost/preprocessor/logical/bitand.hpp \
+ /usr/include/boost/preprocessor/identity.hpp \
+ /usr/include/boost/preprocessor/facilities/identity.hpp \
+ /usr/include/boost/preprocessor/empty.hpp \
+ /usr/include/boost/preprocessor/arithmetic/add.hpp \
+ /usr/include/boost/preprocessor/arithmetic/dec.hpp \
+ /usr/include/boost/preprocessor/control/while.hpp \
+ /usr/include/boost/preprocessor/list/fold_left.hpp \
+ /usr/include/boost/preprocessor/list/detail/fold_left.hpp \
+ /usr/include/boost/preprocessor/control/expr_iif.hpp \
+ /usr/include/boost/preprocessor/list/adt.hpp \
+ /usr/include/boost/preprocessor/detail/is_binary.hpp \
+ /usr/include/boost/preprocessor/detail/check.hpp \
+ /usr/include/boost/preprocessor/logical/compl.hpp \
+ /usr/include/boost/preprocessor/list/fold_right.hpp \
+ /usr/include/boost/preprocessor/list/detail/fold_right.hpp \
+ /usr/include/boost/preprocessor/list/reverse.hpp \
+ /usr/include/boost/preprocessor/control/detail/while.hpp \
+ /usr/include/boost/preprocessor/tuple/elem.hpp \
+ /usr/include/boost/preprocessor/arithmetic/sub.hpp \
+ /usr/include/boost/range/end.hpp \
+ /usr/include/boost/range/detail/implementation_help.hpp \
+ /usr/include/boost/range/detail/common.hpp \
+ /usr/include/boost/range/detail/sfinae.hpp \
+ /usr/include/boost/type_traits/is_array.hpp \
+ /usr/include/boost/type_traits/is_void.hpp \
+ /usr/include/boost/type_traits/is_same.hpp \
+ /usr/include/boost/range/as_literal.hpp \
+ /usr/include/boost/range/iterator_range.hpp \
+ /usr/include/boost/range/iterator_range_core.hpp \
+ /usr/include/boost/assert.hpp /usr/include/assert.h \
+ /usr/include/boost/current_function.hpp \
+ /usr/include/boost/iterator/iterator_facade.hpp \
+ /usr/include/boost/iterator.hpp \
+ /usr/include/boost/iterator/interoperable.hpp \
+ /usr/include/boost/mpl/or.hpp \
+ /usr/include/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /usr/include/boost/mpl/aux_/nested_type_wknd.hpp \
+ /usr/include/boost/mpl/aux_/include_preprocessed.hpp \
+ /usr/include/boost/mpl/aux_/config/compiler.hpp \
+ /usr/include/boost/preprocessor/stringize.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /usr/include/boost/type_traits/is_convertible.hpp \
+ /usr/include/boost/type_traits/intrinsics.hpp \
+ /usr/include/boost/type_traits/add_reference.hpp \
+ /usr/include/boost/type_traits/is_arithmetic.hpp \
+ /usr/include/boost/type_traits/is_integral.hpp \
+ /usr/include/boost/type_traits/is_float.hpp \
+ /usr/include/boost/type_traits/is_abstract.hpp \
+ /usr/include/boost/type_traits/add_rvalue_reference.hpp \
+ /usr/include/boost/iterator/detail/config_def.hpp \
+ /usr/include/boost/iterator/detail/config_undef.hpp \
+ /usr/include/boost/iterator/detail/facade_iterator_category.hpp \
+ /usr/include/boost/iterator/iterator_categories.hpp \
+ /usr/include/boost/mpl/identity.hpp \
+ /usr/include/boost/mpl/placeholders.hpp /usr/include/boost/mpl/arg.hpp \
+ /usr/include/boost/mpl/arg_fwd.hpp \
+ /usr/include/boost/mpl/aux_/na_assert.hpp \
+ /usr/include/boost/mpl/assert.hpp /usr/include/boost/mpl/not.hpp \
+ /usr/include/boost/mpl/aux_/yes_no.hpp \
+ /usr/include/boost/mpl/aux_/config/arrays.hpp \
+ /usr/include/boost/mpl/aux_/config/pp_counter.hpp \
+ /usr/include/boost/mpl/aux_/arity_spec.hpp \
+ /usr/include/boost/mpl/aux_/arg_typedef.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /usr/include/boost/static_assert.hpp /usr/include/boost/mpl/and.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /usr/include/boost/detail/indirect_traits.hpp \
+ /usr/include/boost/type_traits/is_function.hpp \
+ /usr/include/boost/type_traits/detail/false_result.hpp \
+ /usr/include/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /usr/include/boost/type_traits/is_pointer.hpp \
+ /usr/include/boost/type_traits/is_member_pointer.hpp \
+ /usr/include/boost/type_traits/is_member_function_pointer.hpp \
+ /usr/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /usr/include/boost/type_traits/remove_cv.hpp \
+ /usr/include/boost/type_traits/is_class.hpp \
+ /usr/include/boost/type_traits/remove_reference.hpp \
+ /usr/include/boost/type_traits/remove_pointer.hpp \
+ /usr/include/boost/iterator/detail/enable_if.hpp \
+ /usr/include/boost/implicit_cast.hpp \
+ /usr/include/boost/type_traits/add_const.hpp \
+ /usr/include/boost/type_traits/add_pointer.hpp \
+ /usr/include/boost/type_traits/is_pod.hpp \
+ /usr/include/boost/type_traits/is_scalar.hpp \
+ /usr/include/boost/type_traits/is_enum.hpp \
+ /usr/include/boost/mpl/always.hpp /usr/include/boost/mpl/apply.hpp \
+ /usr/include/boost/mpl/apply_fwd.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /usr/include/boost/mpl/apply_wrap.hpp \
+ /usr/include/boost/mpl/aux_/has_apply.hpp \
+ /usr/include/boost/mpl/has_xxx.hpp \
+ /usr/include/boost/mpl/aux_/type_wrapper.hpp \
+ /usr/include/boost/mpl/aux_/config/has_xxx.hpp \
+ /usr/include/boost/mpl/aux_/config/msvc_typename.hpp \
+ /usr/include/boost/preprocessor/array/elem.hpp \
+ /usr/include/boost/preprocessor/array/data.hpp \
+ /usr/include/boost/preprocessor/array/size.hpp \
+ /usr/include/boost/preprocessor/repetition/enum_params.hpp \
+ /usr/include/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /usr/include/boost/mpl/aux_/config/has_apply.hpp \
+ /usr/include/boost/mpl/aux_/msvc_never_true.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /usr/include/boost/mpl/lambda.hpp /usr/include/boost/mpl/bind.hpp \
+ /usr/include/boost/mpl/bind_fwd.hpp \
+ /usr/include/boost/mpl/aux_/config/bind.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /usr/include/boost/mpl/next.hpp /usr/include/boost/mpl/next_prior.hpp \
+ /usr/include/boost/mpl/aux_/common_name_wknd.hpp \
+ /usr/include/boost/mpl/protect.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /usr/include/boost/mpl/aux_/full_lambda.hpp \
+ /usr/include/boost/mpl/quote.hpp /usr/include/boost/mpl/void.hpp \
+ /usr/include/boost/mpl/aux_/has_type.hpp \
+ /usr/include/boost/mpl/aux_/config/bcc.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /usr/include/boost/mpl/aux_/template_arity.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /usr/include/boost/range/functions.hpp /usr/include/boost/range/size.hpp \
+ /usr/include/boost/range/difference_type.hpp \
+ /usr/include/boost/range/distance.hpp /usr/include/boost/range/empty.hpp \
+ /usr/include/boost/range/rbegin.hpp \
+ /usr/include/boost/range/reverse_iterator.hpp \
+ /usr/include/boost/iterator/reverse_iterator.hpp \
+ /usr/include/boost/utility.hpp /usr/include/boost/utility/addressof.hpp \
+ /usr/include/boost/utility/base_from_member.hpp \
+ /usr/include/boost/preprocessor/repetition/enum_binary_params.hpp \
+ /usr/include/boost/preprocessor/tuple/rem.hpp \
+ /usr/include/boost/preprocessor/repetition/repeat_from_to.hpp \
+ /usr/include/boost/utility/binary.hpp \
+ /usr/include/boost/preprocessor/control/deduce_d.hpp \
+ /usr/include/boost/preprocessor/seq/cat.hpp \
+ /usr/include/boost/preprocessor/seq/fold_left.hpp \
+ /usr/include/boost/preprocessor/seq/seq.hpp \
+ /usr/include/boost/preprocessor/seq/elem.hpp \
+ /usr/include/boost/preprocessor/seq/size.hpp \
+ /usr/include/boost/preprocessor/seq/transform.hpp \
+ /usr/include/boost/preprocessor/arithmetic/mod.hpp \
+ /usr/include/boost/preprocessor/arithmetic/detail/div_base.hpp \
+ /usr/include/boost/preprocessor/comparison/less_equal.hpp \
+ /usr/include/boost/preprocessor/logical/not.hpp \
+ /usr/include/boost/utility/enable_if.hpp \
+ /usr/include/boost/checked_delete.hpp /usr/include/boost/next_prior.hpp \
+ /usr/include/boost/noncopyable.hpp \
+ /usr/include/boost/iterator/iterator_adaptor.hpp \
+ /usr/include/boost/range/rend.hpp \
+ /usr/include/boost/range/algorithm/equal.hpp \
+ /usr/include/boost/range/concepts.hpp \
+ /usr/include/boost/concept_check.hpp \
+ /usr/include/boost/concept/assert.hpp \
+ /usr/include/boost/concept/detail/general.hpp \
+ /usr/include/boost/concept/detail/backward_compatibility.hpp \
+ /usr/include/boost/concept/detail/has_constraints.hpp \
+ /usr/include/boost/type_traits/conversion_traits.hpp \
+ /usr/include/boost/concept/usage.hpp \
+ /usr/include/boost/concept/detail/concept_def.hpp \
+ /usr/include/boost/preprocessor/seq/for_each_i.hpp \
+ /usr/include/boost/preprocessor/repetition/for.hpp \
+ /usr/include/boost/preprocessor/repetition/detail/for.hpp \
+ /usr/include/boost/preprocessor/seq/enum.hpp \
+ /usr/include/boost/concept/detail/concept_undef.hpp \
+ /usr/include/boost/iterator/iterator_concepts.hpp \
+ /usr/include/boost/limits.hpp /usr/include/c++/4.6/limits \
+ /usr/include/boost/range/value_type.hpp \
+ /usr/include/boost/range/detail/misc_concept.hpp \
+ /usr/include/boost/range/detail/safe_bool.hpp \
+ /usr/include/boost/range/iterator_range_io.hpp \
+ /usr/include/boost/range/detail/str_types.hpp \
+ /usr/include/boost/range/size_type.hpp \
+ /usr/include/boost/algorithm/string/detail/trim.hpp \
+ /usr/include/boost/algorithm/string/classification.hpp \
+ /usr/include/c++/4.6/locale \
+ /usr/include/c++/4.6/bits/locale_facets_nonio.h \
+ /usr/include/c++/4.6/ctime \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/time_members.h \
+ /usr/include/c++/4.6/x86_64-linux-gnu/./bits/messages_members.h \
+ /usr/include/libintl.h /usr/include/c++/4.6/bits/codecvt.h \
+ /usr/include/c++/4.6/bits/locale_facets_nonio.tcc \
+ /usr/include/boost/algorithm/string/detail/classification.hpp \
+ /usr/include/c++/4.6/functional \
+ /usr/include/boost/algorithm/string/predicate_facade.hpp \
+ /usr/include/boost/algorithm/string/case_conv.hpp \
+ /usr/include/boost/iterator/transform_iterator.hpp \
+ /usr/include/boost/type_traits/function_traits.hpp \
+ /usr/include/boost/utility/result_of.hpp \
+ /usr/include/boost/preprocessor/iteration/iterate.hpp \
+ /usr/include/boost/preprocessor/slot/slot.hpp \
+ /usr/include/boost/preprocessor/slot/detail/def.hpp \
+ /usr/include/boost/preprocessor/repetition/enum_shifted_params.hpp \
+ /usr/include/boost/preprocessor/iteration/detail/iter/forward1.hpp \
+ /usr/include/boost/preprocessor/iteration/detail/bounds/lower1.hpp \
+ /usr/include/boost/preprocessor/slot/detail/shared.hpp \
+ /usr/include/boost/preprocessor/iteration/detail/bounds/upper1.hpp \
+ /usr/include/boost/utility/detail/result_of_iterate.hpp \
+ /usr/include/boost/algorithm/string/detail/case_conv.hpp \
+ /usr/include/boost/algorithm/string/predicate.hpp \
+ /usr/include/boost/algorithm/string/compare.hpp \
+ /usr/include/boost/algorithm/string/find.hpp \
+ /usr/include/boost/algorithm/string/finder.hpp \
+ /usr/include/boost/algorithm/string/constants.hpp \
+ /usr/include/boost/algorithm/string/detail/finder.hpp \
+ /usr/include/boost/algorithm/string/detail/predicate.hpp \
+ /usr/include/boost/algorithm/string/split.hpp \
+ /usr/include/boost/algorithm/string/iter_find.hpp \
+ /usr/include/boost/algorithm/string/concept.hpp \
+ /usr/include/boost/algorithm/string/find_iterator.hpp \
+ /usr/include/boost/algorithm/string/detail/find_iterator.hpp \
+ /usr/include/boost/function.hpp \
+ /usr/include/boost/preprocessor/iterate.hpp \
+ /usr/include/boost/function/detail/prologue.hpp \
+ /usr/include/c++/4.6/cassert \
+ /usr/include/boost/config/no_tr1/functional.hpp \
+ /usr/include/boost/throw_exception.hpp \
+ /usr/include/boost/exception/detail/attribute_noreturn.hpp \
+ /usr/include/boost/exception/exception.hpp \
+ /usr/include/boost/function/function_base.hpp \
+ /usr/include/c++/4.6/memory \
+ /usr/include/c++/4.6/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/4.6/backward/auto_ptr.h \
+ /usr/include/boost/detail/sp_typeinfo.hpp /usr/include/c++/4.6/typeinfo \
+ /usr/include/boost/integer.hpp /usr/include/boost/integer_fwd.hpp \
+ /usr/include/c++/4.6/climits \
+ /usr/lib/gcc/x86_64-linux-gnu/4.6/include-fixed/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/4.6/include-fixed/syslimits.h \
+ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/boost/cstdint.hpp /usr/include/boost/integer_traits.hpp \
+ /usr/include/boost/type_traits/has_trivial_copy.hpp \
+ /usr/include/boost/type_traits/has_trivial_destructor.hpp \
+ /usr/include/boost/type_traits/composite_traits.hpp \
+ /usr/include/boost/type_traits/is_union.hpp /usr/include/boost/ref.hpp \
+ /usr/include/boost/type_traits/alignment_of.hpp \
+ /usr/include/boost/type_traits/detail/size_t_trait_def.hpp \
+ /usr/include/boost/mpl/size_t.hpp /usr/include/boost/mpl/size_t_fwd.hpp \
+ /usr/include/boost/type_traits/detail/size_t_trait_undef.hpp \
+ /usr/include/boost/function_equal.hpp \
+ /usr/include/boost/function/function_fwd.hpp \
+ /usr/include/boost/mem_fn.hpp /usr/include/boost/bind/mem_fn.hpp \
+ /usr/include/boost/get_pointer.hpp \
+ /usr/include/boost/config/no_tr1/memory.hpp \
+ /usr/include/boost/bind/mem_fn_template.hpp \
+ /usr/include/boost/bind/mem_fn_cc.hpp \
+ /usr/include/boost/preprocessor/enum.hpp \
+ /usr/include/boost/preprocessor/repetition/enum.hpp \
+ /usr/include/boost/preprocessor/enum_params.hpp \
+ /usr/include/boost/function/detail/function_iterate.hpp \
+ /usr/include/boost/function/detail/maybe_include.hpp \
+ /usr/include/boost/function/function_template.hpp \
+ /usr/include/boost/detail/no_exceptions_support.hpp \
+ /usr/include/boost/algorithm/string/detail/util.hpp \
+ /usr/include/boost/algorithm/string/join.hpp \
+ /usr/include/boost/algorithm/string/detail/sequence.hpp \
+ /usr/include/boost/mpl/logical.hpp \
+ /usr/include/boost/algorithm/string/replace.hpp \
+ /usr/include/boost/algorithm/string/find_format.hpp \
+ /usr/include/c++/4.6/deque /usr/include/c++/4.6/bits/stl_deque.h \
+ /usr/include/c++/4.6/bits/deque.tcc \
+ /usr/include/boost/algorithm/string/detail/find_format.hpp \
+ /usr/include/boost/algorithm/string/detail/find_format_store.hpp \
+ /usr/include/boost/algorithm/string/detail/replace_storage.hpp \
+ /usr/include/boost/algorithm/string/detail/find_format_all.hpp \
+ /usr/include/boost/algorithm/string/formatter.hpp \
+ /usr/include/boost/algorithm/string/detail/formatter.hpp \
+ /usr/include/boost/algorithm/string/erase.hpp \
+ /usr/include/boost/multi_index_container.hpp \
+ /usr/include/boost/detail/allocator_utilities.hpp \
+ /usr/include/boost/mpl/at.hpp /usr/include/boost/mpl/at_fwd.hpp \
+ /usr/include/boost/mpl/aux_/at_impl.hpp \
+ /usr/include/boost/mpl/begin_end.hpp \
+ /usr/include/boost/mpl/begin_end_fwd.hpp \
+ /usr/include/boost/mpl/aux_/begin_end_impl.hpp \
+ /usr/include/boost/mpl/sequence_tag_fwd.hpp \
+ /usr/include/boost/mpl/aux_/has_begin.hpp \
+ /usr/include/boost/mpl/aux_/traits_lambda_spec.hpp \
+ /usr/include/boost/mpl/sequence_tag.hpp \
+ /usr/include/boost/mpl/aux_/has_tag.hpp \
+ /usr/include/boost/mpl/aux_/is_msvc_eti_arg.hpp \
+ /usr/include/boost/mpl/advance.hpp \
+ /usr/include/boost/mpl/advance_fwd.hpp /usr/include/boost/mpl/less.hpp \
+ /usr/include/boost/mpl/aux_/comparison_op.hpp \
+ /usr/include/boost/mpl/aux_/numeric_op.hpp \
+ /usr/include/boost/mpl/numeric_cast.hpp /usr/include/boost/mpl/tag.hpp \
+ /usr/include/boost/mpl/aux_/numeric_cast_utils.hpp \
+ /usr/include/boost/mpl/aux_/config/forwarding.hpp \
+ /usr/include/boost/mpl/aux_/msvc_eti_base.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/less.hpp \
+ /usr/include/boost/mpl/negate.hpp /usr/include/boost/mpl/long.hpp \
+ /usr/include/boost/mpl/long_fwd.hpp \
+ /usr/include/boost/mpl/aux_/advance_forward.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \
+ /usr/include/boost/mpl/aux_/advance_backward.hpp \
+ /usr/include/boost/mpl/prior.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \
+ /usr/include/boost/mpl/deref.hpp \
+ /usr/include/boost/mpl/aux_/msvc_type.hpp \
+ /usr/include/boost/mpl/contains.hpp \
+ /usr/include/boost/mpl/contains_fwd.hpp \
+ /usr/include/boost/mpl/aux_/contains_impl.hpp \
+ /usr/include/boost/mpl/find.hpp /usr/include/boost/mpl/find_if.hpp \
+ /usr/include/boost/mpl/aux_/find_if_pred.hpp \
+ /usr/include/boost/mpl/aux_/iter_apply.hpp \
+ /usr/include/boost/mpl/iter_fold_if.hpp /usr/include/boost/mpl/pair.hpp \
+ /usr/include/boost/mpl/aux_/iter_fold_if_impl.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \
+ /usr/include/boost/mpl/same_as.hpp \
+ /usr/include/boost/mpl/aux_/lambda_spec.hpp \
+ /usr/include/boost/mpl/size.hpp /usr/include/boost/mpl/size_fwd.hpp \
+ /usr/include/boost/mpl/aux_/size_impl.hpp \
+ /usr/include/boost/mpl/distance.hpp \
+ /usr/include/boost/mpl/distance_fwd.hpp \
+ /usr/include/boost/mpl/iter_fold.hpp /usr/include/boost/mpl/O1_size.hpp \
+ /usr/include/boost/mpl/O1_size_fwd.hpp \
+ /usr/include/boost/mpl/aux_/O1_size_impl.hpp \
+ /usr/include/boost/mpl/aux_/has_size.hpp \
+ /usr/include/boost/mpl/aux_/iter_fold_impl.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \
+ /usr/include/boost/mpl/iterator_range.hpp \
+ /usr/include/boost/multi_index_container_fwd.hpp \
+ /usr/include/boost/multi_index/identity.hpp \
+ /usr/include/boost/multi_index/identity_fwd.hpp \
+ /usr/include/boost/multi_index/indexed_by.hpp \
+ /usr/include/boost/mpl/vector.hpp \
+ /usr/include/boost/mpl/limits/vector.hpp \
+ /usr/include/boost/mpl/vector/vector20.hpp \
+ /usr/include/boost/mpl/vector/vector10.hpp \
+ /usr/include/boost/mpl/vector/vector0.hpp \
+ /usr/include/boost/mpl/vector/aux_/at.hpp \
+ /usr/include/boost/mpl/vector/aux_/tag.hpp \
+ /usr/include/boost/mpl/aux_/config/typeof.hpp \
+ /usr/include/boost/mpl/vector/aux_/front.hpp \
+ /usr/include/boost/mpl/front_fwd.hpp \
+ /usr/include/boost/mpl/vector/aux_/push_front.hpp \
+ /usr/include/boost/mpl/push_front_fwd.hpp \
+ /usr/include/boost/mpl/vector/aux_/item.hpp \
+ /usr/include/boost/mpl/vector/aux_/pop_front.hpp \
+ /usr/include/boost/mpl/pop_front_fwd.hpp \
+ /usr/include/boost/mpl/vector/aux_/push_back.hpp \
+ /usr/include/boost/mpl/push_back_fwd.hpp \
+ /usr/include/boost/mpl/vector/aux_/pop_back.hpp \
+ /usr/include/boost/mpl/pop_back_fwd.hpp \
+ /usr/include/boost/mpl/vector/aux_/back.hpp \
+ /usr/include/boost/mpl/back_fwd.hpp \
+ /usr/include/boost/mpl/vector/aux_/clear.hpp \
+ /usr/include/boost/mpl/clear_fwd.hpp \
+ /usr/include/boost/mpl/vector/aux_/vector0.hpp \
+ /usr/include/boost/mpl/vector/aux_/iterator.hpp \
+ /usr/include/boost/mpl/iterator_tags.hpp /usr/include/boost/mpl/plus.hpp \
+ /usr/include/boost/mpl/aux_/arithmetic_op.hpp \
+ /usr/include/boost/mpl/aux_/largest_int.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/plus.hpp \
+ /usr/include/boost/mpl/minus.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/minus.hpp \
+ /usr/include/boost/mpl/vector/aux_/O1_size.hpp \
+ /usr/include/boost/mpl/vector/aux_/size.hpp \
+ /usr/include/boost/mpl/vector/aux_/empty.hpp \
+ /usr/include/boost/mpl/empty_fwd.hpp \
+ /usr/include/boost/mpl/vector/aux_/begin_end.hpp \
+ /usr/include/boost/mpl/vector/aux_/include_preprocessed.hpp \
+ /usr/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \
+ /usr/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/vector.hpp \
+ /usr/include/boost/preprocessor/control/expr_if.hpp \
+ /usr/include/boost/multi_index/ordered_index_fwd.hpp \
+ /usr/include/boost/multi_index/detail/ord_index_args.hpp \
+ /usr/include/boost/multi_index/tag.hpp \
+ /usr/include/boost/multi_index/detail/no_duplicate_tags.hpp \
+ /usr/include/boost/mpl/fold.hpp \
+ /usr/include/boost/mpl/aux_/fold_impl.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \
+ /usr/include/boost/mpl/set/set0.hpp \
+ /usr/include/boost/mpl/set/aux_/at_impl.hpp \
+ /usr/include/boost/mpl/set/aux_/has_key_impl.hpp \
+ /usr/include/boost/mpl/set/aux_/tag.hpp \
+ /usr/include/boost/mpl/has_key_fwd.hpp \
+ /usr/include/boost/mpl/aux_/overload_names.hpp \
+ /usr/include/boost/mpl/aux_/ptr_to_ref.hpp \
+ /usr/include/boost/mpl/aux_/config/operators.hpp \
+ /usr/include/boost/mpl/set/aux_/clear_impl.hpp \
+ /usr/include/boost/mpl/set/aux_/set0.hpp \
+ /usr/include/boost/mpl/set/aux_/size_impl.hpp \
+ /usr/include/boost/mpl/set/aux_/empty_impl.hpp \
+ /usr/include/boost/mpl/set/aux_/insert_impl.hpp \
+ /usr/include/boost/mpl/insert_fwd.hpp \
+ /usr/include/boost/mpl/set/aux_/item.hpp /usr/include/boost/mpl/base.hpp \
+ /usr/include/boost/mpl/set/aux_/erase_impl.hpp \
+ /usr/include/boost/mpl/erase_fwd.hpp \
+ /usr/include/boost/mpl/set/aux_/erase_key_impl.hpp \
+ /usr/include/boost/mpl/erase_key_fwd.hpp \
+ /usr/include/boost/mpl/set/aux_/key_type_impl.hpp \
+ /usr/include/boost/mpl/key_type_fwd.hpp \
+ /usr/include/boost/mpl/set/aux_/value_type_impl.hpp \
+ /usr/include/boost/mpl/value_type_fwd.hpp \
+ /usr/include/boost/mpl/set/aux_/begin_end_impl.hpp \
+ /usr/include/boost/mpl/set/aux_/iterator.hpp \
+ /usr/include/boost/mpl/has_key.hpp \
+ /usr/include/boost/mpl/aux_/has_key_impl.hpp \
+ /usr/include/boost/mpl/transform.hpp \
+ /usr/include/boost/mpl/reverse_fold.hpp \
+ /usr/include/boost/mpl/aux_/reverse_fold_impl.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \
+ /usr/include/boost/mpl/pair_view.hpp \
+ /usr/include/boost/mpl/iterator_category.hpp \
+ /usr/include/boost/mpl/min_max.hpp \
+ /usr/include/boost/mpl/is_sequence.hpp \
+ /usr/include/boost/mpl/aux_/inserter_algorithm.hpp \
+ /usr/include/boost/mpl/back_inserter.hpp \
+ /usr/include/boost/mpl/push_back.hpp \
+ /usr/include/boost/mpl/aux_/push_back_impl.hpp \
+ /usr/include/boost/mpl/inserter.hpp \
+ /usr/include/boost/mpl/front_inserter.hpp \
+ /usr/include/boost/mpl/push_front.hpp \
+ /usr/include/boost/mpl/aux_/push_front_impl.hpp \
+ /usr/include/boost/mpl/clear.hpp \
+ /usr/include/boost/mpl/aux_/clear_impl.hpp \
+ /usr/include/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /usr/include/boost/preprocessor/facilities/intercept.hpp \
+ /usr/include/boost/type_traits/is_base_and_derived.hpp \
+ /usr/include/boost/multi_index/detail/access_specifier.hpp \
+ /usr/include/boost/multi_index/detail/adl_swap.hpp \
+ /usr/include/boost/multi_index/detail/base_type.hpp \
+ /usr/include/boost/multi_index/detail/index_base.hpp \
+ /usr/include/boost/call_traits.hpp \
+ /usr/include/boost/detail/call_traits.hpp \
+ /usr/include/boost/multi_index/detail/copy_map.hpp \
+ /usr/include/boost/multi_index/detail/auto_space.hpp \
+ /usr/include/boost/multi_index/detail/prevent_eti.hpp \
+ /usr/include/boost/multi_index/detail/node_type.hpp \
+ /usr/include/boost/mpl/reverse_iter_fold.hpp \
+ /usr/include/boost/mpl/aux_/reverse_iter_fold_impl.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \
+ /usr/include/boost/multi_index/detail/header_holder.hpp \
+ /usr/include/boost/multi_index/detail/index_node_base.hpp \
+ /usr/include/boost/type_traits/aligned_storage.hpp \
+ /usr/include/boost/aligned_storage.hpp \
+ /usr/include/boost/type_traits/type_with_alignment.hpp \
+ /usr/include/boost/preprocessor/list/for_each_i.hpp \
+ /usr/include/boost/preprocessor/tuple/to_list.hpp \
+ /usr/include/boost/preprocessor/list/transform.hpp \
+ /usr/include/boost/preprocessor/list/append.hpp \
+ /usr/include/boost/archive/archive_exception.hpp \
+ /usr/include/boost/archive/detail/decl.hpp \
+ /usr/include/boost/archive/detail/abi_prefix.hpp \
+ /usr/include/boost/config/abi_prefix.hpp \
+ /usr/include/boost/archive/detail/abi_suffix.hpp \
+ /usr/include/boost/config/abi_suffix.hpp \
+ /usr/include/boost/serialization/access.hpp \
+ /usr/include/boost/serialization/pfto.hpp \
+ /usr/include/boost/multi_index/detail/is_index_list.hpp \
+ /usr/include/boost/mpl/empty.hpp \
+ /usr/include/boost/mpl/aux_/empty_impl.hpp \
+ /usr/include/boost/multi_index/detail/msvc_index_specifier.hpp \
+ /usr/include/boost/tuple/tuple.hpp \
+ /usr/include/boost/tuple/detail/tuple_basic.hpp \
+ /usr/include/boost/type_traits/cv_traits.hpp \
+ /usr/include/boost/type_traits/add_volatile.hpp \
+ /usr/include/boost/type_traits/add_cv.hpp \
+ /usr/include/boost/type_traits/remove_volatile.hpp \
+ /usr/include/boost/utility/swap.hpp \
+ /usr/include/boost/multi_index/detail/index_loader.hpp \
+ /usr/include/boost/serialization/nvp.hpp \
+ /usr/include/boost/serialization/level.hpp \
+ /usr/include/boost/type_traits/is_fundamental.hpp \
+ /usr/include/boost/serialization/level_enum.hpp \
+ /usr/include/boost/serialization/tracking.hpp \
+ /usr/include/boost/mpl/equal_to.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \
+ /usr/include/boost/mpl/greater.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/greater.hpp \
+ /usr/include/boost/serialization/tracking_enum.hpp \
+ /usr/include/boost/serialization/type_info_implementation.hpp \
+ /usr/include/boost/serialization/traits.hpp \
+ /usr/include/boost/serialization/split_member.hpp \
+ /usr/include/boost/serialization/base_object.hpp \
+ /usr/include/boost/type_traits/is_polymorphic.hpp \
+ /usr/include/boost/serialization/force_include.hpp \
+ /usr/include/boost/serialization/void_cast_fwd.hpp \
+ /usr/include/boost/serialization/wrapper.hpp \
+ /usr/include/boost/multi_index/detail/index_saver.hpp \
+ /usr/include/boost/multi_index/detail/index_matcher.hpp \
+ /usr/include/boost/multi_index/detail/converter.hpp \
+ /usr/include/boost/multi_index/detail/has_tag.hpp \
+ /usr/include/boost/multi_index/detail/safe_mode.hpp \
+ /usr/include/boost/multi_index/detail/scope_guard.hpp \
+ /usr/include/boost/multi_index/detail/archive_constructed.hpp \
+ /usr/include/boost/serialization/serialization.hpp \
+ /usr/include/boost/serialization/strong_typedef.hpp \
+ /usr/include/boost/operators.hpp \
+ /usr/include/boost/multi_index/detail/serialization_version.hpp \
+ /usr/include/boost/serialization/version.hpp \
+ /usr/include/boost/mpl/comparison.hpp \
+ /usr/include/boost/mpl/not_equal_to.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \
+ /usr/include/boost/mpl/less_equal.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \
+ /usr/include/boost/mpl/greater_equal.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \
+ /usr/include/boost/serialization/collection_size_type.hpp \
+ /usr/include/boost/serialization/split_free.hpp \
+ /usr/include/boost/serialization/is_bitwise_serializable.hpp \
+ /usr/include/boost/multi_index/ordered_index.hpp \
+ /usr/include/boost/foreach_fwd.hpp \
+ /usr/include/boost/multi_index/detail/bidir_node_iterator.hpp \
+ /usr/include/boost/multi_index/detail/modify_key_adaptor.hpp \
+ /usr/include/boost/multi_index/detail/ord_index_node.hpp \
+ /usr/include/boost/multi_index/detail/uintptr_type.hpp \
+ /usr/include/boost/multi_index/detail/ord_index_ops.hpp \
+ /usr/include/boost/multi_index/detail/safe_ctr_proxy.hpp \
+ /usr/include/boost/multi_index/detail/unbounded.hpp \
+ /usr/include/boost/multi_index/detail/value_compare.hpp \
+ /usr/include/boost/bind.hpp /usr/include/boost/bind/bind.hpp \
+ /usr/include/boost/type.hpp /usr/include/boost/is_placeholder.hpp \
+ /usr/include/boost/bind/arg.hpp /usr/include/boost/visit_each.hpp \
+ /usr/include/boost/bind/storage.hpp \
+ /usr/include/boost/bind/bind_template.hpp \
+ /usr/include/boost/bind/bind_cc.hpp \
+ /usr/include/boost/bind/bind_mf_cc.hpp \
+ /usr/include/boost/bind/bind_mf2_cc.hpp \
+ /usr/include/boost/bind/placeholders.hpp \
+ /usr/include/boost/multi_index/detail/duplicates_iterator.hpp \
+ /usr/include/boost/tuple/tuple_comparison.hpp \
+ /usr/include/boost/multi_index/key_extractors.hpp \
+ /usr/include/boost/multi_index/composite_key.hpp \
+ /usr/include/boost/functional/hash_fwd.hpp \
+ /usr/include/boost/functional/hash/hash_fwd.hpp \
+ /usr/include/boost/preprocessor/list/at.hpp \
+ /usr/include/boost/preprocessor/list/rest_n.hpp \
+ /usr/include/boost/multi_index/global_fun.hpp \
+ /usr/include/boost/multi_index/member.hpp \
+ /usr/include/boost/multi_index/mem_fun.hpp \
+ /usr/include/boost/multi_index/sequenced_index.hpp \
+ /usr/include/boost/multi_index/detail/seq_index_node.hpp \
+ /usr/include/boost/multi_index/detail/seq_index_ops.hpp \
+ /usr/include/boost/multi_index/sequenced_index_fwd.hpp utility.hh \
+ /usr/include/arpa/inet.h /usr/include/netinet/in.h \
+ /usr/include/x86_64-linux-gnu/sys/socket.h \
+ /usr/include/x86_64-linux-gnu/sys/uio.h \
+ /usr/include/x86_64-linux-gnu/bits/uio.h \
+ /usr/include/x86_64-linux-gnu/bits/socket.h \
+ /usr/include/x86_64-linux-gnu/bits/sockaddr.h \
+ /usr/include/x86_64-linux-gnu/asm/socket.h \
+ /usr/include/asm-generic/socket.h \
+ /usr/include/x86_64-linux-gnu/asm/sockios.h \
+ /usr/include/asm-generic/sockios.h \
+ /usr/include/x86_64-linux-gnu/bits/socket2.h \
+ /usr/include/x86_64-linux-gnu/bits/in.h \
+ /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/signal.h \
+ /usr/include/x86_64-linux-gnu/bits/signum.h \
+ /usr/include/x86_64-linux-gnu/bits/siginfo.h \
+ /usr/include/x86_64-linux-gnu/bits/sigaction.h \
+ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \
+ /usr/include/x86_64-linux-gnu/bits/sigstack.h \
+ /usr/include/x86_64-linux-gnu/sys/ucontext.h \
+ /usr/include/x86_64-linux-gnu/bits/sigthread.h /usr/include/semaphore.h \
+ /usr/include/x86_64-linux-gnu/bits/semaphore.h namespaces.hh \
+ /usr/include/boost/lexical_cast.hpp /usr/include/c++/4.6/cmath \
+ /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/huge_val.h \
+ /usr/include/x86_64-linux-gnu/bits/huge_valf.h \
+ /usr/include/x86_64-linux-gnu/bits/huge_vall.h \
+ /usr/include/x86_64-linux-gnu/bits/inf.h \
+ /usr/include/x86_64-linux-gnu/bits/nan.h \
+ /usr/include/x86_64-linux-gnu/bits/mathdef.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/mathinline.h \
+ /usr/include/boost/numeric/conversion/cast.hpp \
+ /usr/include/boost/numeric/conversion/converter.hpp \
+ /usr/include/boost/numeric/conversion/conversion_traits.hpp \
+ /usr/include/boost/numeric/conversion/detail/conversion_traits.hpp \
+ /usr/include/boost/numeric/conversion/detail/meta.hpp \
+ /usr/include/boost/numeric/conversion/detail/int_float_mixture.hpp \
+ /usr/include/boost/numeric/conversion/int_float_mixture_enum.hpp \
+ /usr/include/boost/numeric/conversion/detail/sign_mixture.hpp \
+ /usr/include/boost/numeric/conversion/sign_mixture_enum.hpp \
+ /usr/include/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \
+ /usr/include/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \
+ /usr/include/boost/numeric/conversion/detail/is_subranged.hpp \
+ /usr/include/boost/mpl/multiplies.hpp /usr/include/boost/mpl/times.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/times.hpp \
+ /usr/include/boost/numeric/conversion/converter_policies.hpp \
+ /usr/include/boost/config/no_tr1/cmath.hpp \
+ /usr/include/boost/numeric/conversion/detail/converter.hpp \
+ /usr/include/boost/numeric/conversion/bounds.hpp \
+ /usr/include/boost/numeric/conversion/detail/bounds.hpp \
+ /usr/include/boost/numeric/conversion/numeric_cast_traits.hpp \
+ /usr/include/boost/numeric/conversion/detail/numeric_cast_traits.hpp \
+ /usr/include/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits.hpp \
+ /usr/include/boost/type_traits/make_unsigned.hpp \
+ /usr/include/boost/type_traits/is_signed.hpp \
+ /usr/include/boost/type_traits/is_unsigned.hpp \
+ /usr/include/boost/math/special_functions/sign.hpp \
+ /usr/include/boost/math/tools/config.hpp \
+ /usr/include/boost/math/tools/user.hpp \
+ /usr/include/boost/math/special_functions/detail/round_fwd.hpp \
+ /usr/include/boost/detail/fenv.hpp /usr/include/c++/4.6/fenv.h \
+ /usr/include/fenv.h /usr/include/x86_64-linux-gnu/bits/fenv.h \
+ /usr/include/x86_64-linux-gnu/bits/fenvinline.h \
+ /usr/include/boost/math/special_functions/math_fwd.hpp \
+ /usr/include/boost/math/tools/promotion.hpp \
+ /usr/include/boost/type_traits/is_floating_point.hpp \
+ /usr/include/boost/math/policies/policy.hpp \
+ /usr/include/boost/mpl/list.hpp /usr/include/boost/mpl/limits/list.hpp \
+ /usr/include/boost/mpl/list/list20.hpp \
+ /usr/include/boost/mpl/list/list10.hpp \
+ /usr/include/boost/mpl/list/list0.hpp \
+ /usr/include/boost/mpl/list/aux_/push_front.hpp \
+ /usr/include/boost/mpl/list/aux_/item.hpp \
+ /usr/include/boost/mpl/list/aux_/tag.hpp \
+ /usr/include/boost/mpl/list/aux_/pop_front.hpp \
+ /usr/include/boost/mpl/list/aux_/push_back.hpp \
+ /usr/include/boost/mpl/list/aux_/front.hpp \
+ /usr/include/boost/mpl/list/aux_/clear.hpp \
+ /usr/include/boost/mpl/list/aux_/O1_size.hpp \
+ /usr/include/boost/mpl/list/aux_/size.hpp \
+ /usr/include/boost/mpl/list/aux_/empty.hpp \
+ /usr/include/boost/mpl/list/aux_/begin_end.hpp \
+ /usr/include/boost/mpl/list/aux_/iterator.hpp \
+ /usr/include/boost/mpl/list/aux_/include_preprocessed.hpp \
+ /usr/include/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \
+ /usr/include/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \
+ /usr/include/boost/mpl/aux_/preprocessed/gcc/list.hpp \
+ /usr/include/boost/mpl/remove_if.hpp \
+ /usr/include/boost/config/no_tr1/complex.hpp \
+ /usr/include/c++/4.6/complex \
+ /usr/include/boost/math/special_functions/detail/fp_traits.hpp \
+ /usr/include/boost/detail/endian.hpp \
+ /usr/include/boost/math/special_functions/fpclassify.hpp \
+ /usr/include/boost/math/tools/real_cast.hpp \
+ /usr/include/boost/detail/lcast_precision.hpp \
+ /usr/include/boost/shared_ptr.hpp \
+ /usr/include/boost/smart_ptr/shared_ptr.hpp \
+ /usr/include/boost/smart_ptr/detail/shared_count.hpp \
+ /usr/include/boost/smart_ptr/bad_weak_ptr.hpp \
+ /usr/include/boost/smart_ptr/detail/sp_counted_base.hpp \
+ /usr/include/boost/smart_ptr/detail/sp_has_sync.hpp \
+ /usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp \
+ /usr/include/boost/smart_ptr/detail/sp_counted_impl.hpp \
+ /usr/include/boost/smart_ptr/detail/sp_convertible.hpp \
+ /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp \
+ /usr/include/boost/smart_ptr/detail/spinlock.hpp \
+ /usr/include/boost/smart_ptr/detail/spinlock_sync.hpp \
+ /usr/include/boost/smart_ptr/detail/yield_k.hpp \
+ /usr/include/boost/memory_order.hpp \
+ /usr/include/boost/smart_ptr/detail/operator_bool.hpp \
+ /usr/include/boost/shared_array.hpp \
+ /usr/include/boost/smart_ptr/shared_array.hpp \
+ /usr/include/boost/scoped_array.hpp \
+ /usr/include/boost/smart_ptr/scoped_array.hpp \
+ /usr/include/boost/optional.hpp /usr/include/boost/optional/optional.hpp \
+ /usr/include/boost/type_traits/has_nothrow_constructor.hpp \
+ /usr/include/boost/type_traits/has_trivial_constructor.hpp \
+ /usr/include/boost/detail/reference_content.hpp \
+ /usr/include/boost/type_traits/has_nothrow_copy.hpp \
+ /usr/include/boost/none.hpp /usr/include/boost/none_t.hpp \
+ /usr/include/boost/utility/compare_pointees.hpp \
+ /usr/include/boost/utility/in_place_factory.hpp \
+ /usr/include/boost/utility/detail/in_place_factory_prefix.hpp \
+ /usr/include/boost/preprocessor/punctuation/paren.hpp \
+ /usr/include/boost/utility/detail/in_place_factory_suffix.hpp \
+ /usr/include/boost/optional/optional_fwd.hpp /usr/include/boost/any.hpp \
+ /usr/include/boost/format.hpp \
+ /usr/include/boost/format/detail/compat_workarounds.hpp \
+ /usr/include/boost/format/detail/config_macros.hpp \
+ /usr/include/boost/format/detail/workarounds_gcc-2_95.hpp \
+ /usr/include/boost/format/detail/workarounds_stlport.hpp \
+ /usr/include/boost/format/format_fwd.hpp \
+ /usr/include/boost/format/internals_fwd.hpp \
+ /usr/include/boost/format/internals.hpp \
+ /usr/include/boost/format/alt_sstream.hpp \
+ /usr/include/boost/format/alt_sstream_impl.hpp \
+ /usr/include/boost/format/format_class.hpp \
+ /usr/include/boost/format/exceptions.hpp \
+ /usr/include/boost/format/format_implementation.hpp \
+ /usr/include/boost/format/group.hpp \
+ /usr/include/boost/format/feed_args.hpp \
+ /usr/include/boost/format/detail/msvc_disambiguater.hpp \
+ /usr/include/boost/format/parsing.hpp \
+ /usr/include/boost/format/free_funcs.hpp \
+ /usr/include/boost/format/detail/unset_macros.hpp \
+ /usr/include/c++/4.6/set /usr/include/c++/4.6/bits/stl_set.h \
+ /usr/include/c++/4.6/bits/stl_multiset.h dns.hh \
+ /usr/include/boost/serialization/string.hpp qtype.hh \
+ /usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \
+ /usr/include/x86_64-linux-gnu/bits/syslog-path.h \
+ /usr/include/x86_64-linux-gnu/bits/syslog.h dnswriter.hh sstuff.hh \
+ iputils.hh ahuexception.hh /usr/include/netdb.h /usr/include/rpc/netdb.h \
+ /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/fcntl.h \
+ /usr/include/x86_64-linux-gnu/bits/fcntl.h \
+ /usr/include/x86_64-linux-gnu/bits/stat.h \
+ /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/c++/4.6/csignal \
+ dnsrecords.hh rcpgenerator.hh /usr/include/c++/4.6/bitset statbag.hh \
+ lock.hh
+
+dnsparser.hh:
+
+/usr/include/c++/4.6/map:
+
+/usr/include/c++/4.6/bits/stl_tree.h:
+
+/usr/include/c++/4.6/bits/stl_algobase.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/c++config.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/os_defines.h:
+
+/usr/include/features.h:
+
+/usr/include/x86_64-linux-gnu/bits/predefs.h:
+
+/usr/include/x86_64-linux-gnu/sys/cdefs.h:
+
+/usr/include/x86_64-linux-gnu/bits/wordsize.h:
+
+/usr/include/x86_64-linux-gnu/gnu/stubs.h:
+
+/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/cpu_defines.h:
+
+/usr/include/c++/4.6/bits/functexcept.h:
+
+/usr/include/c++/4.6/bits/exception_defines.h:
+
+/usr/include/c++/4.6/bits/cpp_type_traits.h:
+
+/usr/include/c++/4.6/ext/type_traits.h:
+
+/usr/include/c++/4.6/ext/numeric_traits.h:
+
+/usr/include/c++/4.6/bits/stl_pair.h:
+
+/usr/include/c++/4.6/bits/move.h:
+
+/usr/include/c++/4.6/bits/concept_check.h:
+
+/usr/include/c++/4.6/bits/stl_iterator_base_types.h:
+
+/usr/include/c++/4.6/bits/stl_iterator_base_funcs.h:
+
+/usr/include/c++/4.6/bits/stl_iterator.h:
+
+/usr/include/c++/4.6/debug/debug.h:
+
+/usr/include/c++/4.6/bits/allocator.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/c++allocator.h:
+
+/usr/include/c++/4.6/ext/new_allocator.h:
+
+/usr/include/c++/4.6/new:
+
+/usr/include/c++/4.6/exception:
+
+/usr/include/c++/4.6/bits/stl_function.h:
+
+/usr/include/c++/4.6/backward/binders.h:
+
+/usr/include/c++/4.6/bits/stl_map.h:
+
+/usr/include/c++/4.6/initializer_list:
+
+/usr/include/c++/4.6/bits/stl_multimap.h:
+
+/usr/include/c++/4.6/bits/range_access.h:
+
+/usr/include/c++/4.6/sstream:
+
+/usr/include/c++/4.6/istream:
+
+/usr/include/c++/4.6/ios:
+
+/usr/include/c++/4.6/iosfwd:
+
+/usr/include/c++/4.6/bits/stringfwd.h:
+
+/usr/include/c++/4.6/bits/postypes.h:
+
+/usr/include/c++/4.6/cwchar:
+
+/usr/include/wchar.h:
+
+/usr/include/stdio.h:
+
+/usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdarg.h:
+
+/usr/include/x86_64-linux-gnu/bits/wchar.h:
+
+/usr/lib/gcc/x86_64-linux-gnu/4.6/include/stddef.h:
+
+/usr/include/xlocale.h:
+
+/usr/include/x86_64-linux-gnu/bits/wchar2.h:
+
+/usr/include/c++/4.6/bits/char_traits.h:
+
+/usr/include/c++/4.6/bits/localefwd.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/c++locale.h:
+
+/usr/include/c++/4.6/clocale:
+
+/usr/include/locale.h:
+
+/usr/include/x86_64-linux-gnu/bits/locale.h:
+
+/usr/include/c++/4.6/cctype:
+
+/usr/include/ctype.h:
+
+/usr/include/x86_64-linux-gnu/bits/types.h:
+
+/usr/include/x86_64-linux-gnu/bits/typesizes.h:
+
+/usr/include/endian.h:
+
+/usr/include/x86_64-linux-gnu/bits/endian.h:
+
+/usr/include/x86_64-linux-gnu/bits/byteswap.h:
+
+/usr/include/c++/4.6/bits/ios_base.h:
+
+/usr/include/c++/4.6/ext/atomicity.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/gthr.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/gthr-default.h:
+
+/usr/include/pthread.h:
+
+/usr/include/sched.h:
+
+/usr/include/time.h:
+
+/usr/include/x86_64-linux-gnu/bits/sched.h:
+
+/usr/include/x86_64-linux-gnu/bits/time.h:
+
+/usr/include/x86_64-linux-gnu/bits/timex.h:
+
+/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
+
+/usr/include/x86_64-linux-gnu/bits/setjmp.h:
+
+/usr/include/unistd.h:
+
+/usr/include/x86_64-linux-gnu/bits/posix_opt.h:
+
+/usr/include/x86_64-linux-gnu/bits/environments.h:
+
+/usr/include/x86_64-linux-gnu/bits/confname.h:
+
+/usr/include/getopt.h:
+
+/usr/include/x86_64-linux-gnu/bits/unistd.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/atomic_word.h:
+
+/usr/include/c++/4.6/bits/locale_classes.h:
+
+/usr/include/c++/4.6/string:
+
+/usr/include/c++/4.6/bits/ostream_insert.h:
+
+/usr/include/c++/4.6/bits/cxxabi_forced.h:
+
+/usr/include/c++/4.6/bits/basic_string.h:
+
+/usr/include/c++/4.6/bits/basic_string.tcc:
+
+/usr/include/c++/4.6/bits/locale_classes.tcc:
+
+/usr/include/c++/4.6/streambuf:
+
+/usr/include/c++/4.6/bits/streambuf.tcc:
+
+/usr/include/c++/4.6/bits/basic_ios.h:
+
+/usr/include/c++/4.6/bits/locale_facets.h:
+
+/usr/include/c++/4.6/cwctype:
+
+/usr/include/wctype.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/ctype_base.h:
+
+/usr/include/c++/4.6/bits/streambuf_iterator.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/ctype_inline.h:
+
+/usr/include/c++/4.6/bits/locale_facets.tcc:
+
+/usr/include/c++/4.6/bits/basic_ios.tcc:
+
+/usr/include/c++/4.6/ostream:
+
+/usr/include/c++/4.6/bits/ostream.tcc:
+
+/usr/include/c++/4.6/bits/istream.tcc:
+
+/usr/include/c++/4.6/bits/sstream.tcc:
+
+/usr/include/c++/4.6/stdexcept:
+
+/usr/include/c++/4.6/iostream:
+
+/usr/include/c++/4.6/vector:
+
+/usr/include/c++/4.6/bits/stl_construct.h:
+
+/usr/include/c++/4.6/bits/stl_uninitialized.h:
+
+/usr/include/c++/4.6/bits/stl_vector.h:
+
+/usr/include/c++/4.6/bits/stl_bvector.h:
+
+/usr/include/c++/4.6/bits/vector.tcc:
+
+/usr/include/errno.h:
+
+/usr/include/x86_64-linux-gnu/bits/errno.h:
+
+/usr/include/linux/errno.h:
+
+/usr/include/x86_64-linux-gnu/asm/errno.h:
+
+/usr/include/asm-generic/errno.h:
+
+/usr/include/asm-generic/errno-base.h:
+
+misc.hh:
+
+/usr/include/inttypes.h:
+
+/usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdint.h:
+
+/usr/include/stdint.h:
+
+/usr/include/c++/4.6/cstring:
+
+/usr/include/string.h:
+
+/usr/include/x86_64-linux-gnu/bits/string3.h:
+
+/usr/include/c++/4.6/cstdio:
+
+/usr/include/libio.h:
+
+/usr/include/_G_config.h:
+
+/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
+
+/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
+
+/usr/include/x86_64-linux-gnu/bits/stdio.h:
+
+/usr/include/x86_64-linux-gnu/bits/stdio2.h:
+
+/usr/include/boost/algorithm/string.hpp:
+
+/usr/include/boost/algorithm/string/std_containers_traits.hpp:
+
+/usr/include/boost/config.hpp:
+
+/usr/include/boost/config/user.hpp:
+
+/usr/include/boost/config/select_compiler_config.hpp:
+
+/usr/include/boost/config/compiler/gcc.hpp:
+
+/usr/include/boost/config/select_stdlib_config.hpp:
+
+/usr/include/c++/4.6/cstddef:
+
+/usr/include/boost/config/no_tr1/utility.hpp:
+
+/usr/include/c++/4.6/utility:
+
+/usr/include/c++/4.6/bits/stl_relops.h:
+
+/usr/include/boost/config/stdlib/libstdcpp3.hpp:
+
+/usr/include/boost/config/select_platform_config.hpp:
+
+/usr/include/boost/config/platform/linux.hpp:
+
+/usr/include/c++/4.6/cstdlib:
+
+/usr/include/stdlib.h:
+
+/usr/include/x86_64-linux-gnu/bits/waitflags.h:
+
+/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
+
+/usr/include/x86_64-linux-gnu/sys/types.h:
+
+/usr/include/x86_64-linux-gnu/sys/select.h:
+
+/usr/include/x86_64-linux-gnu/bits/select.h:
+
+/usr/include/x86_64-linux-gnu/bits/sigset.h:
+
+/usr/include/x86_64-linux-gnu/bits/select2.h:
+
+/usr/include/x86_64-linux-gnu/sys/sysmacros.h:
+
+/usr/include/alloca.h:
+
+/usr/include/x86_64-linux-gnu/bits/stdlib.h:
+
+/usr/include/boost/config/posix_features.hpp:
+
+/usr/include/boost/config/suffix.hpp:
+
+/usr/include/boost/algorithm/string/std/string_traits.hpp:
+
+/usr/include/boost/algorithm/string/yes_no_type.hpp:
+
+/usr/include/boost/algorithm/string/sequence_traits.hpp:
+
+/usr/include/boost/mpl/bool.hpp:
+
+/usr/include/boost/mpl/bool_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/adl_barrier.hpp:
+
+/usr/include/boost/mpl/aux_/config/adl.hpp:
+
+/usr/include/boost/mpl/aux_/config/msvc.hpp:
+
+/usr/include/boost/mpl/aux_/config/intel.hpp:
+
+/usr/include/boost/mpl/aux_/config/gcc.hpp:
+
+/usr/include/boost/mpl/aux_/config/workaround.hpp:
+
+/usr/include/boost/detail/workaround.hpp:
+
+/usr/include/boost/mpl/integral_c_tag.hpp:
+
+/usr/include/boost/mpl/aux_/config/static_constant.hpp:
+
+/usr/include/boost/algorithm/string/std/list_traits.hpp:
+
+/usr/include/c++/4.6/list:
+
+/usr/include/c++/4.6/bits/stl_list.h:
+
+/usr/include/c++/4.6/bits/list.tcc:
+
+/usr/include/boost/algorithm/string/std/slist_traits.hpp:
+
+/usr/include/boost/algorithm/string/config.hpp:
+
+/usr/include/c++/4.6/ext/slist:
+
+/usr/include/c++/4.6/algorithm:
+
+/usr/include/c++/4.6/bits/stl_algo.h:
+
+/usr/include/c++/4.6/bits/algorithmfwd.h:
+
+/usr/include/c++/4.6/bits/stl_heap.h:
+
+/usr/include/c++/4.6/bits/stl_tempbuf.h:
+
+/usr/include/boost/algorithm/string/trim.hpp:
+
+/usr/include/boost/range/begin.hpp:
+
+/usr/include/boost/range/config.hpp:
+
+/usr/include/boost/range/iterator.hpp:
+
+/usr/include/boost/range/mutable_iterator.hpp:
+
+/usr/include/boost/range/detail/extract_optional_type.hpp:
+
+/usr/include/boost/iterator/iterator_traits.hpp:
+
+/usr/include/boost/detail/iterator.hpp:
+
+/usr/include/c++/4.6/iterator:
+
+/usr/include/c++/4.6/bits/stream_iterator.h:
+
+/usr/include/boost/range/const_iterator.hpp:
+
+/usr/include/boost/type_traits/remove_const.hpp:
+
+/usr/include/boost/type_traits/is_volatile.hpp:
+
+/usr/include/boost/type_traits/detail/cv_traits_impl.hpp:
+
+/usr/include/boost/type_traits/detail/bool_trait_def.hpp:
+
+/usr/include/boost/type_traits/detail/template_arity_spec.hpp:
+
+/usr/include/boost/mpl/int.hpp:
+
+/usr/include/boost/mpl/int_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/nttp_decl.hpp:
+
+/usr/include/boost/mpl/aux_/config/nttp.hpp:
+
+/usr/include/boost/mpl/aux_/integral_wrapper.hpp:
+
+/usr/include/boost/mpl/aux_/static_cast.hpp:
+
+/usr/include/boost/preprocessor/cat.hpp:
+
+/usr/include/boost/preprocessor/config/config.hpp:
+
+/usr/include/boost/mpl/aux_/template_arity_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessor/params.hpp:
+
+/usr/include/boost/mpl/aux_/config/preprocessor.hpp:
+
+/usr/include/boost/preprocessor/comma_if.hpp:
+
+/usr/include/boost/preprocessor/punctuation/comma_if.hpp:
+
+/usr/include/boost/preprocessor/control/if.hpp:
+
+/usr/include/boost/preprocessor/control/iif.hpp:
+
+/usr/include/boost/preprocessor/logical/bool.hpp:
+
+/usr/include/boost/preprocessor/facilities/empty.hpp:
+
+/usr/include/boost/preprocessor/punctuation/comma.hpp:
+
+/usr/include/boost/preprocessor/repeat.hpp:
+
+/usr/include/boost/preprocessor/repetition/repeat.hpp:
+
+/usr/include/boost/preprocessor/debug/error.hpp:
+
+/usr/include/boost/preprocessor/detail/auto_rec.hpp:
+
+/usr/include/boost/preprocessor/tuple/eat.hpp:
+
+/usr/include/boost/preprocessor/inc.hpp:
+
+/usr/include/boost/preprocessor/arithmetic/inc.hpp:
+
+/usr/include/boost/mpl/aux_/config/lambda.hpp:
+
+/usr/include/boost/mpl/aux_/config/ttp.hpp:
+
+/usr/include/boost/mpl/aux_/config/ctps.hpp:
+
+/usr/include/boost/mpl/aux_/config/overload_resolution.hpp:
+
+/usr/include/boost/type_traits/integral_constant.hpp:
+
+/usr/include/boost/mpl/integral_c.hpp:
+
+/usr/include/boost/mpl/integral_c_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/lambda_support.hpp:
+
+/usr/include/boost/type_traits/detail/bool_trait_undef.hpp:
+
+/usr/include/boost/type_traits/broken_compiler_spec.hpp:
+
+/usr/include/boost/type_traits/detail/type_trait_def.hpp:
+
+/usr/include/boost/type_traits/detail/type_trait_undef.hpp:
+
+/usr/include/boost/type_traits/is_const.hpp:
+
+/usr/include/boost/type_traits/is_reference.hpp:
+
+/usr/include/boost/type_traits/config.hpp:
+
+/usr/include/boost/type_traits/is_lvalue_reference.hpp:
+
+/usr/include/boost/type_traits/is_rvalue_reference.hpp:
+
+/usr/include/boost/type_traits/ice.hpp:
+
+/usr/include/boost/type_traits/detail/yes_no_type.hpp:
+
+/usr/include/boost/type_traits/detail/ice_or.hpp:
+
+/usr/include/boost/type_traits/detail/ice_and.hpp:
+
+/usr/include/boost/type_traits/detail/ice_not.hpp:
+
+/usr/include/boost/type_traits/detail/ice_eq.hpp:
+
+/usr/include/boost/mpl/eval_if.hpp:
+
+/usr/include/boost/mpl/if.hpp:
+
+/usr/include/boost/mpl/aux_/value_wknd.hpp:
+
+/usr/include/boost/mpl/aux_/config/integral.hpp:
+
+/usr/include/boost/mpl/aux_/config/eti.hpp:
+
+/usr/include/boost/mpl/aux_/na_spec.hpp:
+
+/usr/include/boost/mpl/lambda_fwd.hpp:
+
+/usr/include/boost/mpl/void_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/na.hpp:
+
+/usr/include/boost/mpl/aux_/na_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/lambda_arity_param.hpp:
+
+/usr/include/boost/mpl/aux_/arity.hpp:
+
+/usr/include/boost/mpl/aux_/config/dtp.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessor/enum.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp:
+
+/usr/include/boost/mpl/limits/arity.hpp:
+
+/usr/include/boost/preprocessor/logical/and.hpp:
+
+/usr/include/boost/preprocessor/logical/bitand.hpp:
+
+/usr/include/boost/preprocessor/identity.hpp:
+
+/usr/include/boost/preprocessor/facilities/identity.hpp:
+
+/usr/include/boost/preprocessor/empty.hpp:
+
+/usr/include/boost/preprocessor/arithmetic/add.hpp:
+
+/usr/include/boost/preprocessor/arithmetic/dec.hpp:
+
+/usr/include/boost/preprocessor/control/while.hpp:
+
+/usr/include/boost/preprocessor/list/fold_left.hpp:
+
+/usr/include/boost/preprocessor/list/detail/fold_left.hpp:
+
+/usr/include/boost/preprocessor/control/expr_iif.hpp:
+
+/usr/include/boost/preprocessor/list/adt.hpp:
+
+/usr/include/boost/preprocessor/detail/is_binary.hpp:
+
+/usr/include/boost/preprocessor/detail/check.hpp:
+
+/usr/include/boost/preprocessor/logical/compl.hpp:
+
+/usr/include/boost/preprocessor/list/fold_right.hpp:
+
+/usr/include/boost/preprocessor/list/detail/fold_right.hpp:
+
+/usr/include/boost/preprocessor/list/reverse.hpp:
+
+/usr/include/boost/preprocessor/control/detail/while.hpp:
+
+/usr/include/boost/preprocessor/tuple/elem.hpp:
+
+/usr/include/boost/preprocessor/arithmetic/sub.hpp:
+
+/usr/include/boost/range/end.hpp:
+
+/usr/include/boost/range/detail/implementation_help.hpp:
+
+/usr/include/boost/range/detail/common.hpp:
+
+/usr/include/boost/range/detail/sfinae.hpp:
+
+/usr/include/boost/type_traits/is_array.hpp:
+
+/usr/include/boost/type_traits/is_void.hpp:
+
+/usr/include/boost/type_traits/is_same.hpp:
+
+/usr/include/boost/range/as_literal.hpp:
+
+/usr/include/boost/range/iterator_range.hpp:
+
+/usr/include/boost/range/iterator_range_core.hpp:
+
+/usr/include/boost/assert.hpp:
+
+/usr/include/assert.h:
+
+/usr/include/boost/current_function.hpp:
+
+/usr/include/boost/iterator/iterator_facade.hpp:
+
+/usr/include/boost/iterator.hpp:
+
+/usr/include/boost/iterator/interoperable.hpp:
+
+/usr/include/boost/mpl/or.hpp:
+
+/usr/include/boost/mpl/aux_/config/use_preprocessed.hpp:
+
+/usr/include/boost/mpl/aux_/nested_type_wknd.hpp:
+
+/usr/include/boost/mpl/aux_/include_preprocessed.hpp:
+
+/usr/include/boost/mpl/aux_/config/compiler.hpp:
+
+/usr/include/boost/preprocessor/stringize.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/or.hpp:
+
+/usr/include/boost/type_traits/is_convertible.hpp:
+
+/usr/include/boost/type_traits/intrinsics.hpp:
+
+/usr/include/boost/type_traits/add_reference.hpp:
+
+/usr/include/boost/type_traits/is_arithmetic.hpp:
+
+/usr/include/boost/type_traits/is_integral.hpp:
+
+/usr/include/boost/type_traits/is_float.hpp:
+
+/usr/include/boost/type_traits/is_abstract.hpp:
+
+/usr/include/boost/type_traits/add_rvalue_reference.hpp:
+
+/usr/include/boost/iterator/detail/config_def.hpp:
+
+/usr/include/boost/iterator/detail/config_undef.hpp:
+
+/usr/include/boost/iterator/detail/facade_iterator_category.hpp:
+
+/usr/include/boost/iterator/iterator_categories.hpp:
+
+/usr/include/boost/mpl/identity.hpp:
+
+/usr/include/boost/mpl/placeholders.hpp:
+
+/usr/include/boost/mpl/arg.hpp:
+
+/usr/include/boost/mpl/arg_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/na_assert.hpp:
+
+/usr/include/boost/mpl/assert.hpp:
+
+/usr/include/boost/mpl/not.hpp:
+
+/usr/include/boost/mpl/aux_/yes_no.hpp:
+
+/usr/include/boost/mpl/aux_/config/arrays.hpp:
+
+/usr/include/boost/mpl/aux_/config/pp_counter.hpp:
+
+/usr/include/boost/mpl/aux_/arity_spec.hpp:
+
+/usr/include/boost/mpl/aux_/arg_typedef.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/arg.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp:
+
+/usr/include/boost/static_assert.hpp:
+
+/usr/include/boost/mpl/and.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/and.hpp:
+
+/usr/include/boost/detail/indirect_traits.hpp:
+
+/usr/include/boost/type_traits/is_function.hpp:
+
+/usr/include/boost/type_traits/detail/false_result.hpp:
+
+/usr/include/boost/type_traits/detail/is_function_ptr_helper.hpp:
+
+/usr/include/boost/type_traits/is_pointer.hpp:
+
+/usr/include/boost/type_traits/is_member_pointer.hpp:
+
+/usr/include/boost/type_traits/is_member_function_pointer.hpp:
+
+/usr/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp:
+
+/usr/include/boost/type_traits/remove_cv.hpp:
+
+/usr/include/boost/type_traits/is_class.hpp:
+
+/usr/include/boost/type_traits/remove_reference.hpp:
+
+/usr/include/boost/type_traits/remove_pointer.hpp:
+
+/usr/include/boost/iterator/detail/enable_if.hpp:
+
+/usr/include/boost/implicit_cast.hpp:
+
+/usr/include/boost/type_traits/add_const.hpp:
+
+/usr/include/boost/type_traits/add_pointer.hpp:
+
+/usr/include/boost/type_traits/is_pod.hpp:
+
+/usr/include/boost/type_traits/is_scalar.hpp:
+
+/usr/include/boost/type_traits/is_enum.hpp:
+
+/usr/include/boost/mpl/always.hpp:
+
+/usr/include/boost/mpl/apply.hpp:
+
+/usr/include/boost/mpl/apply_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp:
+
+/usr/include/boost/mpl/apply_wrap.hpp:
+
+/usr/include/boost/mpl/aux_/has_apply.hpp:
+
+/usr/include/boost/mpl/has_xxx.hpp:
+
+/usr/include/boost/mpl/aux_/type_wrapper.hpp:
+
+/usr/include/boost/mpl/aux_/config/has_xxx.hpp:
+
+/usr/include/boost/mpl/aux_/config/msvc_typename.hpp:
+
+/usr/include/boost/preprocessor/array/elem.hpp:
+
+/usr/include/boost/preprocessor/array/data.hpp:
+
+/usr/include/boost/preprocessor/array/size.hpp:
+
+/usr/include/boost/preprocessor/repetition/enum_params.hpp:
+
+/usr/include/boost/preprocessor/repetition/enum_trailing_params.hpp:
+
+/usr/include/boost/mpl/aux_/config/has_apply.hpp:
+
+/usr/include/boost/mpl/aux_/msvc_never_true.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp:
+
+/usr/include/boost/mpl/lambda.hpp:
+
+/usr/include/boost/mpl/bind.hpp:
+
+/usr/include/boost/mpl/bind_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/config/bind.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp:
+
+/usr/include/boost/mpl/next.hpp:
+
+/usr/include/boost/mpl/next_prior.hpp:
+
+/usr/include/boost/mpl/aux_/common_name_wknd.hpp:
+
+/usr/include/boost/mpl/protect.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/bind.hpp:
+
+/usr/include/boost/mpl/aux_/full_lambda.hpp:
+
+/usr/include/boost/mpl/quote.hpp:
+
+/usr/include/boost/mpl/void.hpp:
+
+/usr/include/boost/mpl/aux_/has_type.hpp:
+
+/usr/include/boost/mpl/aux_/config/bcc.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/quote.hpp:
+
+/usr/include/boost/mpl/aux_/template_arity.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/apply.hpp:
+
+/usr/include/boost/range/functions.hpp:
+
+/usr/include/boost/range/size.hpp:
+
+/usr/include/boost/range/difference_type.hpp:
+
+/usr/include/boost/range/distance.hpp:
+
+/usr/include/boost/range/empty.hpp:
+
+/usr/include/boost/range/rbegin.hpp:
+
+/usr/include/boost/range/reverse_iterator.hpp:
+
+/usr/include/boost/iterator/reverse_iterator.hpp:
+
+/usr/include/boost/utility.hpp:
+
+/usr/include/boost/utility/addressof.hpp:
+
+/usr/include/boost/utility/base_from_member.hpp:
+
+/usr/include/boost/preprocessor/repetition/enum_binary_params.hpp:
+
+/usr/include/boost/preprocessor/tuple/rem.hpp:
+
+/usr/include/boost/preprocessor/repetition/repeat_from_to.hpp:
+
+/usr/include/boost/utility/binary.hpp:
+
+/usr/include/boost/preprocessor/control/deduce_d.hpp:
+
+/usr/include/boost/preprocessor/seq/cat.hpp:
+
+/usr/include/boost/preprocessor/seq/fold_left.hpp:
+
+/usr/include/boost/preprocessor/seq/seq.hpp:
+
+/usr/include/boost/preprocessor/seq/elem.hpp:
+
+/usr/include/boost/preprocessor/seq/size.hpp:
+
+/usr/include/boost/preprocessor/seq/transform.hpp:
+
+/usr/include/boost/preprocessor/arithmetic/mod.hpp:
+
+/usr/include/boost/preprocessor/arithmetic/detail/div_base.hpp:
+
+/usr/include/boost/preprocessor/comparison/less_equal.hpp:
+
+/usr/include/boost/preprocessor/logical/not.hpp:
+
+/usr/include/boost/utility/enable_if.hpp:
+
+/usr/include/boost/checked_delete.hpp:
+
+/usr/include/boost/next_prior.hpp:
+
+/usr/include/boost/noncopyable.hpp:
+
+/usr/include/boost/iterator/iterator_adaptor.hpp:
+
+/usr/include/boost/range/rend.hpp:
+
+/usr/include/boost/range/algorithm/equal.hpp:
+
+/usr/include/boost/range/concepts.hpp:
+
+/usr/include/boost/concept_check.hpp:
+
+/usr/include/boost/concept/assert.hpp:
+
+/usr/include/boost/concept/detail/general.hpp:
+
+/usr/include/boost/concept/detail/backward_compatibility.hpp:
+
+/usr/include/boost/concept/detail/has_constraints.hpp:
+
+/usr/include/boost/type_traits/conversion_traits.hpp:
+
+/usr/include/boost/concept/usage.hpp:
+
+/usr/include/boost/concept/detail/concept_def.hpp:
+
+/usr/include/boost/preprocessor/seq/for_each_i.hpp:
+
+/usr/include/boost/preprocessor/repetition/for.hpp:
+
+/usr/include/boost/preprocessor/repetition/detail/for.hpp:
+
+/usr/include/boost/preprocessor/seq/enum.hpp:
+
+/usr/include/boost/concept/detail/concept_undef.hpp:
+
+/usr/include/boost/iterator/iterator_concepts.hpp:
+
+/usr/include/boost/limits.hpp:
+
+/usr/include/c++/4.6/limits:
+
+/usr/include/boost/range/value_type.hpp:
+
+/usr/include/boost/range/detail/misc_concept.hpp:
+
+/usr/include/boost/range/detail/safe_bool.hpp:
+
+/usr/include/boost/range/iterator_range_io.hpp:
+
+/usr/include/boost/range/detail/str_types.hpp:
+
+/usr/include/boost/range/size_type.hpp:
+
+/usr/include/boost/algorithm/string/detail/trim.hpp:
+
+/usr/include/boost/algorithm/string/classification.hpp:
+
+/usr/include/c++/4.6/locale:
+
+/usr/include/c++/4.6/bits/locale_facets_nonio.h:
+
+/usr/include/c++/4.6/ctime:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/time_members.h:
+
+/usr/include/c++/4.6/x86_64-linux-gnu/./bits/messages_members.h:
+
+/usr/include/libintl.h:
+
+/usr/include/c++/4.6/bits/codecvt.h:
+
+/usr/include/c++/4.6/bits/locale_facets_nonio.tcc:
+
+/usr/include/boost/algorithm/string/detail/classification.hpp:
+
+/usr/include/c++/4.6/functional:
+
+/usr/include/boost/algorithm/string/predicate_facade.hpp:
+
+/usr/include/boost/algorithm/string/case_conv.hpp:
+
+/usr/include/boost/iterator/transform_iterator.hpp:
+
+/usr/include/boost/type_traits/function_traits.hpp:
+
+/usr/include/boost/utility/result_of.hpp:
+
+/usr/include/boost/preprocessor/iteration/iterate.hpp:
+
+/usr/include/boost/preprocessor/slot/slot.hpp:
+
+/usr/include/boost/preprocessor/slot/detail/def.hpp:
+
+/usr/include/boost/preprocessor/repetition/enum_shifted_params.hpp:
+
+/usr/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:
+
+/usr/include/boost/preprocessor/iteration/detail/bounds/lower1.hpp:
+
+/usr/include/boost/preprocessor/slot/detail/shared.hpp:
+
+/usr/include/boost/preprocessor/iteration/detail/bounds/upper1.hpp:
+
+/usr/include/boost/utility/detail/result_of_iterate.hpp:
+
+/usr/include/boost/algorithm/string/detail/case_conv.hpp:
+
+/usr/include/boost/algorithm/string/predicate.hpp:
+
+/usr/include/boost/algorithm/string/compare.hpp:
+
+/usr/include/boost/algorithm/string/find.hpp:
+
+/usr/include/boost/algorithm/string/finder.hpp:
+
+/usr/include/boost/algorithm/string/constants.hpp:
+
+/usr/include/boost/algorithm/string/detail/finder.hpp:
+
+/usr/include/boost/algorithm/string/detail/predicate.hpp:
+
+/usr/include/boost/algorithm/string/split.hpp:
+
+/usr/include/boost/algorithm/string/iter_find.hpp:
+
+/usr/include/boost/algorithm/string/concept.hpp:
+
+/usr/include/boost/algorithm/string/find_iterator.hpp:
+
+/usr/include/boost/algorithm/string/detail/find_iterator.hpp:
+
+/usr/include/boost/function.hpp:
+
+/usr/include/boost/preprocessor/iterate.hpp:
+
+/usr/include/boost/function/detail/prologue.hpp:
+
+/usr/include/c++/4.6/cassert:
+
+/usr/include/boost/config/no_tr1/functional.hpp:
+
+/usr/include/boost/throw_exception.hpp:
+
+/usr/include/boost/exception/detail/attribute_noreturn.hpp:
+
+/usr/include/boost/exception/exception.hpp:
+
+/usr/include/boost/function/function_base.hpp:
+
+/usr/include/c++/4.6/memory:
+
+/usr/include/c++/4.6/bits/stl_raw_storage_iter.h:
+
+/usr/include/c++/4.6/backward/auto_ptr.h:
+
+/usr/include/boost/detail/sp_typeinfo.hpp:
+
+/usr/include/c++/4.6/typeinfo:
+
+/usr/include/boost/integer.hpp:
+
+/usr/include/boost/integer_fwd.hpp:
+
+/usr/include/c++/4.6/climits:
+
+/usr/lib/gcc/x86_64-linux-gnu/4.6/include-fixed/limits.h:
+
+/usr/lib/gcc/x86_64-linux-gnu/4.6/include-fixed/syslimits.h:
+
+/usr/include/limits.h:
+
+/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:
+
+/usr/include/x86_64-linux-gnu/bits/local_lim.h:
+
+/usr/include/linux/limits.h:
+
+/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:
+
+/usr/include/x86_64-linux-gnu/bits/xopen_lim.h:
+
+/usr/include/boost/cstdint.hpp:
+
+/usr/include/boost/integer_traits.hpp:
+
+/usr/include/boost/type_traits/has_trivial_copy.hpp:
+
+/usr/include/boost/type_traits/has_trivial_destructor.hpp:
+
+/usr/include/boost/type_traits/composite_traits.hpp:
+
+/usr/include/boost/type_traits/is_union.hpp:
+
+/usr/include/boost/ref.hpp:
+
+/usr/include/boost/type_traits/alignment_of.hpp:
+
+/usr/include/boost/type_traits/detail/size_t_trait_def.hpp:
+
+/usr/include/boost/mpl/size_t.hpp:
+
+/usr/include/boost/mpl/size_t_fwd.hpp:
+
+/usr/include/boost/type_traits/detail/size_t_trait_undef.hpp:
+
+/usr/include/boost/function_equal.hpp:
+
+/usr/include/boost/function/function_fwd.hpp:
+
+/usr/include/boost/mem_fn.hpp:
+
+/usr/include/boost/bind/mem_fn.hpp:
+
+/usr/include/boost/get_pointer.hpp:
+
+/usr/include/boost/config/no_tr1/memory.hpp:
+
+/usr/include/boost/bind/mem_fn_template.hpp:
+
+/usr/include/boost/bind/mem_fn_cc.hpp:
+
+/usr/include/boost/preprocessor/enum.hpp:
+
+/usr/include/boost/preprocessor/repetition/enum.hpp:
+
+/usr/include/boost/preprocessor/enum_params.hpp:
+
+/usr/include/boost/function/detail/function_iterate.hpp:
+
+/usr/include/boost/function/detail/maybe_include.hpp:
+
+/usr/include/boost/function/function_template.hpp:
+
+/usr/include/boost/detail/no_exceptions_support.hpp:
+
+/usr/include/boost/algorithm/string/detail/util.hpp:
+
+/usr/include/boost/algorithm/string/join.hpp:
+
+/usr/include/boost/algorithm/string/detail/sequence.hpp:
+
+/usr/include/boost/mpl/logical.hpp:
+
+/usr/include/boost/algorithm/string/replace.hpp:
+
+/usr/include/boost/algorithm/string/find_format.hpp:
+
+/usr/include/c++/4.6/deque:
+
+/usr/include/c++/4.6/bits/stl_deque.h:
+
+/usr/include/c++/4.6/bits/deque.tcc:
+
+/usr/include/boost/algorithm/string/detail/find_format.hpp:
+
+/usr/include/boost/algorithm/string/detail/find_format_store.hpp:
+
+/usr/include/boost/algorithm/string/detail/replace_storage.hpp:
+
+/usr/include/boost/algorithm/string/detail/find_format_all.hpp:
+
+/usr/include/boost/algorithm/string/formatter.hpp:
+
+/usr/include/boost/algorithm/string/detail/formatter.hpp:
+
+/usr/include/boost/algorithm/string/erase.hpp:
+
+/usr/include/boost/multi_index_container.hpp:
+
+/usr/include/boost/detail/allocator_utilities.hpp:
+
+/usr/include/boost/mpl/at.hpp:
+
+/usr/include/boost/mpl/at_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/at_impl.hpp:
+
+/usr/include/boost/mpl/begin_end.hpp:
+
+/usr/include/boost/mpl/begin_end_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/begin_end_impl.hpp:
+
+/usr/include/boost/mpl/sequence_tag_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/has_begin.hpp:
+
+/usr/include/boost/mpl/aux_/traits_lambda_spec.hpp:
+
+/usr/include/boost/mpl/sequence_tag.hpp:
+
+/usr/include/boost/mpl/aux_/has_tag.hpp:
+
+/usr/include/boost/mpl/aux_/is_msvc_eti_arg.hpp:
+
+/usr/include/boost/mpl/advance.hpp:
+
+/usr/include/boost/mpl/advance_fwd.hpp:
+
+/usr/include/boost/mpl/less.hpp:
+
+/usr/include/boost/mpl/aux_/comparison_op.hpp:
+
+/usr/include/boost/mpl/aux_/numeric_op.hpp:
+
+/usr/include/boost/mpl/numeric_cast.hpp:
+
+/usr/include/boost/mpl/tag.hpp:
+
+/usr/include/boost/mpl/aux_/numeric_cast_utils.hpp:
+
+/usr/include/boost/mpl/aux_/config/forwarding.hpp:
+
+/usr/include/boost/mpl/aux_/msvc_eti_base.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/less.hpp:
+
+/usr/include/boost/mpl/negate.hpp:
+
+/usr/include/boost/mpl/long.hpp:
+
+/usr/include/boost/mpl/long_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/advance_forward.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp:
+
+/usr/include/boost/mpl/aux_/advance_backward.hpp:
+
+/usr/include/boost/mpl/prior.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp:
+
+/usr/include/boost/mpl/deref.hpp:
+
+/usr/include/boost/mpl/aux_/msvc_type.hpp:
+
+/usr/include/boost/mpl/contains.hpp:
+
+/usr/include/boost/mpl/contains_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/contains_impl.hpp:
+
+/usr/include/boost/mpl/find.hpp:
+
+/usr/include/boost/mpl/find_if.hpp:
+
+/usr/include/boost/mpl/aux_/find_if_pred.hpp:
+
+/usr/include/boost/mpl/aux_/iter_apply.hpp:
+
+/usr/include/boost/mpl/iter_fold_if.hpp:
+
+/usr/include/boost/mpl/pair.hpp:
+
+/usr/include/boost/mpl/aux_/iter_fold_if_impl.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp:
+
+/usr/include/boost/mpl/same_as.hpp:
+
+/usr/include/boost/mpl/aux_/lambda_spec.hpp:
+
+/usr/include/boost/mpl/size.hpp:
+
+/usr/include/boost/mpl/size_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/size_impl.hpp:
+
+/usr/include/boost/mpl/distance.hpp:
+
+/usr/include/boost/mpl/distance_fwd.hpp:
+
+/usr/include/boost/mpl/iter_fold.hpp:
+
+/usr/include/boost/mpl/O1_size.hpp:
+
+/usr/include/boost/mpl/O1_size_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/O1_size_impl.hpp:
+
+/usr/include/boost/mpl/aux_/has_size.hpp:
+
+/usr/include/boost/mpl/aux_/iter_fold_impl.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp:
+
+/usr/include/boost/mpl/iterator_range.hpp:
+
+/usr/include/boost/multi_index_container_fwd.hpp:
+
+/usr/include/boost/multi_index/identity.hpp:
+
+/usr/include/boost/multi_index/identity_fwd.hpp:
+
+/usr/include/boost/multi_index/indexed_by.hpp:
+
+/usr/include/boost/mpl/vector.hpp:
+
+/usr/include/boost/mpl/limits/vector.hpp:
+
+/usr/include/boost/mpl/vector/vector20.hpp:
+
+/usr/include/boost/mpl/vector/vector10.hpp:
+
+/usr/include/boost/mpl/vector/vector0.hpp:
+
+/usr/include/boost/mpl/vector/aux_/at.hpp:
+
+/usr/include/boost/mpl/vector/aux_/tag.hpp:
+
+/usr/include/boost/mpl/aux_/config/typeof.hpp:
+
+/usr/include/boost/mpl/vector/aux_/front.hpp:
+
+/usr/include/boost/mpl/front_fwd.hpp:
+
+/usr/include/boost/mpl/vector/aux_/push_front.hpp:
+
+/usr/include/boost/mpl/push_front_fwd.hpp:
+
+/usr/include/boost/mpl/vector/aux_/item.hpp:
+
+/usr/include/boost/mpl/vector/aux_/pop_front.hpp:
+
+/usr/include/boost/mpl/pop_front_fwd.hpp:
+
+/usr/include/boost/mpl/vector/aux_/push_back.hpp:
+
+/usr/include/boost/mpl/push_back_fwd.hpp:
+
+/usr/include/boost/mpl/vector/aux_/pop_back.hpp:
+
+/usr/include/boost/mpl/pop_back_fwd.hpp:
+
+/usr/include/boost/mpl/vector/aux_/back.hpp:
+
+/usr/include/boost/mpl/back_fwd.hpp:
+
+/usr/include/boost/mpl/vector/aux_/clear.hpp:
+
+/usr/include/boost/mpl/clear_fwd.hpp:
+
+/usr/include/boost/mpl/vector/aux_/vector0.hpp:
+
+/usr/include/boost/mpl/vector/aux_/iterator.hpp:
+
+/usr/include/boost/mpl/iterator_tags.hpp:
+
+/usr/include/boost/mpl/plus.hpp:
+
+/usr/include/boost/mpl/aux_/arithmetic_op.hpp:
+
+/usr/include/boost/mpl/aux_/largest_int.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/plus.hpp:
+
+/usr/include/boost/mpl/minus.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/minus.hpp:
+
+/usr/include/boost/mpl/vector/aux_/O1_size.hpp:
+
+/usr/include/boost/mpl/vector/aux_/size.hpp:
+
+/usr/include/boost/mpl/vector/aux_/empty.hpp:
+
+/usr/include/boost/mpl/empty_fwd.hpp:
+
+/usr/include/boost/mpl/vector/aux_/begin_end.hpp:
+
+/usr/include/boost/mpl/vector/aux_/include_preprocessed.hpp:
+
+/usr/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp:
+
+/usr/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/vector.hpp:
+
+/usr/include/boost/preprocessor/control/expr_if.hpp:
+
+/usr/include/boost/multi_index/ordered_index_fwd.hpp:
+
+/usr/include/boost/multi_index/detail/ord_index_args.hpp:
+
+/usr/include/boost/multi_index/tag.hpp:
+
+/usr/include/boost/multi_index/detail/no_duplicate_tags.hpp:
+
+/usr/include/boost/mpl/fold.hpp:
+
+/usr/include/boost/mpl/aux_/fold_impl.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp:
+
+/usr/include/boost/mpl/set/set0.hpp:
+
+/usr/include/boost/mpl/set/aux_/at_impl.hpp:
+
+/usr/include/boost/mpl/set/aux_/has_key_impl.hpp:
+
+/usr/include/boost/mpl/set/aux_/tag.hpp:
+
+/usr/include/boost/mpl/has_key_fwd.hpp:
+
+/usr/include/boost/mpl/aux_/overload_names.hpp:
+
+/usr/include/boost/mpl/aux_/ptr_to_ref.hpp:
+
+/usr/include/boost/mpl/aux_/config/operators.hpp:
+
+/usr/include/boost/mpl/set/aux_/clear_impl.hpp:
+
+/usr/include/boost/mpl/set/aux_/set0.hpp:
+
+/usr/include/boost/mpl/set/aux_/size_impl.hpp:
+
+/usr/include/boost/mpl/set/aux_/empty_impl.hpp:
+
+/usr/include/boost/mpl/set/aux_/insert_impl.hpp:
+
+/usr/include/boost/mpl/insert_fwd.hpp:
+
+/usr/include/boost/mpl/set/aux_/item.hpp:
+
+/usr/include/boost/mpl/base.hpp:
+
+/usr/include/boost/mpl/set/aux_/erase_impl.hpp:
+
+/usr/include/boost/mpl/erase_fwd.hpp:
+
+/usr/include/boost/mpl/set/aux_/erase_key_impl.hpp:
+
+/usr/include/boost/mpl/erase_key_fwd.hpp:
+
+/usr/include/boost/mpl/set/aux_/key_type_impl.hpp:
+
+/usr/include/boost/mpl/key_type_fwd.hpp:
+
+/usr/include/boost/mpl/set/aux_/value_type_impl.hpp:
+
+/usr/include/boost/mpl/value_type_fwd.hpp:
+
+/usr/include/boost/mpl/set/aux_/begin_end_impl.hpp:
+
+/usr/include/boost/mpl/set/aux_/iterator.hpp:
+
+/usr/include/boost/mpl/has_key.hpp:
+
+/usr/include/boost/mpl/aux_/has_key_impl.hpp:
+
+/usr/include/boost/mpl/transform.hpp:
+
+/usr/include/boost/mpl/reverse_fold.hpp:
+
+/usr/include/boost/mpl/aux_/reverse_fold_impl.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp:
+
+/usr/include/boost/mpl/pair_view.hpp:
+
+/usr/include/boost/mpl/iterator_category.hpp:
+
+/usr/include/boost/mpl/min_max.hpp:
+
+/usr/include/boost/mpl/is_sequence.hpp:
+
+/usr/include/boost/mpl/aux_/inserter_algorithm.hpp:
+
+/usr/include/boost/mpl/back_inserter.hpp:
+
+/usr/include/boost/mpl/push_back.hpp:
+
+/usr/include/boost/mpl/aux_/push_back_impl.hpp:
+
+/usr/include/boost/mpl/inserter.hpp:
+
+/usr/include/boost/mpl/front_inserter.hpp:
+
+/usr/include/boost/mpl/push_front.hpp:
+
+/usr/include/boost/mpl/aux_/push_front_impl.hpp:
+
+/usr/include/boost/mpl/clear.hpp:
+
+/usr/include/boost/mpl/aux_/clear_impl.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessor/default_params.hpp:
+
+/usr/include/boost/preprocessor/facilities/intercept.hpp:
+
+/usr/include/boost/type_traits/is_base_and_derived.hpp:
+
+/usr/include/boost/multi_index/detail/access_specifier.hpp:
+
+/usr/include/boost/multi_index/detail/adl_swap.hpp:
+
+/usr/include/boost/multi_index/detail/base_type.hpp:
+
+/usr/include/boost/multi_index/detail/index_base.hpp:
+
+/usr/include/boost/call_traits.hpp:
+
+/usr/include/boost/detail/call_traits.hpp:
+
+/usr/include/boost/multi_index/detail/copy_map.hpp:
+
+/usr/include/boost/multi_index/detail/auto_space.hpp:
+
+/usr/include/boost/multi_index/detail/prevent_eti.hpp:
+
+/usr/include/boost/multi_index/detail/node_type.hpp:
+
+/usr/include/boost/mpl/reverse_iter_fold.hpp:
+
+/usr/include/boost/mpl/aux_/reverse_iter_fold_impl.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp:
+
+/usr/include/boost/multi_index/detail/header_holder.hpp:
+
+/usr/include/boost/multi_index/detail/index_node_base.hpp:
+
+/usr/include/boost/type_traits/aligned_storage.hpp:
+
+/usr/include/boost/aligned_storage.hpp:
+
+/usr/include/boost/type_traits/type_with_alignment.hpp:
+
+/usr/include/boost/preprocessor/list/for_each_i.hpp:
+
+/usr/include/boost/preprocessor/tuple/to_list.hpp:
+
+/usr/include/boost/preprocessor/list/transform.hpp:
+
+/usr/include/boost/preprocessor/list/append.hpp:
+
+/usr/include/boost/archive/archive_exception.hpp:
+
+/usr/include/boost/archive/detail/decl.hpp:
+
+/usr/include/boost/archive/detail/abi_prefix.hpp:
+
+/usr/include/boost/config/abi_prefix.hpp:
+
+/usr/include/boost/archive/detail/abi_suffix.hpp:
+
+/usr/include/boost/config/abi_suffix.hpp:
+
+/usr/include/boost/serialization/access.hpp:
+
+/usr/include/boost/serialization/pfto.hpp:
+
+/usr/include/boost/multi_index/detail/is_index_list.hpp:
+
+/usr/include/boost/mpl/empty.hpp:
+
+/usr/include/boost/mpl/aux_/empty_impl.hpp:
+
+/usr/include/boost/multi_index/detail/msvc_index_specifier.hpp:
+
+/usr/include/boost/tuple/tuple.hpp:
+
+/usr/include/boost/tuple/detail/tuple_basic.hpp:
+
+/usr/include/boost/type_traits/cv_traits.hpp:
+
+/usr/include/boost/type_traits/add_volatile.hpp:
+
+/usr/include/boost/type_traits/add_cv.hpp:
+
+/usr/include/boost/type_traits/remove_volatile.hpp:
+
+/usr/include/boost/utility/swap.hpp:
+
+/usr/include/boost/multi_index/detail/index_loader.hpp:
+
+/usr/include/boost/serialization/nvp.hpp:
+
+/usr/include/boost/serialization/level.hpp:
+
+/usr/include/boost/type_traits/is_fundamental.hpp:
+
+/usr/include/boost/serialization/level_enum.hpp:
+
+/usr/include/boost/serialization/tracking.hpp:
+
+/usr/include/boost/mpl/equal_to.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp:
+
+/usr/include/boost/mpl/greater.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/greater.hpp:
+
+/usr/include/boost/serialization/tracking_enum.hpp:
+
+/usr/include/boost/serialization/type_info_implementation.hpp:
+
+/usr/include/boost/serialization/traits.hpp:
+
+/usr/include/boost/serialization/split_member.hpp:
+
+/usr/include/boost/serialization/base_object.hpp:
+
+/usr/include/boost/type_traits/is_polymorphic.hpp:
+
+/usr/include/boost/serialization/force_include.hpp:
+
+/usr/include/boost/serialization/void_cast_fwd.hpp:
+
+/usr/include/boost/serialization/wrapper.hpp:
+
+/usr/include/boost/multi_index/detail/index_saver.hpp:
+
+/usr/include/boost/multi_index/detail/index_matcher.hpp:
+
+/usr/include/boost/multi_index/detail/converter.hpp:
+
+/usr/include/boost/multi_index/detail/has_tag.hpp:
+
+/usr/include/boost/multi_index/detail/safe_mode.hpp:
+
+/usr/include/boost/multi_index/detail/scope_guard.hpp:
+
+/usr/include/boost/multi_index/detail/archive_constructed.hpp:
+
+/usr/include/boost/serialization/serialization.hpp:
+
+/usr/include/boost/serialization/strong_typedef.hpp:
+
+/usr/include/boost/operators.hpp:
+
+/usr/include/boost/multi_index/detail/serialization_version.hpp:
+
+/usr/include/boost/serialization/version.hpp:
+
+/usr/include/boost/mpl/comparison.hpp:
+
+/usr/include/boost/mpl/not_equal_to.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp:
+
+/usr/include/boost/mpl/less_equal.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp:
+
+/usr/include/boost/mpl/greater_equal.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp:
+
+/usr/include/boost/serialization/collection_size_type.hpp:
+
+/usr/include/boost/serialization/split_free.hpp:
+
+/usr/include/boost/serialization/is_bitwise_serializable.hpp:
+
+/usr/include/boost/multi_index/ordered_index.hpp:
+
+/usr/include/boost/foreach_fwd.hpp:
+
+/usr/include/boost/multi_index/detail/bidir_node_iterator.hpp:
+
+/usr/include/boost/multi_index/detail/modify_key_adaptor.hpp:
+
+/usr/include/boost/multi_index/detail/ord_index_node.hpp:
+
+/usr/include/boost/multi_index/detail/uintptr_type.hpp:
+
+/usr/include/boost/multi_index/detail/ord_index_ops.hpp:
+
+/usr/include/boost/multi_index/detail/safe_ctr_proxy.hpp:
+
+/usr/include/boost/multi_index/detail/unbounded.hpp:
+
+/usr/include/boost/multi_index/detail/value_compare.hpp:
+
+/usr/include/boost/bind.hpp:
+
+/usr/include/boost/bind/bind.hpp:
+
+/usr/include/boost/type.hpp:
+
+/usr/include/boost/is_placeholder.hpp:
+
+/usr/include/boost/bind/arg.hpp:
+
+/usr/include/boost/visit_each.hpp:
+
+/usr/include/boost/bind/storage.hpp:
+
+/usr/include/boost/bind/bind_template.hpp:
+
+/usr/include/boost/bind/bind_cc.hpp:
+
+/usr/include/boost/bind/bind_mf_cc.hpp:
+
+/usr/include/boost/bind/bind_mf2_cc.hpp:
+
+/usr/include/boost/bind/placeholders.hpp:
+
+/usr/include/boost/multi_index/detail/duplicates_iterator.hpp:
+
+/usr/include/boost/tuple/tuple_comparison.hpp:
+
+/usr/include/boost/multi_index/key_extractors.hpp:
+
+/usr/include/boost/multi_index/composite_key.hpp:
+
+/usr/include/boost/functional/hash_fwd.hpp:
+
+/usr/include/boost/functional/hash/hash_fwd.hpp:
+
+/usr/include/boost/preprocessor/list/at.hpp:
+
+/usr/include/boost/preprocessor/list/rest_n.hpp:
+
+/usr/include/boost/multi_index/global_fun.hpp:
+
+/usr/include/boost/multi_index/member.hpp:
+
+/usr/include/boost/multi_index/mem_fun.hpp:
+
+/usr/include/boost/multi_index/sequenced_index.hpp:
+
+/usr/include/boost/multi_index/detail/seq_index_node.hpp:
+
+/usr/include/boost/multi_index/detail/seq_index_ops.hpp:
+
+/usr/include/boost/multi_index/sequenced_index_fwd.hpp:
+
+utility.hh:
+
+/usr/include/arpa/inet.h:
+
+/usr/include/netinet/in.h:
+
+/usr/include/x86_64-linux-gnu/sys/socket.h:
+
+/usr/include/x86_64-linux-gnu/sys/uio.h:
+
+/usr/include/x86_64-linux-gnu/bits/uio.h:
+
+/usr/include/x86_64-linux-gnu/bits/socket.h:
+
+/usr/include/x86_64-linux-gnu/bits/sockaddr.h:
+
+/usr/include/x86_64-linux-gnu/asm/socket.h:
+
+/usr/include/asm-generic/socket.h:
+
+/usr/include/x86_64-linux-gnu/asm/sockios.h:
+
+/usr/include/asm-generic/sockios.h:
+
+/usr/include/x86_64-linux-gnu/bits/socket2.h:
+
+/usr/include/x86_64-linux-gnu/bits/in.h:
+
+/usr/include/x86_64-linux-gnu/sys/time.h:
+
+/usr/include/signal.h:
+
+/usr/include/x86_64-linux-gnu/bits/signum.h:
+
+/usr/include/x86_64-linux-gnu/bits/siginfo.h:
+
+/usr/include/x86_64-linux-gnu/bits/sigaction.h:
+
+/usr/include/x86_64-linux-gnu/bits/sigcontext.h:
+
+/usr/include/x86_64-linux-gnu/bits/sigstack.h:
+
+/usr/include/x86_64-linux-gnu/sys/ucontext.h:
+
+/usr/include/x86_64-linux-gnu/bits/sigthread.h:
+
+/usr/include/semaphore.h:
+
+/usr/include/x86_64-linux-gnu/bits/semaphore.h:
+
+namespaces.hh:
+
+/usr/include/boost/lexical_cast.hpp:
+
+/usr/include/c++/4.6/cmath:
+
+/usr/include/math.h:
+
+/usr/include/x86_64-linux-gnu/bits/huge_val.h:
+
+/usr/include/x86_64-linux-gnu/bits/huge_valf.h:
+
+/usr/include/x86_64-linux-gnu/bits/huge_vall.h:
+
+/usr/include/x86_64-linux-gnu/bits/inf.h:
+
+/usr/include/x86_64-linux-gnu/bits/nan.h:
+
+/usr/include/x86_64-linux-gnu/bits/mathdef.h:
+
+/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
+
+/usr/include/x86_64-linux-gnu/bits/mathinline.h:
+
+/usr/include/boost/numeric/conversion/cast.hpp:
+
+/usr/include/boost/numeric/conversion/converter.hpp:
+
+/usr/include/boost/numeric/conversion/conversion_traits.hpp:
+
+/usr/include/boost/numeric/conversion/detail/conversion_traits.hpp:
+
+/usr/include/boost/numeric/conversion/detail/meta.hpp:
+
+/usr/include/boost/numeric/conversion/detail/int_float_mixture.hpp:
+
+/usr/include/boost/numeric/conversion/int_float_mixture_enum.hpp:
+
+/usr/include/boost/numeric/conversion/detail/sign_mixture.hpp:
+
+/usr/include/boost/numeric/conversion/sign_mixture_enum.hpp:
+
+/usr/include/boost/numeric/conversion/detail/udt_builtin_mixture.hpp:
+
+/usr/include/boost/numeric/conversion/udt_builtin_mixture_enum.hpp:
+
+/usr/include/boost/numeric/conversion/detail/is_subranged.hpp:
+
+/usr/include/boost/mpl/multiplies.hpp:
+
+/usr/include/boost/mpl/times.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/times.hpp:
+
+/usr/include/boost/numeric/conversion/converter_policies.hpp:
+
+/usr/include/boost/config/no_tr1/cmath.hpp:
+
+/usr/include/boost/numeric/conversion/detail/converter.hpp:
+
+/usr/include/boost/numeric/conversion/bounds.hpp:
+
+/usr/include/boost/numeric/conversion/detail/bounds.hpp:
+
+/usr/include/boost/numeric/conversion/numeric_cast_traits.hpp:
+
+/usr/include/boost/numeric/conversion/detail/numeric_cast_traits.hpp:
+
+/usr/include/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits.hpp:
+
+/usr/include/boost/type_traits/make_unsigned.hpp:
+
+/usr/include/boost/type_traits/is_signed.hpp:
+
+/usr/include/boost/type_traits/is_unsigned.hpp:
+
+/usr/include/boost/math/special_functions/sign.hpp:
+
+/usr/include/boost/math/tools/config.hpp:
+
+/usr/include/boost/math/tools/user.hpp:
+
+/usr/include/boost/math/special_functions/detail/round_fwd.hpp:
+
+/usr/include/boost/detail/fenv.hpp:
+
+/usr/include/c++/4.6/fenv.h:
+
+/usr/include/fenv.h:
+
+/usr/include/x86_64-linux-gnu/bits/fenv.h:
+
+/usr/include/x86_64-linux-gnu/bits/fenvinline.h:
+
+/usr/include/boost/math/special_functions/math_fwd.hpp:
+
+/usr/include/boost/math/tools/promotion.hpp:
+
+/usr/include/boost/type_traits/is_floating_point.hpp:
+
+/usr/include/boost/math/policies/policy.hpp:
+
+/usr/include/boost/mpl/list.hpp:
+
+/usr/include/boost/mpl/limits/list.hpp:
+
+/usr/include/boost/mpl/list/list20.hpp:
+
+/usr/include/boost/mpl/list/list10.hpp:
+
+/usr/include/boost/mpl/list/list0.hpp:
+
+/usr/include/boost/mpl/list/aux_/push_front.hpp:
+
+/usr/include/boost/mpl/list/aux_/item.hpp:
+
+/usr/include/boost/mpl/list/aux_/tag.hpp:
+
+/usr/include/boost/mpl/list/aux_/pop_front.hpp:
+
+/usr/include/boost/mpl/list/aux_/push_back.hpp:
+
+/usr/include/boost/mpl/list/aux_/front.hpp:
+
+/usr/include/boost/mpl/list/aux_/clear.hpp:
+
+/usr/include/boost/mpl/list/aux_/O1_size.hpp:
+
+/usr/include/boost/mpl/list/aux_/size.hpp:
+
+/usr/include/boost/mpl/list/aux_/empty.hpp:
+
+/usr/include/boost/mpl/list/aux_/begin_end.hpp:
+
+/usr/include/boost/mpl/list/aux_/iterator.hpp:
+
+/usr/include/boost/mpl/list/aux_/include_preprocessed.hpp:
+
+/usr/include/boost/mpl/list/aux_/preprocessed/plain/list10.hpp:
+
+/usr/include/boost/mpl/list/aux_/preprocessed/plain/list20.hpp:
+
+/usr/include/boost/mpl/aux_/preprocessed/gcc/list.hpp:
+
+/usr/include/boost/mpl/remove_if.hpp:
+
+/usr/include/boost/config/no_tr1/complex.hpp:
+
+/usr/include/c++/4.6/complex:
+
+/usr/include/boost/math/special_functions/detail/fp_traits.hpp:
+
+/usr/include/boost/detail/endian.hpp:
+
+/usr/include/boost/math/special_functions/fpclassify.hpp:
+
+/usr/include/boost/math/tools/real_cast.hpp:
+
+/usr/include/boost/detail/lcast_precision.hpp:
+
+/usr/include/boost/shared_ptr.hpp:
+
+/usr/include/boost/smart_ptr/shared_ptr.hpp:
+
+/usr/include/boost/smart_ptr/detail/shared_count.hpp:
+
+/usr/include/boost/smart_ptr/bad_weak_ptr.hpp:
+
+/usr/include/boost/smart_ptr/detail/sp_counted_base.hpp:
+
+/usr/include/boost/smart_ptr/detail/sp_has_sync.hpp:
+
+/usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp:
+
+/usr/include/boost/smart_ptr/detail/sp_counted_impl.hpp:
+
+/usr/include/boost/smart_ptr/detail/sp_convertible.hpp:
+
+/usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:
+
+/usr/include/boost/smart_ptr/detail/spinlock.hpp:
+
+/usr/include/boost/smart_ptr/detail/spinlock_sync.hpp:
+
+/usr/include/boost/smart_ptr/detail/yield_k.hpp:
+
+/usr/include/boost/memory_order.hpp:
+
+/usr/include/boost/smart_ptr/detail/operator_bool.hpp:
+
+/usr/include/boost/shared_array.hpp:
+
+/usr/include/boost/smart_ptr/shared_array.hpp:
+
+/usr/include/boost/scoped_array.hpp:
+
+/usr/include/boost/smart_ptr/scoped_array.hpp:
+
+/usr/include/boost/optional.hpp:
+
+/usr/include/boost/optional/optional.hpp:
+
+/usr/include/boost/type_traits/has_nothrow_constructor.hpp:
+
+/usr/include/boost/type_traits/has_trivial_constructor.hpp:
+
+/usr/include/boost/detail/reference_content.hpp:
+
+/usr/include/boost/type_traits/has_nothrow_copy.hpp:
+
+/usr/include/boost/none.hpp:
+
+/usr/include/boost/none_t.hpp:
+
+/usr/include/boost/utility/compare_pointees.hpp:
+
+/usr/include/boost/utility/in_place_factory.hpp:
+
+/usr/include/boost/utility/detail/in_place_factory_prefix.hpp:
+
+/usr/include/boost/preprocessor/punctuation/paren.hpp:
+
+/usr/include/boost/utility/detail/in_place_factory_suffix.hpp:
+
+/usr/include/boost/optional/optional_fwd.hpp:
+
+/usr/include/boost/any.hpp:
+
+/usr/include/boost/format.hpp:
+
+/usr/include/boost/format/detail/compat_workarounds.hpp:
+
+/usr/include/boost/format/detail/config_macros.hpp:
+
+/usr/include/boost/format/detail/workarounds_gcc-2_95.hpp:
+
+/usr/include/boost/format/detail/workarounds_stlport.hpp:
+
+/usr/include/boost/format/format_fwd.hpp:
+
+/usr/include/boost/format/internals_fwd.hpp:
+
+/usr/include/boost/format/internals.hpp:
+
+/usr/include/boost/format/alt_sstream.hpp:
+
+/usr/include/boost/format/alt_sstream_impl.hpp:
+
+/usr/include/boost/format/format_class.hpp:
+
+/usr/include/boost/format/exceptions.hpp:
+
+/usr/include/boost/format/format_implementation.hpp:
+
+/usr/include/boost/format/group.hpp:
+
+/usr/include/boost/format/feed_args.hpp:
+
+/usr/include/boost/format/detail/msvc_disambiguater.hpp:
+
+/usr/include/boost/format/parsing.hpp:
+
+/usr/include/boost/format/free_funcs.hpp:
+
+/usr/include/boost/format/detail/unset_macros.hpp:
+
+/usr/include/c++/4.6/set:
+
+/usr/include/c++/4.6/bits/stl_set.h:
+
+/usr/include/c++/4.6/bits/stl_multiset.h:
+
+dns.hh:
+
+/usr/include/boost/serialization/string.hpp:
+
+qtype.hh:
+
+/usr/include/syslog.h:
+
+/usr/include/x86_64-linux-gnu/sys/syslog.h:
+
+/usr/include/x86_64-linux-gnu/bits/syslog-path.h:
+
+/usr/include/x86_64-linux-gnu/bits/syslog.h:
+
+dnswriter.hh:
+
+sstuff.hh:
+
+iputils.hh:
+
+ahuexception.hh:
+
+/usr/include/netdb.h:
+
+/usr/include/rpc/netdb.h:
+
+/usr/include/x86_64-linux-gnu/bits/netdb.h:
+
+/usr/include/fcntl.h:
+
+/usr/include/x86_64-linux-gnu/bits/fcntl.h:
+
+/usr/include/x86_64-linux-gnu/bits/stat.h:
+
+/usr/include/x86_64-linux-gnu/bits/fcntl2.h:
+
+/usr/include/c++/4.6/csignal:
+
+dnsrecords.hh:
+
+rcpgenerator.hh:
+
+/usr/include/c++/4.6/bitset:
+
+statbag.hh:
+
+lock.hh:
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/Makefile
^
|
@@ -245,9 +245,8 @@
polarrsakeyinfra.cc md5.cc md5.hh signingpipe.cc \
signingpipe.hh dnslabeltext.cc lua-pdns.cc lua-auth.cc \
lua-auth.hh serialtweaker.cc ednssubnet.cc ednssubnet.hh \
- cachecleaner.hh dnslabel.hh dnslabel.cc botan110signers.cc \
- botansigners.cc botan18signers.cc cryptoppsigners.cc \
- ssqlite3.cc ssqlite3.hh
+ cachecleaner.hh botan110signers.cc botansigners.cc \
+ botan18signers.cc cryptoppsigners.cc ssqlite3.cc ssqlite3.hh
#am__objects_1 = pdns_server-botan110signers.$(OBJEXT) \
# pdns_server-botansigners.$(OBJEXT)
#am__objects_2 = pdns_server-botan18signers.$(OBJEXT) \
@@ -299,8 +298,7 @@
pdns_server-dnslabeltext.$(OBJEXT) \
pdns_server-lua-pdns.$(OBJEXT) pdns_server-lua-auth.$(OBJEXT) \
pdns_server-serialtweaker.$(OBJEXT) \
- pdns_server-ednssubnet.$(OBJEXT) \
- pdns_server-dnslabel.$(OBJEXT) $(am__objects_1) \
+ pdns_server-ednssubnet.$(OBJEXT) $(am__objects_1) \
$(am__objects_2) $(am__objects_3) $(am__objects_4)
pdns_server_OBJECTS = $(am_pdns_server_OBJECTS)
#am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1)
@@ -325,9 +323,9 @@
backends/gsql/gsqlbackend.hh backends/gsql/ssql.hh \
zoneparser-tng.cc dynlistener.cc dns.cc randombackend.cc \
dnssecsigner.cc polarrsakeyinfra.cc md5.cc signingpipe.cc \
- dnslabeltext.cc ednssubnet.cc cachecleaner.hh dnslabel.hh \
- dnslabel.cc botan110signers.cc botansigners.cc \
- botan18signers.cc cryptoppsigners.cc ssqlite3.cc ssqlite3.hh
+ dnslabeltext.cc ednssubnet.cc cachecleaner.hh \
+ botan110signers.cc botansigners.cc botan18signers.cc \
+ cryptoppsigners.cc ssqlite3.cc ssqlite3.hh
#am__objects_5 = pdnssec-botan110signers.$(OBJEXT) \
# pdnssec-botansigners.$(OBJEXT)
#am__objects_6 = pdnssec-botan18signers.$(OBJEXT) \
@@ -352,9 +350,8 @@
pdnssec-randombackend.$(OBJEXT) pdnssec-dnssecsigner.$(OBJEXT) \
pdnssec-polarrsakeyinfra.$(OBJEXT) pdnssec-md5.$(OBJEXT) \
pdnssec-signingpipe.$(OBJEXT) pdnssec-dnslabeltext.$(OBJEXT) \
- pdnssec-ednssubnet.$(OBJEXT) pdnssec-dnslabel.$(OBJEXT) \
- $(am__objects_5) $(am__objects_6) $(am__objects_7) \
- $(am__objects_8)
+ pdnssec-ednssubnet.$(OBJEXT) $(am__objects_5) $(am__objects_6) \
+ $(am__objects_7) $(am__objects_8)
pdnssec_OBJECTS = $(am_pdnssec_OBJECTS)
pdnssec_DEPENDENCIES = ext/polarssl-1.1.2/library/libpolarssl.a \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
@@ -389,8 +386,7 @@
dnslabeltext.$(OBJEXT) misc.$(OBJEXT) rcpgenerator.$(OBJEXT) \
base64.$(OBJEXT) unix_utility.$(OBJEXT) logger.$(OBJEXT) \
statbag.$(OBJEXT) qtype.$(OBJEXT) sillyrecords.$(OBJEXT) \
- nsecrecords.$(OBJEXT) base32.$(OBJEXT) dnslabel.$(OBJEXT) \
- ednssubnet.$(OBJEXT)
+ nsecrecords.$(OBJEXT) base32.$(OBJEXT) ednssubnet.$(OBJEXT)
toysdig_OBJECTS = $(am_toysdig_OBJECTS)
toysdig_LDADD = $(LDADD)
am_tsig_tests_OBJECTS = tsig-tests.$(OBJEXT) dnsparser.$(OBJEXT) \
@@ -610,13 +606,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/pdns
@@ -719,15 +713,15 @@
polarrsakeyinfra.cc md5.cc md5.hh signingpipe.cc \
signingpipe.hh dnslabeltext.cc lua-pdns.cc lua-auth.cc \
lua-auth.hh serialtweaker.cc ednssubnet.cc ednssubnet.hh \
- cachecleaner.hh dnslabel.hh dnslabel.cc $(am__append_1) \
- $(am__append_4) $(am__append_7) $(am__append_9)
+ cachecleaner.hh $(am__append_1) $(am__append_4) \
+ $(am__append_7) $(am__append_9)
#
pdns_server_LDFLAGS = ../modules/gmysqlbackend/gmysqlbackend.o ../modules/gmysqlbackend/smysql.o ../modules/geobackend/geobackend.o ../modules/geobackend/ippreftree.o ../modules/pipebackend/coprocess.o ../modules/pipebackend/pipebackend.o -lmysqlclient -rdynamic -ldl -pthread $(BOOST_SERIALIZATION_LDFLAGS) -rdynamic
pdns_server_LDADD = ext/polarssl-1.1.2/library/libpolarssl.a \
$(BOOST_SERIALIZATION_LIBS) $(LUA_LIBS) $(SQLITE3_LIBS) \
$(am__append_2) $(am__append_5) $(am__append_8)
-pdns_server_CPPFLAGS = $(am__append_3) $(am__append_6)
+pdns_server_CPPFLAGS = $(AM_CPPFLAGS) $(am__append_3) $(am__append_6)
pdnssec_SOURCES = pdnssec.cc dbdnsseckeeper.cc sstuff.hh dnsparser.cc \
dnsparser.hh dnsrecords.cc dnswriter.cc dnswriter.hh misc.cc \
misc.hh rcpgenerator.cc rcpgenerator.hh base64.cc base64.hh \
@@ -741,14 +735,14 @@
backends/gsql/ssql.hh zoneparser-tng.cc dynlistener.cc dns.cc \
randombackend.cc dnssecsigner.cc polarrsakeyinfra.cc md5.cc \
signingpipe.cc dnslabeltext.cc ednssubnet.cc cachecleaner.hh \
- dnslabel.hh dnslabel.cc $(am__append_10) $(am__append_13) \
- $(am__append_16) $(am__append_18)
+ $(am__append_10) $(am__append_13) $(am__append_16) \
+ $(am__append_18)
pdnssec_LDFLAGS = ../modules/gmysqlbackend/gmysqlbackend.o ../modules/gmysqlbackend/smysql.o ../modules/geobackend/geobackend.o ../modules/geobackend/ippreftree.o ../modules/pipebackend/coprocess.o ../modules/pipebackend/pipebackend.o -lmysqlclient -rdynamic -ldl -pthread $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
pdnssec_LDADD = ext/polarssl-1.1.2/library/libpolarssl.a \
$(BOOST_PROGRAM_OPTIONS_LIBS) $(BOOST_SERIALIZATION_LIBS) \
$(SQLITE3_LIBS) $(am__append_11) $(am__append_14) \
$(am__append_17)
-pdnssec_CPPFLAGS = $(am__append_12) $(am__append_15)
+pdnssec_CPPFLAGS = $(AM_CPPFLAGS) $(am__append_12) $(am__append_15)
sdig_SOURCES = sdig.cc sstuff.hh dnsparser.cc dnsparser.hh dnsrecords.cc dnswriter.cc dnslabeltext.cc dnswriter.hh \
misc.cc misc.hh rcpgenerator.cc rcpgenerator.hh base64.cc base64.hh unix_utility.cc \
logger.cc statbag.cc qtype.cc sillyrecords.cc nsecrecords.cc base32.cc
@@ -762,7 +756,7 @@
nsec3dig_LDADD = -lpolarssl
toysdig_SOURCES = toysdig.cc sstuff.hh dnsparser.cc dnsparser.hh dnsrecords.cc dnswriter.cc dnslabeltext.cc dnswriter.hh \
misc.cc misc.hh rcpgenerator.cc rcpgenerator.hh base64.cc base64.hh unix_utility.cc \
- logger.cc statbag.cc qtype.cc sillyrecords.cc nsecrecords.cc base32.cc dnslabel.cc dnslabel.hh \
+ logger.cc statbag.cc qtype.cc sillyrecords.cc nsecrecords.cc base32.cc \
ednssubnet.cc ednssubnet.hh
@@ -1061,7 +1055,6 @@
include ./$(DEPDIR)/dnsbulktest.Po
include ./$(DEPDIR)/dnsdemog.Po
include ./$(DEPDIR)/dnsgram.Po
-include ./$(DEPDIR)/dnslabel.Po
include ./$(DEPDIR)/dnslabeltext.Po
include ./$(DEPDIR)/dnsparser.Po
include ./$(DEPDIR)/dnspcap.Po
@@ -1109,7 +1102,6 @@
include ./$(DEPDIR)/pdns_server-dns.Po
include ./$(DEPDIR)/pdns_server-dns_random.Po
include ./$(DEPDIR)/pdns_server-dnsbackend.Po
-include ./$(DEPDIR)/pdns_server-dnslabel.Po
include ./$(DEPDIR)/pdns_server-dnslabeltext.Po
include ./$(DEPDIR)/pdns_server-dnspacket.Po
include ./$(DEPDIR)/pdns_server-dnsparser.Po
@@ -1167,7 +1159,6 @@
include ./$(DEPDIR)/pdnssec-dbdnsseckeeper.Po
include ./$(DEPDIR)/pdnssec-dns.Po
include ./$(DEPDIR)/pdnssec-dnsbackend.Po
-include ./$(DEPDIR)/pdnssec-dnslabel.Po
include ./$(DEPDIR)/pdnssec-dnslabeltext.Po
include ./$(DEPDIR)/pdnssec-dnspacket.Po
include ./$(DEPDIR)/pdnssec-dnsparser.Po
@@ -2168,20 +2159,6 @@
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdns_server-ednssubnet.obj `if test -f 'ednssubnet.cc'; then $(CYGPATH_W) 'ednssubnet.cc'; else $(CYGPATH_W) '$(srcdir)/ednssubnet.cc'; fi`
-pdns_server-dnslabel.o: dnslabel.cc
- $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdns_server-dnslabel.o -MD -MP -MF $(DEPDIR)/pdns_server-dnslabel.Tpo -c -o pdns_server-dnslabel.o `test -f 'dnslabel.cc' || echo '$(srcdir)/'`dnslabel.cc
- $(am__mv) $(DEPDIR)/pdns_server-dnslabel.Tpo $(DEPDIR)/pdns_server-dnslabel.Po
-# source='dnslabel.cc' object='pdns_server-dnslabel.o' libtool=no \
-# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
-# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdns_server-dnslabel.o `test -f 'dnslabel.cc' || echo '$(srcdir)/'`dnslabel.cc
-
-pdns_server-dnslabel.obj: dnslabel.cc
- $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdns_server-dnslabel.obj -MD -MP -MF $(DEPDIR)/pdns_server-dnslabel.Tpo -c -o pdns_server-dnslabel.obj `if test -f 'dnslabel.cc'; then $(CYGPATH_W) 'dnslabel.cc'; else $(CYGPATH_W) '$(srcdir)/dnslabel.cc'; fi`
- $(am__mv) $(DEPDIR)/pdns_server-dnslabel.Tpo $(DEPDIR)/pdns_server-dnslabel.Po
-# source='dnslabel.cc' object='pdns_server-dnslabel.obj' libtool=no \
-# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
-# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdns_server-dnslabel.obj `if test -f 'dnslabel.cc'; then $(CYGPATH_W) 'dnslabel.cc'; else $(CYGPATH_W) '$(srcdir)/dnslabel.cc'; fi`
-
pdns_server-botan110signers.o: botan110signers.cc
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdns_server-botan110signers.o -MD -MP -MF $(DEPDIR)/pdns_server-botan110signers.Tpo -c -o pdns_server-botan110signers.o `test -f 'botan110signers.cc' || echo '$(srcdir)/'`botan110signers.cc
$(am__mv) $(DEPDIR)/pdns_server-botan110signers.Tpo $(DEPDIR)/pdns_server-botan110signers.Po
@@ -2742,20 +2719,6 @@
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdnssec-ednssubnet.obj `if test -f 'ednssubnet.cc'; then $(CYGPATH_W) 'ednssubnet.cc'; else $(CYGPATH_W) '$(srcdir)/ednssubnet.cc'; fi`
-pdnssec-dnslabel.o: dnslabel.cc
- $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdnssec-dnslabel.o -MD -MP -MF $(DEPDIR)/pdnssec-dnslabel.Tpo -c -o pdnssec-dnslabel.o `test -f 'dnslabel.cc' || echo '$(srcdir)/'`dnslabel.cc
- $(am__mv) $(DEPDIR)/pdnssec-dnslabel.Tpo $(DEPDIR)/pdnssec-dnslabel.Po
-# source='dnslabel.cc' object='pdnssec-dnslabel.o' libtool=no \
-# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
-# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdnssec-dnslabel.o `test -f 'dnslabel.cc' || echo '$(srcdir)/'`dnslabel.cc
-
-pdnssec-dnslabel.obj: dnslabel.cc
- $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdnssec-dnslabel.obj -MD -MP -MF $(DEPDIR)/pdnssec-dnslabel.Tpo -c -o pdnssec-dnslabel.obj `if test -f 'dnslabel.cc'; then $(CYGPATH_W) 'dnslabel.cc'; else $(CYGPATH_W) '$(srcdir)/dnslabel.cc'; fi`
- $(am__mv) $(DEPDIR)/pdnssec-dnslabel.Tpo $(DEPDIR)/pdnssec-dnslabel.Po
-# source='dnslabel.cc' object='pdnssec-dnslabel.obj' libtool=no \
-# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
-# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdnssec-dnslabel.obj `if test -f 'dnslabel.cc'; then $(CYGPATH_W) 'dnslabel.cc'; else $(CYGPATH_W) '$(srcdir)/dnslabel.cc'; fi`
-
pdnssec-botan110signers.o: botan110signers.cc
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdnssec-botan110signers.o -MD -MP -MF $(DEPDIR)/pdnssec-botan110signers.Tpo -c -o pdnssec-botan110signers.o `test -f 'botan110signers.cc' || echo '$(srcdir)/'`botan110signers.cc
$(am__mv) $(DEPDIR)/pdnssec-botan110signers.Tpo $(DEPDIR)/pdnssec-botan110signers.Po
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/Makefile.am
^
|
@@ -56,12 +56,12 @@
randomhelper.cc namespaces.hh nsecrecords.cc base32.cc dbdnsseckeeper.cc dnssecinfra.cc \
dnsseckeeper.hh dnssecinfra.hh base32.hh dns.cc dnssecsigner.cc polarrsakeyinfra.cc md5.cc \
md5.hh signingpipe.cc signingpipe.hh dnslabeltext.cc lua-pdns.cc lua-auth.cc lua-auth.hh serialtweaker.cc \
-ednssubnet.cc ednssubnet.hh cachecleaner.hh dnslabel.hh dnslabel.cc
+ednssubnet.cc ednssubnet.hh cachecleaner.hh
#
pdns_server_LDFLAGS=@moduleobjects@ @modulelibs@ @DYNLINKFLAGS@ @LIBDL@ @THREADFLAGS@ $(BOOST_SERIALIZATION_LDFLAGS) -rdynamic
pdns_server_LDADD= ext/polarssl-1.1.2/library/libpolarssl.a $(BOOST_SERIALIZATION_LIBS) $(LUA_LIBS) $(SQLITE3_LIBS)
-pdns_server_CPPFLAGS =
+pdns_server_CPPFLAGS = $(AM_CPPFLAGS)
if BOTAN110
@@ -94,12 +94,12 @@
backends/gsql/gsqlbackend.cc \
backends/gsql/gsqlbackend.hh backends/gsql/ssql.hh zoneparser-tng.cc \
dynlistener.cc dns.cc randombackend.cc dnssecsigner.cc polarrsakeyinfra.cc md5.cc \
- signingpipe.cc dnslabeltext.cc ednssubnet.cc cachecleaner.hh dnslabel.hh dnslabel.cc
+ signingpipe.cc dnslabeltext.cc ednssubnet.cc cachecleaner.hh
pdnssec_LDFLAGS=@moduleobjects@ @modulelibs@ @DYNLINKFLAGS@ @LIBDL@ @THREADFLAGS@ $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
pdnssec_LDADD= ext/polarssl-1.1.2/library/libpolarssl.a $(BOOST_PROGRAM_OPTIONS_LIBS) $(BOOST_SERIALIZATION_LIBS) $(SQLITE3_LIBS)
-pdnssec_CPPFLAGS=
+pdnssec_CPPFLAGS = $(AM_CPPFLAGS)
if BOTAN110
pdnssec_SOURCES += botan110signers.cc botansigners.cc
@@ -135,7 +135,7 @@
toysdig_SOURCES=toysdig.cc sstuff.hh dnsparser.cc dnsparser.hh dnsrecords.cc dnswriter.cc dnslabeltext.cc dnswriter.hh \
misc.cc misc.hh rcpgenerator.cc rcpgenerator.hh base64.cc base64.hh unix_utility.cc \
- logger.cc statbag.cc qtype.cc sillyrecords.cc nsecrecords.cc base32.cc dnslabel.cc dnslabel.hh \
+ logger.cc statbag.cc qtype.cc sillyrecords.cc nsecrecords.cc base32.cc \
ednssubnet.cc ednssubnet.hh
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/Makefile.in
^
|
@@ -245,9 +245,8 @@
polarrsakeyinfra.cc md5.cc md5.hh signingpipe.cc \
signingpipe.hh dnslabeltext.cc lua-pdns.cc lua-auth.cc \
lua-auth.hh serialtweaker.cc ednssubnet.cc ednssubnet.hh \
- cachecleaner.hh dnslabel.hh dnslabel.cc botan110signers.cc \
- botansigners.cc botan18signers.cc cryptoppsigners.cc \
- ssqlite3.cc ssqlite3.hh
+ cachecleaner.hh botan110signers.cc botansigners.cc \
+ botan18signers.cc cryptoppsigners.cc ssqlite3.cc ssqlite3.hh
@BOTAN110_TRUE@am__objects_1 = pdns_server-botan110signers.$(OBJEXT) \
@BOTAN110_TRUE@ pdns_server-botansigners.$(OBJEXT)
@BOTAN18_TRUE@am__objects_2 = pdns_server-botan18signers.$(OBJEXT) \
@@ -299,8 +298,7 @@
pdns_server-dnslabeltext.$(OBJEXT) \
pdns_server-lua-pdns.$(OBJEXT) pdns_server-lua-auth.$(OBJEXT) \
pdns_server-serialtweaker.$(OBJEXT) \
- pdns_server-ednssubnet.$(OBJEXT) \
- pdns_server-dnslabel.$(OBJEXT) $(am__objects_1) \
+ pdns_server-ednssubnet.$(OBJEXT) $(am__objects_1) \
$(am__objects_2) $(am__objects_3) $(am__objects_4)
pdns_server_OBJECTS = $(am_pdns_server_OBJECTS)
@BOTAN110_TRUE@am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1)
@@ -325,9 +323,9 @@
backends/gsql/gsqlbackend.hh backends/gsql/ssql.hh \
zoneparser-tng.cc dynlistener.cc dns.cc randombackend.cc \
dnssecsigner.cc polarrsakeyinfra.cc md5.cc signingpipe.cc \
- dnslabeltext.cc ednssubnet.cc cachecleaner.hh dnslabel.hh \
- dnslabel.cc botan110signers.cc botansigners.cc \
- botan18signers.cc cryptoppsigners.cc ssqlite3.cc ssqlite3.hh
+ dnslabeltext.cc ednssubnet.cc cachecleaner.hh \
+ botan110signers.cc botansigners.cc botan18signers.cc \
+ cryptoppsigners.cc ssqlite3.cc ssqlite3.hh
@BOTAN110_TRUE@am__objects_5 = pdnssec-botan110signers.$(OBJEXT) \
@BOTAN110_TRUE@ pdnssec-botansigners.$(OBJEXT)
@BOTAN18_TRUE@am__objects_6 = pdnssec-botan18signers.$(OBJEXT) \
@@ -352,9 +350,8 @@
pdnssec-randombackend.$(OBJEXT) pdnssec-dnssecsigner.$(OBJEXT) \
pdnssec-polarrsakeyinfra.$(OBJEXT) pdnssec-md5.$(OBJEXT) \
pdnssec-signingpipe.$(OBJEXT) pdnssec-dnslabeltext.$(OBJEXT) \
- pdnssec-ednssubnet.$(OBJEXT) pdnssec-dnslabel.$(OBJEXT) \
- $(am__objects_5) $(am__objects_6) $(am__objects_7) \
- $(am__objects_8)
+ pdnssec-ednssubnet.$(OBJEXT) $(am__objects_5) $(am__objects_6) \
+ $(am__objects_7) $(am__objects_8)
pdnssec_OBJECTS = $(am_pdnssec_OBJECTS)
pdnssec_DEPENDENCIES = ext/polarssl-1.1.2/library/libpolarssl.a \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
@@ -389,8 +386,7 @@
dnslabeltext.$(OBJEXT) misc.$(OBJEXT) rcpgenerator.$(OBJEXT) \
base64.$(OBJEXT) unix_utility.$(OBJEXT) logger.$(OBJEXT) \
statbag.$(OBJEXT) qtype.$(OBJEXT) sillyrecords.$(OBJEXT) \
- nsecrecords.$(OBJEXT) base32.$(OBJEXT) dnslabel.$(OBJEXT) \
- ednssubnet.$(OBJEXT)
+ nsecrecords.$(OBJEXT) base32.$(OBJEXT) ednssubnet.$(OBJEXT)
toysdig_OBJECTS = $(am_toysdig_OBJECTS)
toysdig_LDADD = $(LDADD)
am_tsig_tests_OBJECTS = tsig-tests.$(OBJEXT) dnsparser.$(OBJEXT) \
@@ -610,8 +606,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
@@ -719,15 +713,15 @@
polarrsakeyinfra.cc md5.cc md5.hh signingpipe.cc \
signingpipe.hh dnslabeltext.cc lua-pdns.cc lua-auth.cc \
lua-auth.hh serialtweaker.cc ednssubnet.cc ednssubnet.hh \
- cachecleaner.hh dnslabel.hh dnslabel.cc $(am__append_1) \
- $(am__append_4) $(am__append_7) $(am__append_9)
+ cachecleaner.hh $(am__append_1) $(am__append_4) \
+ $(am__append_7) $(am__append_9)
#
pdns_server_LDFLAGS = @moduleobjects@ @modulelibs@ @DYNLINKFLAGS@ @LIBDL@ @THREADFLAGS@ $(BOOST_SERIALIZATION_LDFLAGS) -rdynamic
pdns_server_LDADD = ext/polarssl-1.1.2/library/libpolarssl.a \
$(BOOST_SERIALIZATION_LIBS) $(LUA_LIBS) $(SQLITE3_LIBS) \
$(am__append_2) $(am__append_5) $(am__append_8)
-pdns_server_CPPFLAGS = $(am__append_3) $(am__append_6)
+pdns_server_CPPFLAGS = $(AM_CPPFLAGS) $(am__append_3) $(am__append_6)
pdnssec_SOURCES = pdnssec.cc dbdnsseckeeper.cc sstuff.hh dnsparser.cc \
dnsparser.hh dnsrecords.cc dnswriter.cc dnswriter.hh misc.cc \
misc.hh rcpgenerator.cc rcpgenerator.hh base64.cc base64.hh \
@@ -741,14 +735,14 @@
backends/gsql/ssql.hh zoneparser-tng.cc dynlistener.cc dns.cc \
randombackend.cc dnssecsigner.cc polarrsakeyinfra.cc md5.cc \
signingpipe.cc dnslabeltext.cc ednssubnet.cc cachecleaner.hh \
- dnslabel.hh dnslabel.cc $(am__append_10) $(am__append_13) \
- $(am__append_16) $(am__append_18)
+ $(am__append_10) $(am__append_13) $(am__append_16) \
+ $(am__append_18)
pdnssec_LDFLAGS = @moduleobjects@ @modulelibs@ @DYNLINKFLAGS@ @LIBDL@ @THREADFLAGS@ $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
pdnssec_LDADD = ext/polarssl-1.1.2/library/libpolarssl.a \
$(BOOST_PROGRAM_OPTIONS_LIBS) $(BOOST_SERIALIZATION_LIBS) \
$(SQLITE3_LIBS) $(am__append_11) $(am__append_14) \
$(am__append_17)
-pdnssec_CPPFLAGS = $(am__append_12) $(am__append_15)
+pdnssec_CPPFLAGS = $(AM_CPPFLAGS) $(am__append_12) $(am__append_15)
sdig_SOURCES = sdig.cc sstuff.hh dnsparser.cc dnsparser.hh dnsrecords.cc dnswriter.cc dnslabeltext.cc dnswriter.hh \
misc.cc misc.hh rcpgenerator.cc rcpgenerator.hh base64.cc base64.hh unix_utility.cc \
logger.cc statbag.cc qtype.cc sillyrecords.cc nsecrecords.cc base32.cc
@@ -762,7 +756,7 @@
nsec3dig_LDADD = -lpolarssl
toysdig_SOURCES = toysdig.cc sstuff.hh dnsparser.cc dnsparser.hh dnsrecords.cc dnswriter.cc dnslabeltext.cc dnswriter.hh \
misc.cc misc.hh rcpgenerator.cc rcpgenerator.hh base64.cc base64.hh unix_utility.cc \
- logger.cc statbag.cc qtype.cc sillyrecords.cc nsecrecords.cc base32.cc dnslabel.cc dnslabel.hh \
+ logger.cc statbag.cc qtype.cc sillyrecords.cc nsecrecords.cc base32.cc \
ednssubnet.cc ednssubnet.hh
@@ -1061,7 +1055,6 @@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dnsbulktest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dnsdemog.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dnsgram.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dnslabel.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dnslabeltext.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dnsparser.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dnspcap.Po@am__quote@
@@ -1109,7 +1102,6 @@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdns_server-dns.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdns_server-dns_random.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdns_server-dnsbackend.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdns_server-dnslabel.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdns_server-dnslabeltext.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdns_server-dnspacket.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdns_server-dnsparser.Po@am__quote@
@@ -1167,7 +1159,6 @@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdnssec-dbdnsseckeeper.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdnssec-dns.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdnssec-dnsbackend.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdnssec-dnslabel.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdnssec-dnslabeltext.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdnssec-dnspacket.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdnssec-dnsparser.Po@am__quote@
@@ -2168,20 +2159,6 @@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdns_server-ednssubnet.obj `if test -f 'ednssubnet.cc'; then $(CYGPATH_W) 'ednssubnet.cc'; else $(CYGPATH_W) '$(srcdir)/ednssubnet.cc'; fi`
-pdns_server-dnslabel.o: dnslabel.cc
-@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdns_server-dnslabel.o -MD -MP -MF $(DEPDIR)/pdns_server-dnslabel.Tpo -c -o pdns_server-dnslabel.o `test -f 'dnslabel.cc' || echo '$(srcdir)/'`dnslabel.cc
-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/pdns_server-dnslabel.Tpo $(DEPDIR)/pdns_server-dnslabel.Po
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dnslabel.cc' object='pdns_server-dnslabel.o' libtool=no @AMDEPBACKSLASH@
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdns_server-dnslabel.o `test -f 'dnslabel.cc' || echo '$(srcdir)/'`dnslabel.cc
-
-pdns_server-dnslabel.obj: dnslabel.cc
-@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdns_server-dnslabel.obj -MD -MP -MF $(DEPDIR)/pdns_server-dnslabel.Tpo -c -o pdns_server-dnslabel.obj `if test -f 'dnslabel.cc'; then $(CYGPATH_W) 'dnslabel.cc'; else $(CYGPATH_W) '$(srcdir)/dnslabel.cc'; fi`
-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/pdns_server-dnslabel.Tpo $(DEPDIR)/pdns_server-dnslabel.Po
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dnslabel.cc' object='pdns_server-dnslabel.obj' libtool=no @AMDEPBACKSLASH@
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdns_server-dnslabel.obj `if test -f 'dnslabel.cc'; then $(CYGPATH_W) 'dnslabel.cc'; else $(CYGPATH_W) '$(srcdir)/dnslabel.cc'; fi`
-
pdns_server-botan110signers.o: botan110signers.cc
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdns_server_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdns_server-botan110signers.o -MD -MP -MF $(DEPDIR)/pdns_server-botan110signers.Tpo -c -o pdns_server-botan110signers.o `test -f 'botan110signers.cc' || echo '$(srcdir)/'`botan110signers.cc
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/pdns_server-botan110signers.Tpo $(DEPDIR)/pdns_server-botan110signers.Po
@@ -2742,20 +2719,6 @@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdnssec-ednssubnet.obj `if test -f 'ednssubnet.cc'; then $(CYGPATH_W) 'ednssubnet.cc'; else $(CYGPATH_W) '$(srcdir)/ednssubnet.cc'; fi`
-pdnssec-dnslabel.o: dnslabel.cc
-@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdnssec-dnslabel.o -MD -MP -MF $(DEPDIR)/pdnssec-dnslabel.Tpo -c -o pdnssec-dnslabel.o `test -f 'dnslabel.cc' || echo '$(srcdir)/'`dnslabel.cc
-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/pdnssec-dnslabel.Tpo $(DEPDIR)/pdnssec-dnslabel.Po
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dnslabel.cc' object='pdnssec-dnslabel.o' libtool=no @AMDEPBACKSLASH@
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdnssec-dnslabel.o `test -f 'dnslabel.cc' || echo '$(srcdir)/'`dnslabel.cc
-
-pdnssec-dnslabel.obj: dnslabel.cc
-@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdnssec-dnslabel.obj -MD -MP -MF $(DEPDIR)/pdnssec-dnslabel.Tpo -c -o pdnssec-dnslabel.obj `if test -f 'dnslabel.cc'; then $(CYGPATH_W) 'dnslabel.cc'; else $(CYGPATH_W) '$(srcdir)/dnslabel.cc'; fi`
-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/pdnssec-dnslabel.Tpo $(DEPDIR)/pdnssec-dnslabel.Po
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dnslabel.cc' object='pdnssec-dnslabel.obj' libtool=no @AMDEPBACKSLASH@
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o pdnssec-dnslabel.obj `if test -f 'dnslabel.cc'; then $(CYGPATH_W) 'dnslabel.cc'; else $(CYGPATH_W) '$(srcdir)/dnslabel.cc'; fi`
-
pdnssec-botan110signers.o: botan110signers.cc
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pdnssec_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT pdnssec-botan110signers.o -MD -MP -MF $(DEPDIR)/pdnssec-botan110signers.Tpo -c -o pdnssec-botan110signers.o `test -f 'botan110signers.cc' || echo '$(srcdir)/'`botan110signers.cc
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/pdnssec-botan110signers.Tpo $(DEPDIR)/pdnssec-botan110signers.Po
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/arguments.cc
^
|
@@ -312,15 +312,8 @@
if(pos && pos!=string::npos)
val=val.substr(pos);
- if(parmIsset(var)) {
- if(var != "launch")
- params[var]=val;
- else {
- if(!params[var].empty())
- params[var]+=",";
- params["launch"]+= val;
- }
- }
+ if(parmIsset(var))
+ params[var]=val;
else
if(!lax)
throw ArgException("Trying to set unexisting parameter '"+var+"'");
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/backends/Makefile
^
|
@@ -184,13 +184,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/pdns/backends
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/backends/Makefile.in
^
|
@@ -184,8 +184,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/backends/bind/Makefile
^
|
@@ -223,13 +223,11 @@
SHELL = /bin/bash
SQLITE3_CFLAGS =
SQLITE3_LIBS =
-SQLITE_incdir =
-SQLITE_lib =
STRIP = strip
THREADFLAGS = -pthread
UNIXODBC_incdir =
UNIXODBC_lib =
-VERSION = 3.1
+VERSION = 3.2-pre
YACC = bison -y
YFLAGS =
abs_builddir = /home/oliver/src/svn/pdns-3.1/pdns/backends/bind
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/backends/bind/Makefile.in
^
|
@@ -223,8 +223,6 @@
SHELL = @SHELL@
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
SQLITE3_LIBS = @SQLITE3_LIBS@
-SQLITE_incdir = @SQLITE_incdir@
-SQLITE_lib = @SQLITE_lib@
STRIP = @STRIP@
THREADFLAGS = @THREADFLAGS@
UNIXODBC_incdir = @UNIXODBC_incdir@
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/backends/bind/bindbackend2.hh
^
|
@@ -161,6 +161,7 @@
virtual bool deactivateDomainKey(const string& name, unsigned int id);
virtual bool getTSIGKey(const string& name, string* algorithm, string* content);
static void createDNSSECDB(const string& fname);
+ virtual bool doesDNSSEC();
// end of DNSSEC
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/backends/bind/binddnssec.cc
^
|
@@ -32,6 +32,9 @@
void Bind2Backend::createDNSSECDB(const string& fname)
{}
+bool Bind2Backend::doesDNSSEC()
+{ return false; }
+
bool Bind2Backend::getNSEC3PARAM(const std::string& zname, NSEC3PARAMRecordContent* ns3p)
{ return false; }
@@ -89,6 +92,10 @@
}
}
+bool Bind2Backend::doesDNSSEC()
+{
+ return true;
+}
bool Bind2Backend::getNSEC3PARAM(const std::string& zname, NSEC3PARAMRecordContent* ns3p)
{
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/botansigners.cc
^
|
@@ -6,6 +6,7 @@
#include <botan/rsa.h>
#include <botan/pubkey.h>
#include <botan/look_pk.h>
+#include <botan/numthry.h>
#include "dnssecinfra.hh"
using namespace Botan;
@@ -92,13 +93,15 @@
#if BOTAN_VERSION_CODE < BOTAN_VERSION_CODE_FOR(1,9,0)
BigInt d1 = d_key->get_d() % (d_key->get_p() - 1);
BigInt d2 = d_key->get_d() % (d_key->get_q() - 1);
+ BigInt c = inverse_mod(d_key->get_q(), d_key->get_p());
#else
BigInt d1 = d_key->get_d1();
BigInt d2 = d_key->get_d2();
+ BigInt c = d_key->get_c();
#endif
storvect.push_back(make_pair("Exponent1", asRaw(d1)));
storvect.push_back(make_pair("Exponent2", asRaw(d2)));
- storvect.push_back(make_pair("Coefficient", asRaw(d_key->get_q())));
+ storvect.push_back(make_pair("Coefficient", asRaw(c)));
return storvect;
}
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/common_startup.cc
^
|
@@ -269,6 +269,7 @@
L<<"packetcache HIT"<<endl;
cached.setRemote(&P->d_remote); // inlined
cached.setSocket(P->getSocket()); // inlined
+ cached.d_anyLocal = P->d_anyLocal;
cached.setMaxReplyLen(P->getMaxReplyLen());
cached.d.rd=P->d.rd; // copy in recursion desired bit
cached.d.id=P->d.id;
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/dbdnsseckeeper.cc
^
|
@@ -40,8 +40,8 @@
DNSSECKeeper::keycache_t DNSSECKeeper::s_keycache;
DNSSECKeeper::metacache_t DNSSECKeeper::s_metacache;
-pthread_mutex_t DNSSECKeeper::s_metacachelock = PTHREAD_MUTEX_INITIALIZER;
-pthread_mutex_t DNSSECKeeper::s_keycachelock = PTHREAD_MUTEX_INITIALIZER;
+pthread_rwlock_t DNSSECKeeper::s_metacachelock = PTHREAD_RWLOCK_INITIALIZER;
+pthread_rwlock_t DNSSECKeeper::s_keycachelock = PTHREAD_RWLOCK_INITIALIZER;
AtomicCounter DNSSECKeeper::s_ops;
time_t DNSSECKeeper::s_last_prune;
@@ -55,7 +55,7 @@
}
{
- Lock l(&s_keycachelock);
+ ReadLock l(&s_keycachelock);
keycache_t::const_iterator iter = s_keycache.find(zone);
if(iter != s_keycache.end() && iter->d_ttd > (unsigned int)time(0)) {
if(iter->d_keys.empty())
@@ -109,20 +109,20 @@
void DNSSECKeeper::clearAllCaches() {
{
- Lock l(&s_keycachelock);
+ WriteLock l(&s_keycachelock);
s_keycache.clear();
}
- Lock l(&s_metacachelock);
+ WriteLock l(&s_metacachelock);
s_metacache.clear();
}
void DNSSECKeeper::clearCaches(const std::string& name)
{
{
- Lock l(&s_keycachelock);
+ WriteLock l(&s_keycachelock);
s_keycache.erase(name);
}
- Lock l(&s_metacachelock);
+ WriteLock l(&s_metacachelock);
pair<metacache_t::iterator, metacache_t::iterator> range = s_metacache.equal_range(name);
while(range.first != range.second)
s_metacache.erase(range.first++);
@@ -200,7 +200,7 @@
}
{
- Lock l(&s_metacachelock);
+ ReadLock l(&s_metacachelock);
metacache_t::const_iterator iter = s_metacache.find(tie(zname, key));
if(iter != s_metacache.end() && iter->d_ttd > now) {
@@ -219,7 +219,7 @@
nce.d_key= key;
nce.d_value = value;
{
- Lock l(&s_metacachelock);
+ WriteLock l(&s_metacachelock);
replacing_insert(s_metacache, nce);
}
}
@@ -292,7 +292,7 @@
}
{
- Lock l(&s_keycachelock);
+ ReadLock l(&s_keycachelock);
keycache_t::const_iterator iter = s_keycache.find(zone);
if(iter != s_keycache.end() && iter->d_ttd > now) {
@@ -340,7 +340,7 @@
kce.d_keys = allkeyset;
kce.d_ttd = now + 30;
{
- Lock l(&s_keycachelock);
+ WriteLock l(&s_keycachelock);
replacing_insert(s_keycache, kce);
}
@@ -411,11 +411,11 @@
if(now.tv_sec - s_last_prune > (time_t)(30)) {
{
- Lock l(&s_metacachelock);
+ WriteLock l(&s_metacachelock);
pruneCollection(s_metacache, ::arg().asNum("max-cache-entries"));
}
{
- Lock l(&s_keycachelock);
+ WriteLock l(&s_keycachelock);
pruneCollection(s_keycache, ::arg().asNum("max-cache-entries"));
}
s_last_prune=time(0);
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/dnspacket.cc
^
|
@@ -89,7 +89,7 @@
d_maxreplylen = orig.d_maxreplylen;
d_ednsping = orig.d_ednsping;
d_wantsnsid = orig.d_wantsnsid;
-
+ d_anyLocal = orig.d_anyLocal;
d_eso = orig.d_eso;
d_haveednssubnet = orig.d_haveednssubnet;
d_haveednssection = orig.d_haveednssection;
@@ -357,7 +357,7 @@
{
DNSPacket *r=new DNSPacket;
r->setSocket(d_socket);
-
+ r->d_anyLocal=d_anyLocal;
r->setRemote(&d_remote);
r->setAnswer(true); // this implies the allocation of the header
r->setA(true); // and we are authoritative
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/dnspacket.hh
^
|
@@ -1,6 +1,6 @@
/*
PowerDNS Versatile Database Driven Nameserver
- Copyright (C) 2002 - 2011 PowerDNS.COM BV
+ Copyright (C) 2002 - 2012 PowerDNS.COM BV
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License version 2 as published
@@ -93,6 +93,8 @@
}
uint16_t getRemotePort() const;
+ boost::optional<ComboAddress> d_anyLocal;
+
Utility::sock_t getSocket() const
{
return d_socket;
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/dnssec.schema.mysql.sql
^
|
@@ -22,7 +22,7 @@
alter table records add ordername VARCHAR(255) BINARY;
alter table records add auth bool;
-create index orderindex on records(ordername);
+create index recordorder on records (domain_id, ordername);
create table tsigkeys (
id INT auto_increment,
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/dnsseckeeper.hh
^
|
@@ -156,8 +156,8 @@
static keycache_t s_keycache;
static metacache_t s_metacache;
- static pthread_mutex_t s_metacachelock;
- static pthread_mutex_t s_keycachelock;
+ static pthread_rwlock_t s_metacachelock;
+ static pthread_rwlock_t s_keycachelock;
static AtomicCounter s_ops;
static time_t s_last_prune;
};
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/docs/Makefile
^
|
@@ -1,4 +1,4 @@
-# $Id: Makefile 2407 2012-02-16 08:33:51Z peter $
+# $Id: Makefile 2793 2012-10-10 12:54:11Z peter $
all: pdns.txt pdns.pdf html/index.html html.tar.gz pdns-expanded.html
@@ -6,7 +6,7 @@
./expand < $< > $@
clean:
- rm -rf *.dvi *.pdf *.tex *.toc *.aux *.ps *.bak *.tmp *~ *.log pdns.txt html.tar.gz html pdns pdns-expanded.html
+ rm -rf *.dvi *.pdf *.tex *.toc *.aux *.ps *.bak *.tmp *~ *.log pdns.txt html.tar.gz html pdns pdns-expanded.html pdns-expanded.xml pdns_recursor.1 rec_control.1
html/index.html: pdns-expanded.xml
xmlto xhtml -m config.xsl -o html $<
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/docs/pdns.xml
^
|
@@ -95,51 +95,195 @@
<para>
Beyond PowerDNS 2.9.20, the Authoritative Server and Recursor are released separately.
</para>
- <sect2 id="changelog-auth-3-1-1"><title>PowerDNS Authoritative Server 3.1.1</title>
+ <sect2 id="changelog-auth-3-2"><title>PowerDNS Authoritative Server 3.2</title>
<note>
- <para>..</para>
+ <para>UNRELEASED</para>
</note>
<para>
- This is a maintenance update to the 3.1 release, fixing a few important issues.
+ This is a stability and confirmity update to 3.1. It mostly makes our DNSSEC implementation more robust,
+ and improves interoperability with various validators.
</para>
<para>
- Changes since 3.1, from most to least important:
- <itemizedlist>
- <listitem>
- <para>
- c2662/c2649: Make sure queries with EDNS also get EDNS in their response. Supposedly fixes interaction with BIND validators. Spotted by Mats Dufberg.
- </para>
- </listitem>
- <listitem>
- <para>
- c2659/c2622: Stop tinydnsbackend from choking on request names longer than 64 bytes. Reported by PiZZaBoY, fixed by Ruben d'Arco.
- </para>
- </listitem>
- <listitem>
- <para>
- c2654/c2609, c2657/c2612: obfuscate Postgres passwords in log messages. Reported by Stefan Kaltenbrunner.
- </para>
+ DNSSEC changes in 3.2:
+ <itemizedlist>
+ <listitem>
+ <para>
+ Kees Monshouwer did a tremendous amount of work to improve and perfect our DNSSEC implementation,
+ mostly in the NSEC3 area. Code in c2687, c2689, c2691, fixing t486, t537, t540. He also implemented support for Empty Non-Terminals,
+ code in c2721, c2732, c2745, fixing t127 and t558.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Presigned wildcard operation was improved with the help of many parties (see commit message for c2676). Presigned operation
+ was also changed to be more consistent with master/live-signing operation. Code and a full test suite in c2709, which also improves
+ TTL behaviour for various situations. Fixes t460, t533, t559.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Depending on database & locale settings, names starting with underscore would sometimes cause broken records. c2710 contains schema
+ and code changes for the gpgsql and gmysql backends to sort this (no pun intended) definitively, closing t550. In addition, a pdnssec test-schema command was added (experimental and incomplete). It can be used to verify underscore sorting and a few other parameters of the database. Code in c2714.
+ </para>
</listitem>
<listitem>
<para>
- c2656/c2611: 3.1 accidentally shipped without Lua support. Reported by Jan-Piet Mens.
+ We now always include an EDNS section in responses to queries that also had an EDNS section. This was thought to improve BIND interoperability, but this turned out to be false. In any case, this change improves standards compliance. Spotted by Mats Dufberg, code in c2649.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ It turns out we were storing Botan keys the wrong way. Botan did not care but Polar did, causing interoperability problems. Fixed in c2720, with the kind help of Paul Bakker of PolarSSL. Fixes t492 as reported by Florian Obser via Debian.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ pdnssec add-zone-key now defaults to RSASHA256, like secure-zone already did. Code in c2692.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ pdns_control purge now also purges DNSSEC-related caches (keys and metadata). Code in c2694, by Ruben d'Arco. Fixes t530.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The signer thread would die in specific situations, leaving you with a non-working but very busy system. Fixed in c2668, c2670, closing t517.
+ </para>
+ </listitem>
+ </itemizedlist>
+
+ Non-DNSSEC improvements/changes in 3.2:
+ <itemizedlist>
+ <listitem>
+ <para>
+ A new backend, the 'Remote backend' <xref linkend="remotebackend" /> was submitted by Aki Tuomi. It aims to replace the pipebackend with a better protocol and support for more connection methods, including HTTP. Code in c2755, c2756, c2757, c2758, c2759, closing t529.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The gsqlite (SQLite 2) backend was removed. We were not aware of any users and it was not actually working anyway. Changes in c2773-c2777, closing t565.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Various tinydnsbackend improvements: ignore-bogus-records option; TAI offset updated; strip dots on names where suitable; various internal improvements. Code in c2762.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ gpgsql no longer logs the database password in connection errors. Code in c2609, c2612, closing t459.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ You can now finally specify 0.0.0.0 or :: as local-address/local-ipv6 without getting replies from the wrong address. This much-requested feature is implemented in c2763, c2766, c2779 and c2781. Tested on Linux, FreeBSD and Mac OS X.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ 3.2 can be reliably built with or without Lua. This and many other configure/compile-related fixes in c2610, c2611 (t461), c2666, c2671, c2672 (t522), c2673 (t522), c2696 (t555), c2697 (t457), c2698, c2708, c2742 (t462), c2752 (t437), c2764.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Juraj Lutter contributed AXFR-SOURCE per zone metadata settings. Code in c2616.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Initscripts now have exit codes, submitted by Sander Hoentjes. Code in c2728. Guardian now returns 0 instead of 1 when receiving SIGTERM, requested by Morten Stevens of Fedora. Code in c2717.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Mark Zealey submitted various performance improvement patches and suggestions. Accepted as c2729 (t579), c2730 (t584), c2731 (t583), c2768 (t578). Please see commit messages for more details.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ pdnssec check-all-zones now reuses database connections, avoiding a socket exhaustion issue in some situations. Code in c2749, closes t519.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Ruben d'Arco submitted various improvements regarding trailing dots. Additional lookups now try harder, pdnssec errors about trailing dots in names, pdnssec warns about trailing dots in names inside content fields, AXFR now strips the dot from SRV hostnames. Code in c2748, fixes t289.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Pre-3.0, backends would get cycled if they threw the right error. 3.2 reinstates this behaviour, as it is more robust. Change in c2734 (reverting c2100), fixes t386.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ PowerDNS auth does not use the select() kernel/library call anymore. This means fd-numbers over 1023 (and, in general, more than 1024 sockets, including more than 1024 listening sockets) should now work reliably. Code in c2739, c2740, fixes t408.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ gmysql users can now specify the 'group' we connect as, using the gmysql-group setting. Submitted by Kees Monshouwer, code in c2770, c2771, c2778, c2780, closing t463.
+ </para>
+ </listitem>
+ </itemizedlist>
+
+ Assorted bugfixes:
+ <itemizedlist>
+ <listitem>
+ <para>
+ We no longer send v6 notifications if v6 is not available. Same for IPv4. Code in c2772, fixes t515.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ We would sometimes serve stale data after an incoming AXFR. Reported by Martin Draschl, fixed by Ruben d'Arco in c2699, closing t525.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Duplicate incoming NOTIFYs could cause PowerDNS to try to insert the same domain name into a database twice. Fixed in c2703, closing t453.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ pdnssec show-zone now works on a zone that has any number of keys, instead of requiring active keys. Reported by Jeroen Tushuizen of myH2Oservers, code in c2769, closes t586.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ pdns-control notify-host now accepts v6 literals. Reported by Christof Meerwald, fixed in c2704.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The tinydnsbackend no longer chokes on questions longer than 64 bytes. Code in c2622.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ *-all-domains commands in pdnssec now work with Postgres (gpgsql) too. Code in c2645, closing t472.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ We would sometimes leave the opcode of an outgoing packet uninitialized. Fixed in c2680, closing t532.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ nproxy can now listen on a configurable port. Code in c2684, fixes t534.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Improve mydnsbackend for SOA queries. Code in c2751, fixes t439, by Ruben d'Arco.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Various non-functional fixes that make Valgrind happy (note that Valgrind was right to complain in all of these situations), in c2715, c2716, c2718.
</para>
</listitem>
- <listitem>
- <para>
- c2663/c2651: "Did you mean check-zone?"
- </para>
- </listitem>
- <listitem>
- <para>
- c2658/c2614: the pdns.conf 'allow-recursion-override' is gone, as it did not do anything anyway.
- </para>
- </listitem>
- <listitem>
- <para>
- Plus other very minor fixes.
- </para>
- </listitem>
</itemizedlist>
</para>
@@ -10723,8 +10867,8 @@
<para>
For MySQL:
<screen>
- mysql> ALTER TABLE records MODIFY content VARCHAR(64000);
- mysql> ALTER TABLE tsigkeys MODIFY algorithm VARCHAR(50);
+mysql> ALTER TABLE records MODIFY content VARCHAR(64000);
+mysql> ALTER TABLE tsigkeys MODIFY algorithm VARCHAR(50);
</screen>
</para>
<para>
@@ -10734,6 +10878,33 @@
PowerDNS 3.0 and 3.1 will only fetch DNSSEC metadata and key material from the first DNSSEC-capable backend in the launch line. In 3.1, the bindbackend supports DNSSEC storage. This means that setups using launch=bind,gsqlite3 or launch=gsqlite3,bind may break. Please tread carefully!
</para>
</sect1>
+ <sect1 id="from3.1to3.2"><title>From PowerDNS Authoritative Server 3.1 to 3.2</title>
+ <note>
+ <para>
+ If you are coming from 2.9.x, please also read <xref linkend="from2.9to3.0" /> and <xref linkend="from3.0to3.1" />.
+ </para>
+ </note>
+ <para>
+ 3.2 again involves some SQL schema changes, to make sure 'ordername' is ordered correctly for NSEC generation. For MySQL:
+ <screen>
+alter table records modify ordername VARCHAR(255) BINARY;
+drop index orderindex on records;
+create index recordorder on records (domain_id, ordername);
+ </screen>
+
+ You can test the BINARY change with the new and experimental 'pdnssec test-schema' command.
+
+ For PostgreSQL, there are no real schema changes, but our indexes turned out to be inefficient, especially given the changed ordername queries in 3.2.
+ Changes:
+ <screen>
+drop index orderindex;
+create index recordorder on records (domain_id, ordername text_pattern_ops);
+ </screen>
+
+ Additionally, with 3.2 supporting empty non-terminals (see <xref linkend="dnssec-direct-database" />), your frontend may need some changes.
+ </para>
+ </sect1>
+
</chapter>
<chapter id="powerdnssec-auth">
<title>Serving authoritative DNSSEC data</title>
@@ -11400,8 +11571,9 @@
<note><para>The BIND Backend automates all the steps outlined below, and does not need 'manual' help
</para></note></para>
<para>
- For DNSSEC, two additional fields are important: 'auth' and 'ordername'. These fields are set correctly
- on an incoming zone transfer, and also by running 'pdnssec rectify-zone', or 'zone2sql' with the --dnssec flag.
+ In PowerDNS 3.0 and up, two additional fields are important: 'auth' and 'ordername'. These fields are set correctly
+ on an incoming zone transfer, and also by running 'pdnssec rectify-zone'. zone2sql with the --dnssec flag aims to
+ do this too but there are minor bugs in there, so please run 'pdnssec rectify-zone' after zone2sql.
</para>
<para>The 'auth' field should be set to '1' for
data for which the zone itself is authoritative, which includes the SOA record and its own NS records.
@@ -11424,6 +11596,17 @@
In 'NSEC3' non-narrow mode, the ordername should contain a lowercase base32hex encoded representation of the salted & iterated hash
of the full record name. <command>pdnssec hash-zone-record zone record</command> can be used to calculate this hash.
</para>
+ <para>
+ In addition, from 3.2 and up, PowerDNS fully supports empty non-terminals. If you have a zone example.com, and a host a.b.c.example.com in it,
+ rectify-zone (and the AXFR client code) will insert b.c.example.com and c.example.com in the records table with type NULL (SQL NULL, not 'NULL').
+ Having these entries provides several benefits. We no longer reply NXDOMAIN for these shorter names (this was an RFC violation but not one that caused trouble).
+ But more importantly, to do NSEC3 correctly, we need to be able to prove existence of these shorter names. The type=NULL records entry gives us a place
+ to store the NSEC3 hash of these names.
+ </para>
+ <para>
+ If your frontend does not add empty non-terminal names to records, you will get DNSSEC replies of 3.1-quality, which has served many people well, but we
+ suggest you update your code as soon as possible!
+ </para>
</section>
</section>
<section id="dnssec-security"><title>Security</title>
@@ -15610,7 +15793,15 @@
<term>backend-user</term>
<listitem>
<para>
- PgSQL user to connect as
+ User to connect as
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>backend-group (MySQL only, since 3.2)</term>
+ <listitem>
+ <para>
+ MySQL 'group' to connect as, defaults to 'client'.
</para>
</listitem>
</varlistentry>
@@ -17275,10 +17466,10 @@
<tbody>
<row><entry>Native</entry><entry>Yes</entry></row>
<row><entry>Master</entry><entry>Yes</entry></row>
- <row><entry>Slave</entry><entry>No</entry></row>
- <row><entry>Superslave</entry><entry>No</entry></row>
- <row><entry>Autoserial</entry><entry>No</entry></row>
- <row><entry>DNSSEC</entry><entry>No</entry></row>
+ <row><entry>Slave</entry><entry>No</entry></row>
+ <row><entry>Superslave</entry><entry>No</entry></row>
+ <row><entry>Autoserial</entry><entry>No</entry></row>
+ <row><entry>DNSSEC</entry><entry>No</entry></row>
<row><entry>Multiple instances</entry><entry>Yes</entry></row>
</tbody>
</tgroup>
@@ -17304,8 +17495,8 @@
<listitem>
<para>
This adjusts the <ulink url="http://www.tai64.com/">TAI</ulink> value if timestamps are used.
-These seconds will be added to the start point (1970) and will allow you to adjust for leap seconds. The current default is 10,
-<ulink url="http://hpiers.obspm.fr/iers/bul/bulc/bulletinc.dat">but as of june 30th 2012</ulink> should be 11.
+These seconds will be added to the start point (1970) and will allow you to adjust for leap seconds. The current default is 11.
+The last update was on <ulink url="http://hpiers.obspm.fr/iers/bul/bulc/bulletinc.dat">june 30th 2012</ulink>.
</para>
</listitem>
</varlistentry>
@@ -17315,7 +17506,19 @@
<para>Tell the TinyDNSBackend to notify all the slave nameservers on startup. This might cause broadcast storms. Default is no.</para>
</listitem>
</varlistentry>
- <varlistentry>
+ <varlistentry>
+ <term>tinydns-ignore-bogus-records</term>
+ <listitem>
+ <para>
+ The <command>tinydns-data</command> program can create data.cdb files that have bad/corrupt RDATA.
+ PowerDNS will crash when it tries to read that bad/corrupt data. This option (change to yes), allows you to ignore that bad RDATA
+ to make PowerDNS operate when bad data is in your CDB file. Be aware that the records are then ignored, where tinydns would
+ still send out the bogus data.
+ The option is primarily useful in master mode, as that reads all the packets in the zone to find all the SOA records.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
<term>tinydns-locations</term>
<listitem>
<para>Enable or Disable location support in the backend. Changing the value to 'no' will make the backend ignore the locations. This then returns all records. When the setting is changed to 'no' an AXFR will also return all the records. With the setting on 'yes' an AXFR will only return records without a location.</para>
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/mastercommunicator.cc
^
|
@@ -166,6 +166,9 @@
if(!purged) {
try {
ComboAddress remote(ip, 53); // default to 53
+ if((d_nsock6 < 0 && remote.sin4.sin_family == AF_INET6) ||
+ (d_nsock4 < 0 && remote.sin4.sin_family == AF_INET))
+ continue; // don't try to notify what we can't!
sendNotification(remote.sin4.sin_family == AF_INET ? d_nsock4 : d_nsock6, domain, remote, id);
drillHole(domain, ip);
}
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/nameserver.cc
^
|
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2002 - 2007 PowerDNS.COM BV
+ Copyright (C) 2002 - 2012 PowerDNS.COM BV
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
@@ -76,6 +76,14 @@
The main() of PowerDNS can be found in receiver.cc - start reading there for further insights into the operation of the nameserver
*/
+#ifdef IP_PKTINFO
+ #define GEN_IP_PKTINFO IP_PKTINFO
+#endif
+#ifdef IP_RECVDSTADDR
+ #define GEN_IP_PKTINFO IP_RECVDSTADDR
+#endif
+
+
void UDPNameserver::bindIPv4()
{
vector<string>locals;
@@ -90,11 +98,12 @@
struct sockaddr_in locala;
s=socket(AF_INET,SOCK_DGRAM,0);
- Utility::setCloseOnExec(s);
if(s<0)
throw AhuException("Unable to acquire a UDP socket: "+string(strerror(errno)));
+ Utility::setCloseOnExec(s);
+
if(locals.size() > 1 && !Utility::setNonBlocking(s))
throw AhuException("Unable to set UDP socket to non-blocking: "+stringerror());
@@ -102,8 +111,8 @@
locala.sin_family=AF_INET;
if(localname=="0.0.0.0") {
- L<<Logger::Warning<<"It is advised to bind to explicit addresses with the --local-address option"<<endl;
-
+ int val=1;
+ setsockopt(s, IPPROTO_IP, GEN_IP_PKTINFO, &val, sizeof(val));
locala.sin_addr.s_addr = INADDR_ANY;
}
else
@@ -133,10 +142,20 @@
}
}
+static bool IsAnyAddress(const ComboAddress& addr)
+{
+ if(addr.sin4.sin_family == AF_INET)
+ return addr.sin4.sin_addr.s_addr == 0;
+ else if(addr.sin4.sin_family == AF_INET6)
+ return !memcmp(&addr.sin6.sin6_addr, &in6addr_any, sizeof(addr.sin6.sin6_addr));
+
+ return false;
+}
+
void UDPNameserver::bindIPv6()
{
#if !WIN32 && HAVE_IPV6
- vector<string>locals;
+ vector<string> locals;
stringtok(locals,::arg()["local-ipv6"]," ,");
if(locals.empty())
@@ -150,13 +169,15 @@
Utility::setCloseOnExec(s);
if(s<0)
throw AhuException("Unable to acquire a UDPv6 socket: "+string(strerror(errno)));
-
- if(localname=="::0") {
- L<<Logger::Warning<<"It is advised to bind to explicit addresses with the --local-ipv6 option"<<endl;
+
+ ComboAddress locala(localname, ::arg().asNum("local-port"));
+
+ if(IsAnyAddress(locala)) {
+ int val=1;
+ setsockopt(s, IPPROTO_IP, GEN_IP_PKTINFO, &val, sizeof(val));
+ setsockopt(s, IPPROTO_IPV6, IPV6_RECVPKTINFO, &val, sizeof(val));
}
- ComboAddress locala(localname, ::arg().asNum("local-port"));
-
if(::bind(s, (sockaddr*)&locala, sizeof(locala))<0) {
L<<Logger::Error<<"binding to UDP ipv6 socket: "<<strerror(errno)<<endl;
throw AhuException("Unable to bind to UDP ipv6 socket");
@@ -183,18 +204,205 @@
bindIPv6();
if(::arg()["local-address"].empty() && ::arg()["local-ipv6"].empty())
- L<<Logger::Critical<<"PDNS is deaf and mute! Not listening on any interfaces"<<endl;
-
+ L<<Logger::Critical<<"PDNS is deaf and mute! Not listening on any interfaces"<<endl;
}
-
void UDPNameserver::send(DNSPacket *p)
{
const string& buffer=p->getString();
+
+ struct msghdr msgh;
+ struct cmsghdr *cmsg;
+ struct iovec iov;
+ char cbuf[256];
+
+ /* Set up iov and msgh structures. */
+ memset(&msgh, 0, sizeof(struct msghdr));
+ iov.iov_base = (void*)buffer.c_str();
+ iov.iov_len = buffer.length();
+ msgh.msg_iov = &iov;
+ msgh.msg_iovlen = 1;
+ msgh.msg_name = (struct sockaddr*)&p->d_remote;
+ msgh.msg_namelen = p->d_remote.getSocklen();
+
+ if(p->d_anyLocal) {
+ if(p->d_anyLocal->sin4.sin_family == AF_INET6) {
+ struct in6_pktinfo *pkt;
+
+ msgh.msg_control = cbuf;
+ msgh.msg_controllen = CMSG_SPACE(sizeof(*pkt));
+
+ cmsg = CMSG_FIRSTHDR(&msgh);
+ cmsg->cmsg_level = IPPROTO_IPV6;
+ cmsg->cmsg_type = IPV6_PKTINFO;
+ cmsg->cmsg_len = CMSG_LEN(sizeof(*pkt));
+
+ pkt = (struct in6_pktinfo *) CMSG_DATA(cmsg);
+ memset(pkt, 0, sizeof(*pkt));
+ pkt->ipi6_addr = p->d_anyLocal->sin6.sin6_addr;
+// cerr<<"Setting local ipv6 address"<<endl;
+ }
+ else {
+#ifdef IP_PKTINFO
+ struct in_pktinfo *pkt;
+ msgh.msg_control = cbuf;
+ msgh.msg_controllen = CMSG_SPACE(sizeof(*pkt));
+
+ cmsg = CMSG_FIRSTHDR(&msgh);
+ cmsg->cmsg_level = IPPROTO_IP;
+ cmsg->cmsg_type = IP_PKTINFO;
+ cmsg->cmsg_len = CMSG_LEN(sizeof(*pkt));
+
+ pkt = (struct in_pktinfo *) CMSG_DATA(cmsg);
+ memset(pkt, 0, sizeof(*pkt));
+ pkt->ipi_spec_dst = p->d_anyLocal->sin4.sin_addr;
+// cerr<<"Setting local ipv4 address Linux way"<<endl;
+#endif
+#ifdef IP_SENDSRCADDR
+ struct in_addr *in;
+
+ msgh.msg_control = cbuf;
+ msgh.msg_controllen = CMSG_SPACE(sizeof(*in));
+
+ cmsg = CMSG_FIRSTHDR(&msgh);
+ cmsg->cmsg_level = IPPROTO_IP;
+ cmsg->cmsg_type = IP_SENDSRCADDR;
+ cmsg->cmsg_len = CMSG_LEN(sizeof(*in));
+
+ in = (struct in_addr *) CMSG_DATA(cmsg);
+ *in = p->d_anyLocal->sin4.sin_addr;
+// cerr<<"Setting local ipv4 address FreeBSD way"<<endl;
+#endif
+ }
+ }
DLOG(L<<Logger::Notice<<"Sending a packet to "<< p->getRemote() <<" ("<< buffer.length()<<" octets)"<<endl);
if(buffer.length() > p->getMaxReplyLen()) {
cerr<<"Weird, trying to send a message that needs truncation, "<< buffer.length()<<" > "<<p->getMaxReplyLen()<<endl;
}
- if(sendto(p->getSocket(),buffer.c_str(), buffer.length(), 0, (struct sockaddr *)(&p->d_remote), p->d_remote.getSocklen()) < 0)
+ if(sendmsg(p->getSocket(), &msgh, 0) < 0)
L<<Logger::Error<<"Error sending reply with sendto (socket="<<p->getSocket()<<"): "<<strerror(errno)<<endl;
}
+static bool HarvestDestinationAddress(struct msghdr* msgh, ComboAddress* destination)
+{
+ memset(destination, 0, sizeof(*destination));
+ struct cmsghdr *cmsg;
+ for (cmsg = CMSG_FIRSTHDR(msgh); cmsg != NULL; cmsg = CMSG_NXTHDR(msgh,cmsg)) {
+#ifdef IP_PKTINFO
+ if ((cmsg->cmsg_level == IPPROTO_IP) && (cmsg->cmsg_type == IP_PKTINFO)) {
+ struct in_pktinfo *i = (struct in_pktinfo *) CMSG_DATA(cmsg);
+ destination->sin4.sin_addr = i->ipi_addr;
+ destination->sin4.sin_family = AF_INET;
+ return true;
+ }
+#endif
+#ifdef IP_RECVDSTADDR
+ if ((cmsg->cmsg_level == IPPROTO_IP) && (cmsg->cmsg_type == IP_RECVDSTADDR)) {
+ struct in_addr *i = (struct in_addr *) CMSG_DATA(cmsg);
+ destination->sin4.sin_addr = *i;
+ destination->sin4.sin_family = AF_INET;
+ return true;
+ }
+#endif
+
+ if ((cmsg->cmsg_level == IPPROTO_IPV6) && (cmsg->cmsg_type == IPV6_PKTINFO)) {
+ struct in6_pktinfo *i = (struct in6_pktinfo *) CMSG_DATA(cmsg);
+ destination->sin6.sin6_addr = i->ipi6_addr;
+ destination->sin4.sin_family = AF_INET6;
+ return true;
+ }
+ }
+ return false;
+}
+
+DNSPacket *UDPNameserver::receive(DNSPacket *prefilled)
+{
+ ComboAddress remote;
+ extern StatBag S;
+ int len=-1;
+ char mesg[512];
+ Utility::sock_t sock=-1;
+
+ struct msghdr msgh;
+ struct iovec iov;
+ char cbuf[256];
+
+ iov.iov_base = mesg;
+ iov.iov_len = sizeof(mesg);
+
+ memset(&msgh, 0, sizeof(struct msghdr));
+
+ msgh.msg_control = cbuf;
+ msgh.msg_controllen = sizeof(cbuf);
+ msgh.msg_name = &remote;
+ msgh.msg_namelen = sizeof(remote);
+ msgh.msg_iov = &iov;
+ msgh.msg_iovlen = 1;
+ msgh.msg_flags = 0;
+
+ int err;
+ if(d_sockets.size()>1) {
+ BOOST_FOREACH(struct pollfd &pfd, d_rfds) {
+ pfd.events = POLL_IN;
+ pfd.revents = 0;
+ }
+
+ err = poll(&d_rfds[0], d_rfds.size(), -1);
+ if(err < 0)
+ unixDie("Unable to poll for new UDP events");
+
+ BOOST_FOREACH(struct pollfd &pfd, d_rfds) {
+ if(pfd.revents & POLL_IN) {
+ sock=pfd.fd;
+ len=0;
+
+ if((len=recvmsg(sock, &msgh, 0)) < 0 ) {
+ if(errno != EAGAIN)
+ L<<Logger::Error<<"recvfrom gave error, ignoring: "<<strerror(errno)<<endl;
+ return 0;
+ }
+ break;
+ }
+ }
+ if(sock==-1)
+ throw AhuException("select betrayed us! (should not happen)");
+ }
+ else {
+ sock=d_sockets[0];
+
+ if((len=recvmsg(sock, &msgh, 0)) < 0 ) {
+ if(errno != EAGAIN)
+ L<<Logger::Error<<"recvfrom gave error, ignoring: "<<strerror(errno)<<endl;
+ return 0;
+ }
+ }
+
+
+ DLOG(L<<"Received a packet " << len <<" bytes long from "<< remote.toString()<<endl);
+
+ DNSPacket *packet;
+ if(prefilled) // they gave us a preallocated packet
+ packet=prefilled;
+ else
+ packet=new DNSPacket; // don't forget to free it!
+ packet->d_dt.set(); // timing
+ packet->setSocket(sock);
+ packet->setRemote(&remote);
+
+ ComboAddress dest;
+ if(HarvestDestinationAddress(&msgh, &dest)) {
+// cerr<<"Setting d_anyLocal to '"<<dest.toString()<<"'"<<endl;
+ packet->d_anyLocal = dest;
+ }
+
+
+ if(packet->parse(mesg, len)<0) {
+ S.inc("corrupt-packets");
+ S.ringAccount("remotes-corrupt", packet->getRemote());
+
+ if(!prefilled)
+ delete packet;
+ return 0; // unable to parse
+ }
+
+ return packet;
+}
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/nameserver.hh
^
|
@@ -73,7 +73,7 @@
{
public:
UDPNameserver(); //!< Opens the socket
- inline DNSPacket *receive(DNSPacket *prefilled=0); //!< call this in a while or for(;;) loop to get packets
+ DNSPacket *receive(DNSPacket *prefilled=0); //!< call this in a while or for(;;) loop to get packets
static void send(DNSPacket *); //!< send a DNSPacket. Will call DNSPacket::truncate() if over 512 bytes
private:
@@ -84,78 +84,6 @@
int d_highfd;
};
-inline DNSPacket *UDPNameserver::receive(DNSPacket *prefilled)
-{
- ComboAddress remote;
- extern StatBag S;
-
- Utility::socklen_t addrlen;
- int len=-1;
- char mesg[513];
- Utility::sock_t sock=-1;
-
- memset( &remote, 0, sizeof( remote ));
- addrlen=sizeof(remote);
- if(d_sockets.size()>1) {
- BOOST_FOREACH(struct pollfd &pfd, d_rfds) {
- pfd.events = POLL_IN;
- pfd.revents = 0;
- }
-
- poll(&d_rfds[0], d_rfds.size(), -1);
-
- BOOST_FOREACH(struct pollfd &pfd, d_rfds) {
- if(pfd.revents & POLL_IN) {
- sock=pfd.fd;
- addrlen=sizeof(remote);
-
- len=0;
-
- // XXX FIXME this code could be using recvmsg + ip_pktinfo on platforms that support it
-
- if((len=recvfrom(sock,mesg,sizeof(mesg)-1,0,(sockaddr*) &remote, &addrlen))<0) {
- if(errno != EAGAIN)
- L<<Logger::Error<<"recvfrom gave error, ignoring: "<<strerror(errno)<<endl;
- return 0;
- }
- break;
- }
- }
- if(sock==-1)
- throw AhuException("select betrayed us! (should not happen)");
- }
- else {
- sock=d_sockets[0];
-
- len=0;
- if((len=recvfrom(sock,mesg,512,0,(sockaddr*) &remote, &addrlen))<0) {
- if(errno != EAGAIN)
- L<<Logger::Error<<"recvfrom gave error, ignoring: "<<strerror(errno)<<endl;
- return 0;
- }
- }
-
- DLOG(L<<"Received a packet " << len <<" bytes long from "<< remote.toString()<<endl);
-
- DNSPacket *packet;
- if(prefilled) // they gave us a preallocated packet
- packet=prefilled;
- else
- packet=new DNSPacket; // don't forget to free it!
- packet->d_dt.set(); // timing
- packet->setSocket(sock);
- packet->setRemote(&remote);
- if(packet->parse(mesg, len)<0) {
- S.inc("corrupt-packets");
- S.ringAccount("remotes-corrupt", packet->getRemote());
-
- if(!prefilled)
- delete packet;
- return 0; // unable to parse
- }
-
- return packet;
-}
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/nsec3dig.cc
^
|
@@ -95,7 +95,7 @@
set<string> names;
nsec3set nsec3s;
string nsec3salt;
- int nsec3iters;
+ int nsec3iters = 0;
for(MOADNSParser::answers_t::const_iterator i=mdp.d_answers.begin(); i!=mdp.d_answers.end(); ++i) {
if(i->first.d_type == QType::NSEC3)
{
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/packethandler.cc
^
|
@@ -255,7 +255,7 @@
if(p->qclass == QClass::CHAOS && p->qtype.getCode()==QType::TXT && target=="version.bind") {// TXT
if(mode.empty() || mode=="full")
- rr.content="Served by POWERDNS "VERSION" $Id: packethandler.cc 2748 2012-10-04 07:09:11Z peter $";
+ rr.content="Served by POWERDNS "VERSION" $Id: packethandler.cc 2789 2012-10-10 10:03:31Z peter $";
else if(mode=="anonymous") {
r->setRcode(RCode::ServFail);
return 1;
@@ -389,9 +389,7 @@
else {
B.lookup(qtypes[n], content, p);
}
- bool foundOne=false;
while(B.get(rr)) {
- foundOne=true;
if(rr.domain_id!=i->domain_id && ::arg()["out-of-zone-additional-processing"]=="no") {
DLOG(L<<Logger::Warning<<"Not including out-of-zone additional processing of "<<i->qname<<" ("<<rr.qname<<")"<<endl);
continue; // not adding out-of-zone additional data
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/pdnssec.cc
^
|
@@ -467,26 +467,26 @@
void showZone(DNSSECKeeper& dk, const std::string& zone)
{
if(!dk.isSecuredZone(zone)) {
- cerr<<"Zone is not secured\n";
- return;
+ cerr<<"Zone is not actively secured\n";
}
NSEC3PARAMRecordContent ns3pr;
bool narrow;
bool haveNSEC3=dk.getNSEC3PARAM(zone, &ns3pr, &narrow);
- if(!haveNSEC3)
- cout<<"Zone has NSEC semantics"<<endl;
- else
- cout<<"Zone has " << (narrow ? "NARROW " : "") <<"hashed NSEC3 semantics, configuration: "<<ns3pr.getZoneRepresentation()<<endl;
+ DNSSECKeeper::keyset_t keyset=dk.getKeys(zone);
- cout <<"Zone is " << (dk.isPresigned(zone) ? "" : "not ") << "presigned\n";
- DNSSECKeeper::keyset_t keyset=dk.getKeys(zone);
+ cout <<"Zone is " << (dk.isPresigned(zone) ? "" : "not ") << "presigned\n";
if(keyset.empty()) {
cerr << "No keys for zone '"<<zone<<"'."<<endl;
}
else {
+ if(!haveNSEC3)
+ cout<<"Zone has NSEC semantics"<<endl;
+ else
+ cout<<"Zone has " << (narrow ? "NARROW " : "") <<"hashed NSEC3 semantics, configuration: "<<ns3pr.getZoneRepresentation()<<endl;
+
cout << "keys: "<<endl;
BOOST_FOREACH(DNSSECKeeper::keyset_t::value_type value, keyset) {
cout<<"ID = "<<value.second.id<<" ("<<(value.second.keyOrZone ? "KSK" : "ZSK")<<"), tag = "<<value.first.getDNSKEY().getTag();
@@ -522,6 +522,12 @@
return false;
}
+ if(di.kind == DomainInfo::Slave)
+ {
+ cout<<"Warning! This is a slave domain! If this was a mistake, please run"<<endl;
+ cout<<"pdnssec disable-dnssec "<<zone<<" right now!"<<endl;
+ }
+
if(!dk.secureZone(zone, 8)) {
cerr<<"No backend was able to secure '"<<zone<<"', most likely because no DNSSEC\n";
cerr<<"capable backends are loaded, or because the backends have DNSSEC disabled.\n";
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/resolver.cc
^
|
@@ -61,8 +61,6 @@
int makeQuerySocket(const ComboAddress& local, bool udpOrTCP)
{
ComboAddress ourLocal(local);
- static uint16_t port_counter=5000;
- port_counter++; // this makes us use a new port for each query, fixes ticket #2
int sock=socket(ourLocal.sin4.sin_family, udpOrTCP ? SOCK_DGRAM : SOCK_STREAM, 0);
Utility::setCloseOnExec(sock);
|
|
Added |
pdns-3.1.tar.gz/pdns/sdig
^
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/sdig.cc
^
|
@@ -43,7 +43,7 @@
else
bufsize=2800;
- pw.addOpt(2800, 0, dnssec ? EDNSOpts::DNSSECOK : 0);
+ pw.addOpt(bufsize, 0, dnssec ? EDNSOpts::DNSSECOK : 0);
pw.commit();
}
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/slavecommunicator.cc
^
|
@@ -578,9 +578,13 @@
BOOST_FOREACH(val_t& val, sdomains) {
DomainInfo& di(val.di);
// might've come from the packethandler
- if(!di.backend && !B->getDomainInfo(di.zone, di)) {
- L<<Logger::Warning<<"Ignore domain "<< di.zone<<" since it has been removed from our backend"<<endl;
- continue;
+ if(!di.backend)
+ {
+ if(!B->getDomainInfo(di.zone, di))
+ {
+ L<<Logger::Warning<<"Ignore domain "<< di.zone<<" since it has been removed from our backend"<<endl;
+ continue;
+ }
}
if(!ssr.d_freshness.count(di.id))
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/slavecommunicator.cc~
^
|
@@ -578,9 +578,13 @@
BOOST_FOREACH(val_t& val, sdomains) {
DomainInfo& di(val.di);
// might've come from the packethandler
- if(!di.backend && !B->getDomainInfo(di.zone, di)) {
- L<<Logger::Warning<<"Ignore domain "<< di.zone<<" since it is no longer in our backend"<<endl;
- continue;
+ if(!di.backend)
+ {
+ if(!B->getDomainInfo(di.zone, di))
+ {
+ L<<Logger::Warning<<"Ignore domain "<< di.zone<<" since it has been removed from our backend"<<endl;
+ continue;
+ }
}
if(!ssr.d_freshness.count(di.id))
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/pdns/tcpreceiver.cc
^
|
@@ -213,13 +213,11 @@
writenWithTimeout(sock, &len, 2);
writenWithTimeout(sock, buffer.c_str(), buffer.length());
- int ret;
-
- ret=readnWithTimeout(sock, &len, 2);
+ readnWithTimeout(sock, &len, 2);
len=ntohs(len);
char answer[len];
- ret=readnWithTimeout(sock, answer, len);
+ readnWithTimeout(sock, answer, len);
slen=htons(len);
writenWithTimeout(packet->getSocket(), &slen, 2);
@@ -894,9 +892,6 @@
//! Start of TCP operations thread, we launch a new thread for each incoming TCP question
void TCPNameserver::thread()
{
- struct timeval tv;
- tv.tv_sec=1;
- tv.tv_usec=0;
try {
for(;;) {
int fd;
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/regression-tests/cleandig
^
|
@@ -1,22 +1,22 @@
#!/bin/sh
-if [ ! -f $testname/use.drill ]
+if [ ! -f ${testsdir}/${testname}/use.drill ]
then
../pdns/sdig $nameserver $port $1 $2 $3 | LC_ALL=C sort
fi
-../pdns/nsec3dig $nameserver $port $1 $2 > $testname/nsec3dig.out 2>&1
-drill -a -p $port -o rd -D -S -k trustedkeys $1 $2 @$nameserver > $testname/drillchase.out 2>&1
-echo RETVAL: $? >> $testname/drillchase.out
-drill -a -p $port -o rd -D -k trustedkeys $1 $2 @$nameserver > $testname/drill.out 2>&1
-echo RETVAL: $? >> $testname/drill.out
-/usr/lib/go/bin/q -tcp=true -short=true -rd=false -check -dnssec -port=$port @$nameserver $2 $1 > $testname/q.out 2>&1
-echo RETVAL: $? >> $testname/q.out
-if [ ! -e $testname/skip-unboundhost ]
+../pdns/nsec3dig $nameserver $port $1 $2 > ${testsdir}/${testname}/nsec3dig.out 2>&1
+drill -a -p $port -o rd -D -S -k trustedkeys $1 $2 @$nameserver > ${testsdir}/${testname}/drillchase.out 2>&1
+echo RETVAL: $? >> ${testsdir}/${testname}/drillchase.out
+drill -a -p $port -o rd -D -k trustedkeys $1 $2 @$nameserver > ${testsdir}/${testname}/drill.out 2>&1
+echo RETVAL: $? >> ${testsdir}/${testname}/drill.out
+/usr/lib/go/bin/q -tcp=true -short=true -rd=false -check -dnssec -port=$port @$nameserver $2 $1 > ${testsdir}/${testname}/q.out 2>&1
+echo RETVAL: $? >> ${testsdir}/${testname}/q.out
+if [ ! -e ${testsdir}/${testname}/skip-unboundhost ]
then
- unbound-host -v -C unbound-host.conf -t $2 $1 > $testname/unbound-host.out 2>&1
- echo RETVAL: $? >> $testname/unbound-host.out
+ unbound-host -v -C unbound-host.conf -t $2 $1 > ${testsdir}/${testname}/unbound-host.out 2>&1
+ echo RETVAL: $? >> ${testsdir}/${testname}/unbound-host.out
fi
-if [ -f $testname/use.drill ]
+if [ -f ${testsdir}/${testname}/use.drill ]
then
- cat $testname/drill.out
+ cat ${testsdir}/${testname}/drill.out
fi
-grep -i bogus $testname/*.out
+grep -iw bogus ${testsdir}/${testname}/*.out
|
[-]
[+]
|
Changed |
pdns-3.1.tar.gz/regression-tests/runtests
^
|
@@ -3,7 +3,7 @@
make -C ../pdns sdig nsec3dig || exit 1
-rm -f test-results failed_tests passed_tests skipped_tests ${testsdir}/*/real_result ${testdir}/*/diff ${testdir}/*/*.out
+rm -f test-results failed_tests passed_tests skipped_tests ${testsdir}/*/real_result ${testsdir}/*/diff ${testsdir}/*/*.out
passed=0
failed=0
|