diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 59b8f00..363734d 100644 --- a/configure.in +++ b/configure.in @@ -61,7 +61,7 @@ AC_ARG_ENABLE(debug, [Compile binaries in debug mode])) if test "$enable_debug" = "yes"; then - CFLAGS="$CFLAGS -g -O0 -Wall" + CXXFLAGS="$CXXFLAGS -g -O0 -Wall" AC_DEFINE_UNQUOTED(_DEBUG, 1, [In debug mode]) echo "enabling debug compile mode" fi @@ -73,9 +73,6 @@ AC_CHECK_HEADERS([stddef.h stdlib.h wchar.h assert.h stdio.h errno.h], , [echo "ERROR: Required C header missing"; exit 1]) AC_CHECK_HEADERS([string exception stack], , [echo "ERROR: Required STL header missing"; exit 1]) -AC_CHECK_HEADERS([sablot.h sdom.h], , - [echo "ERROR: Required Sablotron header missing"; exit 1]) - # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST |