2005-01-23 09:07:57 +00:00
|
|
|
#serial 5
|
|
|
|
|
|
|
|
|
|
# Copyright (C) 1998, 1999, 2001, 2004 Free Software Foundation, Inc.
|
|
|
|
|
# This file is free software; the Free Software Foundation
|
|
|
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
|
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
|
|
1998-04-26 20:48:00 +00:00
|
|
|
dnl based on code from Eleftherios Gkioulekas
|
|
|
|
|
|
2004-04-13 15:28:45 +00:00
|
|
|
AC_DEFUN([gl_ASSERT],
|
1998-04-26 20:48:00 +00:00
|
|
|
[
|
|
|
|
|
AC_MSG_CHECKING(whether to enable assertions)
|
|
|
|
|
AC_ARG_ENABLE(assert,
|
1999-01-29 05:05:56 +00:00
|
|
|
[ --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) ]
|
1998-04-26 20:48:00 +00:00
|
|
|
)
|
|
|
|
|
])
|