diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
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 |