Commit 9fa0a6b9 authored by Mike Gabriel's avatar Mike Gabriel

nxcomp/configure.ac: Re-add previously available configure options…

nxcomp/configure.ac: Re-add previously available configure options --with-valgrind and --with-info as renamed options --enable-valgrind and --enable-debug.
parent f76c8240
......@@ -74,6 +74,20 @@ else
CPPFLAGS="$CPPFLAGS -DIN_ADDR_T=in_addr_t"
fi
AC_ARG_ENABLE(info,
[AS_HELP_STRING([--enable-debug], [enable to get info session log output (disabled by default)])],
[if test x$enableval = xyes; then
AC_DEFINE(INFO, 1, [Define this to get info session log output.])
info_messages=yes
fi])
AC_ARG_ENABLE(valgrind,
[AS_HELP_STRING([--enable-valgrind], [enable for extra valgrind hacks (disabled by default)])],
[if test x$enableval = xyes; then
AC_DEFINE(VALGRIND, 1, [Define this for extra valgrind hacks.])
valgrind_hacks=yes
fi])
AC_CONFIG_FILES([
Makefile
src/Makefile
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment