Edit

kc3-lang/gnulib/m4/assert.m4

Branch :

  • Show log

    Commit

  • Author : Jim Meyering
    Date : 2001-08-12 13:26:00
    Hash : ee76465a
    Message : Quote the first argument in each use of AC_DEFUN.

  • m4/assert.m4
  • #serial 3
    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,1,[Define to 1 if assertions should be disabled.]) ],
    	[ AC_MSG_RESULT(yes) ]
                   )
    ])