X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=configure.ac;h=4bb7689bfd6f5ef2a67a7e45136043528bfdfefd;hb=b3595c5553035798b7b33d05c9326f7e8dd55e69;hp=7f965b2ed0e30143af2a74e0a4b36b9190ed36dc;hpb=745f1d9ee8480b3a38f778fcc4506ce86da473a6;p=libguestfs.git diff --git a/configure.ac b/configure.ac index 7f965b2..4bb7689 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], [57]) +m4_define([libguestfs_release], [60]) # extra can be any string m4_define([libguestfs_extra], []) @@ -206,8 +206,6 @@ REPO="$with_repo" AC_SUBST(REPO) AC_DEFINE_UNQUOTED([REPO],["$REPO"],[Name of Fedora repository.]) -AC_DEFINE_UNQUOTED([host_cpu],["$host_cpu"],[Host architecture.]) - dnl --with-updates to specify a Fedora updates repository. AC_ARG_WITH([updates], [AS_HELP_STRING([--with-updates], @@ -216,8 +214,8 @@ AC_ARG_WITH([updates], [with_updates=updates-released-f11]) UPDATES="$with_updates" AC_SUBST(UPDATES) -AC_DEFINE_UNQUOTED([UPDATES],["$UPDATES"],[Name of Fedora updates repository.]) +dnl Define a symbol for the host CPU architecture. AC_DEFINE_UNQUOTED([host_cpu],["$host_cpu"],[Host architecture.]) dnl --with-mirror to specify a local Fedora mirror. @@ -308,7 +306,7 @@ AC_CHECK_PROG([PERL],[perl],[perl],[no]) dnl Check for Perl modules that must be present to compile and dnl test the Perl bindings. missing_perl_modules=no -for pm in Test::More Test::Pod Test::Pod::Coverage ExtUtils::MakeMaker; do +for pm in Test::More Test::Pod Test::Pod::Coverage ExtUtils::MakeMaker Locale::TextDomain; do AC_MSG_CHECKING([for $pm]) if ! perl -M$pm -e1 >/dev/null 2>&1; then AC_MSG_RESULT([no]) @@ -521,7 +519,7 @@ AM_CONDITIONAL([HAVE_HASKELL], dnl Check for Perl modules needed by virt-df, inspector and V2V. missing_perl_modules=no -for pm in Pod::Usage Getopt::Long Sys::Virt Data::Dumper XML::Writer; do +for pm in Pod::Usage Getopt::Long Sys::Virt Data::Dumper XML::Writer Locale::TextDomain; do AC_MSG_CHECKING([for $pm]) if ! perl -M$pm -e1 >/dev/null 2>&1; then AC_MSG_RESULT([no])