Report found versions of required perl modules
authorAndrew Dunstan <andrew@dunslane.net>
Fri, 12 Nov 2021 15:36:30 +0000 (10:36 -0500)
committerAndrew Dunstan <andrew@dunslane.net>
Fri, 12 Nov 2021 15:36:30 +0000 (10:36 -0500)
Configure tests for the presence of perl modules required for TAP tests,
and that they meet specified minimum version requirements. This patch
makes it report the version of the module that's actually found rather
than just an 'ok' message. This will help in deciding if we can upgrade
minimum requirements for these modules.

Discussion: https://postgr.es/m/f5e1d308-4e33-37a7-bdf1-f6e0c75119de@dunslane.net

config/ax_prog_perl_modules.m4
configure

index 70b3230ebdd3191d8cfe27c6061fc4bfe0ecc512..664e7aae3bcaccdd839d6aad781f18e3b44277d7 100644 (file)
@@ -55,12 +55,12 @@ if test "x$PERL" != x; then
     AC_MSG_CHECKING(for perl module $ax_perl_module)
 
     # Would be nice to log result here, but can't rely on autoconf internals
-    $PERL -e "use $ax_perl_module; exit" > /dev/null 2>&1
+    modversion=`$PERL -e "use $ax_perl_module; my \\\$x=q($ax_perl_module); \\\$x =~ s/ .*//; \\\$x .= q(::VERSION); eval qq{print \\\\$\\\$x\\n}; exit;" 2>/dev/null`
     if test $? -ne 0; then
       AC_MSG_RESULT(no);
       ax_perl_modules_failed=1
    else
-      AC_MSG_RESULT(ok);
+      AC_MSG_RESULT($modversion);
     fi
   done
 
index 7d4e42dd624a06a81d39408dcfad0356aaa294a3..ded80be880b6d4e10df935a0fc534683d9ddba0a 100755 (executable)
--- a/configure
+++ b/configure
@@ -19301,14 +19301,14 @@ if test "x$PERL" != x; then
 $as_echo_n "checking for perl module $ax_perl_module... " >&6; }
 
     # Would be nice to log result here, but can't rely on autoconf internals
-    $PERL -e "use $ax_perl_module; exit" > /dev/null 2>&1
+    modversion=`$PERL -e "use $ax_perl_module; my \\\$x=q($ax_perl_module); \\\$x =~ s/ .*//; \\\$x .= q(::VERSION); eval qq{print \\\\$\\\$x\\n}; exit;" 2>/dev/null`
     if test $? -ne 0; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 $as_echo "no" >&6; };
       ax_perl_modules_failed=1
    else
-      { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
-$as_echo "ok" >&6; };
+      { $as_echo "$as_me:${as_lineno-$LINENO}: result: $modversion" >&5
+$as_echo "$modversion" >&6; };
     fi
   done