configure.ac: disable assertions in the non-debugging build
Add -DNDEBUG to AM_CPPFLAGS.
This commit is contained in:
1
NEWS
1
NEWS
@@ -1,4 +1,5 @@
|
|||||||
ver 0.16.5 (2010/??/??)
|
ver 0.16.5 (2010/??/??)
|
||||||
|
* configure.ac: disable assertions in the non-debugging build
|
||||||
* pcm_format: fix 32-to-24 bit conversion (the "silence" bug)
|
* pcm_format: fix 32-to-24 bit conversion (the "silence" bug)
|
||||||
* input:
|
* input:
|
||||||
- rewind: reduce heap usage
|
- rewind: reduce heap usage
|
||||||
|
@@ -1451,10 +1451,9 @@ dnl CFLAGS
|
|||||||
dnl ---------------------------------------------------------------------------
|
dnl ---------------------------------------------------------------------------
|
||||||
|
|
||||||
dnl ---------------------------------- debug ----------------------------------
|
dnl ---------------------------------- debug ----------------------------------
|
||||||
#if test "x$enable_debug" = xno; then
|
if test "x$enable_debug" = xno; then
|
||||||
# don't set NDEBUG for now, until MPD is stable
|
AM_CPPFLAGS="$AM_CPPFLAGS -DNDEBUG"
|
||||||
#AM_CFLAGS="$AM_CFLAGS -DNDEBUG"
|
fi
|
||||||
#fi
|
|
||||||
|
|
||||||
dnl ----------------------------------- GCC -----------------------------------
|
dnl ----------------------------------- GCC -----------------------------------
|
||||||
if test x$GCC = xyes
|
if test x$GCC = xyes
|
||||||
|
Reference in New Issue
Block a user