1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-10 23:14:11 +02:00
This commit is contained in:
Jim Meyering
1998-04-26 20:48:00 +00:00
parent 808b938840
commit 44fa09dc5e

13
m4/assert.m4 Normal file
View File

@@ -0,0 +1,13 @@
#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) ]
)
])