X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=configure.ac;h=4a7d6e66e55505e4468b70f26b4ae8b82adca815;hb=7419335e1113f28fd17b512992df22eb28cb4c05;hp=5aecee3213d21565f141713fb9db177fed3088b3;hpb=e903739935ce32190b1c7b087d2cd9c2d2a7ec88;p=libguestfs.git diff --git a/configure.ac b/configure.ac index 5aecee3..4a7d6e6 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ # major/minor/release must be numbers m4_define([libguestfs_major], [1]) m4_define([libguestfs_minor], [5]) -m4_define([libguestfs_release], [11]) +m4_define([libguestfs_release], [12]) # extra can be any string m4_define([libguestfs_extra], []) @@ -483,14 +483,10 @@ PKG_CHECK_MODULES([AUGEAS], [augeas]) AC_SUBST([AUGEAS_CFLAGS]) AC_SUBST([AUGEAS_LIBS]) -dnl hivex library (highly recommended). +dnl hivex library (required) dnl This used to be a part of libguestfs, but was spun off into its dnl own separate upstream project in libguestfs 1.0.85. -HAVE_HIVEX=yes -PKG_CHECK_MODULES([HIVEX], [hivex],,[ - HAVE_HIVEX=no - AC_MSG_WARN([Hivex library and headers are missing, so optional Windows Registry tools won't be built])]) -AM_CONDITIONAL([HAVE_HIVEX],[test "x$HAVE_HIVEX" = "xyes"]) +PKG_CHECK_MODULES([HIVEX], [hivex]) AC_SUBST([HIVEX_CFLAGS]) AC_SUBST([HIVEX_LIBS])