X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=config%2Famanda%2Fdebugging.m4;h=a9acbd6edfc912726537565dd189615abbed2c86;hb=2627875b7d18858bc1f9f7652811e4d8c15a23eb;hp=4a499dc553469401ec7ee40d2321d4eef9635d65;hpb=fb2bd066c2f8b34addafe48d62550e3033a59431;p=debian%2Famanda diff --git a/config/amanda/debugging.m4 b/config/amanda/debugging.m4 index 4a499dc..a9acbd6 100644 --- a/config/amanda/debugging.m4 +++ b/config/amanda/debugging.m4 @@ -4,10 +4,12 @@ # # OVERVIEW # -# Handles the --with-assertions flag. Defines ASSERTIONS if the flag is given. +# Handles the --with-assertions flag. Defines and substitutes ASSERTIONS +# if the flag is given. # AC_DEFUN([AMANDA_WITH_ASSERTIONS], [ + ASSERTIONS= AC_ARG_WITH(assertions, AS_HELP_STRING([--with-assertions], [compile assertions into code]), @@ -15,6 +17,7 @@ AC_DEFUN([AMANDA_WITH_ASSERTIONS], case "$withval" in n | no) : ;; y | ye | yes) + ASSERTIONS=1 AC_DEFINE(ASSERTIONS,1, [Define if you want assertion checking. ]) ;; @@ -23,6 +26,7 @@ AC_DEFUN([AMANDA_WITH_ASSERTIONS], esac ] ) + AC_SUBST(ASSERTIONS) ]) # SYNOPSIS