blob: c8bcc5928c83b60eb75103606360f95f864ecb56 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
AC_DEFUN([AX_ARG_ENABLE_ASSERT],[
AC_ARG_ENABLE(assert, AS_HELP_STRING([--enable-assert],
[Enable assert() statements]),
[assert=$enableval], [assert=no])
AS_IF([test "$assert" = "no"],
[AC_DEFINE(NDEBUG, 1, [Define to disable assert() statements.])])
])
|