mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-03 14:43:22 +08:00
14 lines
342 B
Plaintext
14 lines
342 B
Plaintext
#serial 4
|
|
dnl based on code from Eleftherios Gkioulekas
|
|
|
|
AC_DEFUN([gl_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) ]
|
|
)
|
|
])
|