X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=configure.ac;h=9a93724d5e8f4a8a2b7d4c021523fe8c2e9e66c7;hb=17b50a384f315f502ed1c236ce6641195286e3ae;hp=11126f6ea526430e8a5d73c57023af33959cc92a;hpb=04d8209077d2227eb1d42695ba71147f78987050;p=libguestfs.git diff --git a/configure.ac b/configure.ac index 11126f6..9a93724 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], [13]) # extra can be any string m4_define([libguestfs_extra], []) @@ -478,14 +478,15 @@ PKG_CHECK_MODULES([LIBXML2], [libxml-2.0]) AC_SUBST([LIBXML2_CFLAGS]) AC_SUBST([LIBXML2_LIBS]) -dnl hivex library (highly recommended). +dnl Augeas (required) +PKG_CHECK_MODULES([AUGEAS], [augeas]) +AC_SUBST([AUGEAS_CFLAGS]) +AC_SUBST([AUGEAS_LIBS]) + +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])