From: Richard Jones Date: Tue, 20 Apr 2010 17:46:45 +0000 (+0100) Subject: Remove checks for Test::Pod and Test::Pod::Coverage. X-Git-Tag: 1.3.6~8 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=c8f302a17453ad58acccd137342438795763606a Remove checks for Test::Pod and Test::Pod::Coverage. Although these modules are optionally used by the Perl tests, they aren't necessary and won't break the build if they are not there. These modules aren't available in RHEL 5. Therefore remove these checks. --- diff --git a/configure.ac b/configure.ac index 0dc4e4b..2392c8b 100644 --- a/configure.ac +++ b/configure.ac @@ -509,7 +509,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 ExtUtils::MakeMaker; do AC_MSG_CHECKING([for $pm]) if ! perl -M$pm -e1 >/dev/null 2>&1; then AC_MSG_RESULT([no])