X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=configure.ac;h=2ed9d7da89218a2d572b62badc16ed064e255fd0;hb=084039079380f71fd330ba0fed5a58548ddf0587;hp=799cc91132d55493d8f22ff4f4dd5da829a2b0f7;hpb=e86f9f34e67c89123b747524d7e67dd70175d3d4;p=wimlib diff --git a/configure.ac b/configure.ac index 799cc911..2ed9d7da 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([wimlib], [1.2.0], [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],