X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=configure.ac;h=919d743590b4db2841e00396daa32d36aacc2164;hp=03ad48a76ac295ec00f19a55c3ebee117311574d;hb=a6f5add5e9811584ebd75591a6a25cb9686da9a8;hpb=056bca7aee6a336b5418bf2d8ae3dd5a7ca432a2 diff --git a/configure.ac b/configure.ac index 03ad48a7..919d7435 100644 --- a/configure.ac +++ b/configure.ac @@ -127,6 +127,17 @@ if test "x$ENABLE_ASSERTIONS" = "xyes"; then AC_DEFINE([ENABLE_ASSERTIONS], [1], [Define to 1 if including assertions.]) fi +AC_MSG_CHECKING([whether to include more assertions]) +AC_ARG_ENABLE([more-assertions], + AS_HELP_STRING([--enable-more-assertions], [include even more assertions]), + [ENABLE_MORE_ASSERTIONS=$enableval], + [ENABLE_MORE_ASSERTIONS=no] + ) +AC_MSG_RESULT([$ENABLE_MORE_ASSERTIONS]) +if test "x$ENABLE_MORE_ASSERTIONS" = "xyes"; then + AC_DEFINE([ENABLE_MORE_ASSERTIONS], [1], [Define to 1 if including more assertions.]) +fi + AC_MSG_CHECKING([whether to include compression verification]) AC_ARG_ENABLE([verify_compression],