diff options
author | Richard Jones <rjones@trick.home.annexia.org> | 2009-07-15 19:16:02 +0100 |
---|---|---|
committer | Richard Jones <rjones@trick.home.annexia.org> | 2009-07-15 19:16:02 +0100 |
commit | dbbbc753043aca5a32a96fa391851cc394e2ceea (patch) | |
tree | 94b52e4c9338b07f40a3ed69552786dc24383345 /configure.ac | |
parent | 9771ab2cab74887c6537a4bb16b5f12037e95e12 (diff) | |
download | libguestfs-dbbbc753043aca5a32a96fa391851cc394e2ceea.tar.gz libguestfs-dbbbc753043aca5a32a96fa391851cc394e2ceea.tar.xz libguestfs-dbbbc753043aca5a32a96fa391851cc394e2ceea.zip |
Build fix: perl-libintl is not required for the basic Perl bindings.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6b14c4ab..59eeb9da 100644 --- a/configure.ac +++ b/configure.ac @@ -306,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 Locale::TextDomain; do +for pm in Test::More Test::Pod Test::Pod::Coverage ExtUtils::MakeMaker; do AC_MSG_CHECKING([for $pm]) if ! perl -M$pm -e1 >/dev/null 2>&1; then AC_MSG_RESULT([no]) |