mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-14 04:18:48 +08:00
14 lines
336 B
Plaintext
14 lines
336 B
Plaintext
#serial 1
|
|
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) ],
|
|
[ AC_MSG_RESULT(yes) ]
|
|
)
|
|
])
|