diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index fe7a8b4..be911ca 100644 --- a/configure.ac +++ b/configure.ac @@ -68,11 +68,11 @@ if test "$debug_symbols" = "yes"; then fi if test "$debug_assertions" = "yes"; then - CFLAGS="$CFLAGS -DDEBUG" - CXXFLAGS="$CXXFLAGS -DDEBUG" + CFLAGS="$CFLAGS -DDEBUG -DLIBRDF_DEBUG" + CXXFLAGS="$CXXFLAGS -DDEBUG -DLIBRDF_DEBUG" else - CFLAGS="$CFLAGS -DNDEBUG" - CXXFLAGS="$CXXFLAGS -DNDEBUG" + CFLAGS="$CFLAGS -DNDEBUG -DLIBRDF_DEBUG" + CXXFLAGS="$CXXFLAGS -DNDEBUG -DLIBRDF_DEBUG" fi # Boost shared_ptr debugging |