X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=configure.ac;h=2ed9d7da89218a2d572b62badc16ed064e255fd0;hb=084039079380f71fd330ba0fed5a58548ddf0587;hp=03ad48a76ac295ec00f19a55c3ebee117311574d;hpb=ebcb2402da0d554dcaafa46b8c1b9cc3362f6be3;p=wimlib diff --git a/configure.ac b/configure.ac index 03ad48a7..2ed9d7da 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([wimlib], [1.2.1], [ebiggers3@gmail.com]) +AC_INIT([wimlib], [1.2.3], [ebiggers3@gmail.com]) AC_CONFIG_SRCDIR([src/wim.c]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) @@ -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],