From: Timo Sirainen Date: Tue, 3 Feb 2026 16:25:49 +0000 (+0200) Subject: configure: Add --enable-devel-checks=fast to enable DEBUG_FAST X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9eb5aea3eb032a5e3e0944b2ff5ec51b39ac562d;p=thirdparty%2Fdovecot%2Fcore.git configure: Add --enable-devel-checks=fast to enable DEBUG_FAST --- diff --git a/configure.ac b/configure.ac index a4b5ecc02d..f1e739064f 100644 --- a/configure.ac +++ b/configure.ac @@ -31,9 +31,12 @@ AC_SUBST(ACLOCAL_AMFLAGS) AM_ICONV AC_ARG_ENABLE(devel-checks, -AS_HELP_STRING([--enable-devel-checks], [Enable some extra expensive checks for developers]), +AS_HELP_STRING([--enable-devel-checks@<:@=fast@:>@], [Enable some extra expensive checks for developers (fast enables only some of them)]), if test x$enableval = xyes; then AC_DEFINE(DEBUG,, [Build with extra debugging checks]) + AC_DEFINE(DEBUG_FAST,, [Build with extra fast debugging checks]) + elif test x$enableval = xfast; then + AC_DEFINE(DEBUG_FAST,, [Build with extra fast debugging checks]) fi) AC_ARG_ENABLE(static-checker,