X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=configure.ac;h=d576e0409e2979e99ba9ade9631d878e22facbdc;hp=cf19681c851d6cb3c1913984b33471f2b471acbe;hb=831f18cbf3f250207fcde15ea736639898317d77;hpb=10bc4cd469fc677892b07748ec85804ca120825f diff --git a/configure.ac b/configure.ac index cf19681c8..d576e0409 100644 --- a/configure.ac +++ b/configure.ac @@ -580,11 +580,13 @@ 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([--enable-bzip2], [Disable optional BZIP2 support])) AS_IF([test "x$enable_bzip2" != "xno"], [ AC_CHECK_HEADERS(bzlib.h, - [AC_DEFINE(HAVE_BZIP2, 1, [Define in BZIP2 is available]) have_bzip2=yes], - [AC_MSG_ERROR([*** BZIP2 support requested but headers not found])]) + [AC_DEFINE(HAVE_BZIP2, 1, [Define in BZIP2 is available]) + have_bzip2=yes], + [AS_IF([test "x$have_bzip2" = xyes], [AC_MSG_ERROR([*** BZIP2 support requested but headers not found])]) + ]) ]) AM_CONDITIONAL(HAVE_BZIP2, [test "$have_bzip2" = "yes"])