]> wimlib.net Git - wimlib/blobdiff - configure.ac
Win32: Get encrypted capture actually working
[wimlib] / configure.ac
index 13da4dd003cd2abf1338541f69d695be671a5fc5..48aa4ad6691b0309307f02e2db5fe32ee05f90b7 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([wimlib], [1.3.2], [ebiggers3@gmail.com])
+AC_INIT([wimlib], [1.3.3], [ebiggers3@gmail.com])
 AC_CONFIG_SRCDIR([src/wim.c])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([build-aux])
@@ -146,11 +146,11 @@ fi
 
 AC_MSG_CHECKING([whether to include compression verification])
 AC_ARG_ENABLE([verify_compression],
-             AS_HELP_STRING([--disable-verify-compression], [disable
-                               checking if blocks we compress can be correctly
+             AS_HELP_STRING([--enable-verify-compression], [always
+                               check if blocks we compress can be correctly
                                decompressed]),
        [ENABLE_VERIFY_COMPRESSION=$enableval],
-       [ENABLE_VERIFY_COMPRESSION=yes]
+       [ENABLE_VERIFY_COMPRESSION=no]
        )
 AC_MSG_RESULT([$ENABLE_VERIFY_COMPRESSION])
 if test "x$ENABLE_VERIFY_COMPRESSION" = "xyes"; then