1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-14 08:53:29 +02:00
Files
coreutils/m4/assert.m4

14 lines
340 B
Plaintext
Raw Normal View History

#serial 2
1998-04-26 20:48:00 +00:00
dnl based on code from Eleftherios Gkioulekas
AC_DEFUN(jm_ASSERT,
[
AC_MSG_CHECKING(whether to enable assertions)
AC_ARG_ENABLE(assert,
[ --disable-assert turn off assertions],
[ AC_MSG_RESULT(no)
AC_DEFINE(NDEBUG,1,[Define to 1 if assertions should be disabled.]) ],
[ AC_MSG_RESULT(yes) ]
1998-04-26 20:48:00 +00:00
)
])