Define NDEBUG for assert() if --enable-debug is not specified.
This commit is contained in:
parent
0909c81cdb
commit
2952c69c7a
3
configure
vendored
3
configure
vendored
@ -199,11 +199,10 @@ fi
|
||||
|
||||
if [ -n "$DEBUG" -a "$DEBUG" != no -a "$DEBUG" != false ]; then
|
||||
echo "Building with debugging symbols."
|
||||
echo "CPPFLAGS += -DDEBUG" >>$CONFIG_MK
|
||||
echo "CFLAGS += -g" >>$CONFIG_MK
|
||||
fi
|
||||
|
||||
echo "CPPFLAGS += -DDEBUG" >>$CONFIG_MK
|
||||
|
||||
case "$OS" in
|
||||
linux)
|
||||
echo "CPPFLAGS += -D_XOPEN_SOURCE=700" >>$CONFIG_MK
|
||||
|
@ -27,6 +27,10 @@
|
||||
#ifndef _XBPS_API_IMPL_H_
|
||||
#define _XBPS_API_IMPL_H_
|
||||
|
||||
#ifndef DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
||||
#include <assert.h>
|
||||
#include <confuse.h>
|
||||
#define LIBXBPS_PRIVATE
|
||||
|
Loading…
Reference in New Issue
Block a user