mirror of https://github.com/getdnsapi/getdns.git
all debug config option for broadest src coverage
With the 300 tpkg test
This commit is contained in:
parent
fe7a1e89e3
commit
6519a05780
15
configure.ac
15
configure.ac
|
@ -138,7 +138,20 @@ fi
|
||||||
])
|
])
|
||||||
ACX_ARG_RPATH
|
ACX_ARG_RPATH
|
||||||
|
|
||||||
|
|
||||||
AC_ARG_ENABLE(debug-sched, AC_HELP_STRING([--enable-debug-sched], [Enable scheduling debugging messages]))
|
AC_ARG_ENABLE(debug-sched, AC_HELP_STRING([--enable-debug-sched], [Enable scheduling debugging messages]))
|
||||||
|
AC_ARG_ENABLE(debug-stub, AC_HELP_STRING([--enable-debug-stub], [Enable stub debugging messages]))
|
||||||
|
AC_ARG_ENABLE(debug-sec, AC_HELP_STRING([--enable-debug-sec], [Enable dnssec debugging messages]))
|
||||||
|
AC_ARG_ENABLE(all-debugging, AC_HELP_STRING([--enable-all-debugging], [Enable scheduling, stub and dnssec debugging]))
|
||||||
|
case "$enable_all_debugging" in
|
||||||
|
yes)
|
||||||
|
enable_debug_sched=yes
|
||||||
|
enable_debug_stub=yes
|
||||||
|
enable_debug_sec=yes
|
||||||
|
;;
|
||||||
|
no|*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
case "$enable_debug_sched" in
|
case "$enable_debug_sched" in
|
||||||
yes)
|
yes)
|
||||||
AC_DEFINE_UNQUOTED([SCHED_DEBUG], [1], [Define this to enable printing of scheduling debugging messages.])
|
AC_DEFINE_UNQUOTED([SCHED_DEBUG], [1], [Define this to enable printing of scheduling debugging messages.])
|
||||||
|
@ -146,7 +159,6 @@ case "$enable_debug_sched" in
|
||||||
no|*)
|
no|*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
AC_ARG_ENABLE(debug-stub, AC_HELP_STRING([--enable-debug-stub], [Enable stub debugging messages]))
|
|
||||||
case "$enable_debug_stub" in
|
case "$enable_debug_stub" in
|
||||||
yes)
|
yes)
|
||||||
AC_DEFINE_UNQUOTED([STUB_DEBUG], [1], [Define this to enable printing of stub debugging messages.])
|
AC_DEFINE_UNQUOTED([STUB_DEBUG], [1], [Define this to enable printing of stub debugging messages.])
|
||||||
|
@ -154,7 +166,6 @@ case "$enable_debug_stub" in
|
||||||
no|*)
|
no|*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
AC_ARG_ENABLE(debug-sec, AC_HELP_STRING([--enable-debug-sec], [Enable dnssec debugging messages]))
|
|
||||||
case "$enable_debug_sec" in
|
case "$enable_debug_sec" in
|
||||||
yes)
|
yes)
|
||||||
AC_DEFINE_UNQUOTED([SEC_DEBUG], [1], [Define this to enable printing of dnssec debugging messages.])
|
AC_DEFINE_UNQUOTED([SEC_DEBUG], [1], [Define this to enable printing of dnssec debugging messages.])
|
||||||
|
|
|
@ -7,10 +7,10 @@
|
||||||
rm -fr "${BUILDDIR}/build-event-loops"
|
rm -fr "${BUILDDIR}/build-event-loops"
|
||||||
mkdir "${BUILDDIR}/build-event-loops"
|
mkdir "${BUILDDIR}/build-event-loops"
|
||||||
cd "${BUILDDIR}/build-event-loops"
|
cd "${BUILDDIR}/build-event-loops"
|
||||||
"${SRCROOT}/configure" --enable-all-drafts --with-libevent --with-libev --with-libuv \
|
"${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent --with-libev --with-libuv \
|
||||||
|| "${SRCROOT}/configure" --enable-all-drafts --with-libevent --with-libev \
|
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent --with-libev \
|
||||||
|| "${SRCROOT}/configure" --enable-all-drafts --with-libevent --with-libuv \
|
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent --with-libuv \
|
||||||
|| "${SRCROOT}/configure" --enable-all-drafts --with-libev --with-libuv \
|
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libev --with-libuv \
|
||||||
|| "${SRCROOT}/configure" --enable-all-drafts --with-libevent \
|
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent \
|
||||||
|| "${SRCROOT}/configure" --enable-all-drafts --with-libev \
|
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libev \
|
||||||
|| "${SRCROOT}/configure" --enable-all-drafts --with-libuv
|
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libuv
|
||||||
|
|
Loading…
Reference in New Issue