summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2016-11-11 16:34:49 +0100
committerMichael Biebl <biebl@debian.org>2016-11-11 16:39:03 +0100
commit784751dfc6017a17ade17d1f5cde374afb8b69d2 (patch)
treef5f365a1cba363cf1cd6052dcc2cf92e4789eb18 /configure.ac
parent110773f6c934c37f058d273ee55cf2fd0010b329 (diff)
build-sys: fix help text of bzip2 configure check
The bzip2 support is enabled by default unless requested otherwise via --disable-bzip2. Make the help text reflect that. Fixes: #4636
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6423204178..72b291ed0f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -606,7 +606,7 @@ AM_CONDITIONAL(HAVE_ZLIB, [test "$have_zlib" = "yes"])
# ------------------------------------------------------------------------------
have_bzip2=no
-AC_ARG_ENABLE(bzip2, AS_HELP_STRING([--enable-bzip2], [Enable optional BZIP2 support]))
+AC_ARG_ENABLE(bzip2, AS_HELP_STRING([--disable-bzip2], [disable optional BZIP2 support]))
AS_IF([test "x$enable_bzip2" != "xno"], [
AC_CHECK_HEADERS(bzlib.h,
[AC_DEFINE(HAVE_BZIP2, 1, [Define if BZIP2 is available])