[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)
This commit is contained in:
Glenn Strauss 2020-07-19 03:09:18 -04:00
parent 8d5e237c60
commit f47ffb438c
1 changed files with 1 additions and 1 deletions

View File

@ -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])