perl: Data::Dumper and String::ShellQuote modules are no longer required.

They used to be used by old Perl virt-make-fs.  Nothing else uses
them.

This updates commit d3512deb67.
This commit is contained in:
Richard W.M. Jones
2014-01-29 08:45:19 +00:00
parent 32cbd7ca0d
commit f0f95bd038
2 changed files with 1 additions and 3 deletions

2
README
View File

@@ -222,8 +222,6 @@ The full requirements are described below.
+--------------+-------------+---+-----------------------------------------+
| Test::More | | O | Perl module used by tests. |
+--------------+-------------+---+-----------------------------------------+
| String::Shellquote | O | Perl module used by some virt-* tools. |
+--------------+-------------+---+-----------------------------------------+
| XML::XPath | | O | Perl module used by some virt-* tools. |
+--------------+-------------+---+-----------------------------------------+
| XML::XPath::XMLParser | O | Perl module used by some virt-* tools. |

View File

@@ -1563,7 +1563,7 @@ AM_CONDITIONAL([HAVE_GOLANG],[test "x$GOLANG" != "xno"])
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 String::ShellQuote; do
for pm in Pod::Usage Getopt::Long Sys::Virt Locale::TextDomain Win::Hivex Win::Hivex::Regedit ; do
AC_MSG_CHECKING([for $pm])
if ! $PERL -M$pm -e1 >&AS_MESSAGE_LOG_FD 2>&1; then
AC_MSG_RESULT([no])