X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=configure.ac;h=b31c193bf8205e722be954e48d7eb8b39c7ce382;hb=7ab898c286b846bdfc3f8d5f8f611f293e12df35;hp=7fd23de92f670e53798ce3987847ca4abc728be0;hpb=c925dce4e7654cbcf66eb90528de18d5d09aa7c4;p=libguestfs.git diff --git a/configure.ac b/configure.ac index 7fd23de..b31c193 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], [0]) -m4_define([libguestfs_release], [74]) +m4_define([libguestfs_release], [76]) # extra can be any string m4_define([libguestfs_extra], []) @@ -86,6 +86,7 @@ if test "$gl_gcc_warnings" = yes; then # ?? -Wstrict-overflow nw="$nw -Wunsafe-loop-optimizations" # just a warning that an optimization # was not possible, safe to ignore + nw="$nw -Wpacked" # Allow attribute((packed)) on structs gl_MANYWARN_ALL_GCC([ws]) gl_MANYWARN_COMPLEMENT([ws], [$ws], [$nw]) @@ -122,7 +123,7 @@ dnl Check sizeof long. AC_CHECK_SIZEOF([long]) dnl Headers. -AC_CHECK_HEADERS([errno.h sys/types.h sys/un.h sys/wait.h sys/socket.h]) +AC_CHECK_HEADERS([errno.h sys/types.h sys/un.h sys/wait.h sys/socket.h endian.h byteswap.h]) dnl Check for rpcgen and XDR library. rpcgen is optional. AC_CHECK_PROG([RPCGEN],[rpcgen],[rpcgen],[no]) @@ -415,6 +416,11 @@ dnl For i18n. AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION([0.17]) +dnl libxml2 is used by the hivex library. +PKG_CHECK_MODULES([LIBXML2], [libxml-2.0]) +AC_SUBST([LIBXML2_CFLAGS]) +AC_SUBST([LIBXML2_LIBS]) + dnl Check for OCaml (optional, for OCaml bindings). AC_PROG_OCAML AC_PROG_FINDLIB @@ -722,6 +728,7 @@ AC_CONFIG_FILES([Makefile libguestfs.pc gnulib/lib/Makefile gnulib/tests/Makefile + hivex/Makefile ocaml/META perl/Makefile.PL]) AC_OUTPUT