From f47ffb438c1944764442c0379378086f586b7325 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Sun, 19 Jul 2020 03:09:18 -0400 Subject: [PATCH] [build] bzip2 default to not-enabled in build ./configure --with-bzip2 to enable (autoconf build previously had bzip2 enabled by default, but bzip2 already disabled by default in CMake, SCONS, and meson build configs) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c03dcb5f..ca2abe97 100644 --- a/configure.ac +++ b/configure.ac @@ -955,7 +955,7 @@ AC_ARG_WITH([bzip2], [Enable bzip2 support for mod_compress] )], [WITH_BZIP2=$withval], - [WITH_BZIP2=yes] + [WITH_BZIP2=no] ) AC_MSG_RESULT([$WITH_BZIP2])