aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac4
2 files changed, 6 insertions, 2 deletions
diff --git a/configure b/configure
index 0d75768caee..4ffefe46552 100755
--- a/configure
+++ b/configure
@@ -19255,6 +19255,8 @@ if test "$enable_tap_tests" = yes; then
if test -z "$PROVE"; then
# Test::More and Time::HiRes are supposed to be part of core Perl,
# but some distros omit them in a minimal installation.
+ # The required minimum versions are all quite ancient now, but specify
+ # them anyway for documentation's sake.
@@ -19308,7 +19310,7 @@ fi
if test "x$PERL" != x; then
ax_perl_modules_failed=0
- for ax_perl_module in 'IPC::Run' 'Test::More 0.87' 'Time::HiRes' ; do
+ for ax_perl_module in 'IPC::Run 0.79' 'Test::More 0.87' 'Time::HiRes 1.52' ; do
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl module $ax_perl_module" >&5
$as_echo_n "checking for perl module $ax_perl_module... " >&6; }
diff --git a/configure.ac b/configure.ac
index ed3cdb9a8e3..44ee3ebe2f1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2348,7 +2348,9 @@ if test "$enable_tap_tests" = yes; then
if test -z "$PROVE"; then
# Test::More and Time::HiRes are supposed to be part of core Perl,
# but some distros omit them in a minimal installation.
- AX_PROG_PERL_MODULES([IPC::Run Test::More=0.87 Time::HiRes], ,
+ # The required minimum versions are all quite ancient now, but specify
+ # them anyway for documentation's sake.
+ AX_PROG_PERL_MODULES([IPC::Run=0.79 Test::More=0.87 Time::HiRes=1.52], ,
[AC_MSG_ERROR([Additional Perl modules are required to run TAP tests])])
fi
# Now make sure we know where prove is