repo.or.cz
/
coreutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[coreutils.git]
/
m4
/
assert.m4
blob
8ab60b1bdf49178eb6b3b81956cea08ebdebeb8b
1
#serial 3
2
dnl based on code from Eleftherios Gkioulekas
3
4
AC_DEFUN([jm_ASSERT],
5
[
6
AC_MSG_CHECKING(whether to enable assertions)
7
AC_ARG_ENABLE(assert,
8
[ --disable-assert turn off assertions],
9
[ AC_MSG_RESULT(no)
10
AC_DEFINE(NDEBUG,1,[Define to 1 if assertions should be disabled.]) ],
11
[ AC_MSG_RESULT(yes) ]
12
)
13
])