From: Richard W.M. Jones Date: Wed, 24 Nov 2010 10:00:06 +0000 (+0000) Subject: build: virt-make-fs requires String::ShellQuote, add to configure. X-Git-Tag: 1.7.13~11 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=951ea0e189f051c85de14c508d90d3bad0f1ca7a;hp=c6478d6a01c210ef19735429d7602e3458733e25 build: virt-make-fs requires String::ShellQuote, add to configure. --- diff --git a/README b/README index fe3a745..c2a75b1 100644 --- a/README +++ b/README @@ -101,6 +101,8 @@ bindings - (Optional) Perl Test::More module (from perl Test::Simple). +- (Optional) Perl String::ShellQuote module. + - (Optional, but highly recommended) perl-libintl for translating perl code. - (Optional) po4a for translating manpages and POD files. diff --git a/configure.ac b/configure.ac index ac1ec10..48d4240 100644 --- a/configure.ac +++ b/configure.ac @@ -806,7 +806,7 @@ dnl Check for Perl modules needed by Perl virt tools (virt-df, etc.) AS_IF([test "x$PERL" != "xno"], [ missing_perl_modules=no - for pm in Pod::Usage Getopt::Long Sys::Virt Data::Dumper Locale::TextDomain Win::Hivex Win::Hivex::Regedit; do + for pm in Pod::Usage Getopt::Long Sys::Virt Data::Dumper Locale::TextDomain Win::Hivex Win::Hivex::Regedit String::ShellQuote; do AC_MSG_CHECKING([for $pm]) if ! $PERL -M$pm -e1 >/dev/null 2>&1; then AC_MSG_RESULT([no])