Quote the first argument in each use of AC_DEFUN.
[gnulib.git] / m4 / assert.m4
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 ])