summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2012-07-04 16:31:25 +0200
committerAndras Timar <atimar@suse.com>2012-07-04 16:36:41 +0200
commit43fd9bbafcf4348f2b8083baf551f38b8572519c (patch)
treed0e027cb0d4bbc2c1c64cd99f447028678efdd45
parentf342094d35c85a882db7b6ffe3f69ea9b3f8cc74 (diff)
check for Digest::MD5 Perl module
Change-Id: I11ee3d8ea0245758570cfd482a99f7012c0ad869
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 2c9ea07fd1af..164c079e90b6 100644
--- a/configure.in
+++ b/configure.in
@@ -4034,7 +4034,7 @@ dnl Testing for required Perl modules
dnl ===================================================================
AC_MSG_CHECKING([for required Perl modules])
-if `$PERL -e 'use Archive::Zip; use Cwd;'`; then
+if `$PERL -e 'use Archive::Zip; use Cwd; use Digest::MD5'`; then
AC_MSG_RESULT([all modules found])
else
AC_MSG_ERROR([Failed to find some modules])