Silence -Wunused-const-variable warnings in Gnulib code.
[gnulib.git] / m4 / perl.m4
blobf4218e63044e507c123ba5ce82f86ba49936f2fd
1 # perl.m4
2 # serial 11
3 dnl Copyright (C) 1998-2001, 2003-2004, 2007, 2009-2024 Free Software Foundation, Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
8 dnl From Jim Meyering.
9 dnl Find a new-enough version of Perl.
11 AC_DEFUN([gl_PERL],
13   dnl FIXME: don't hard-code 5.005
14 AC_CACHE_CHECK([for Perl 5.005 or newer],
15  [gl_cv_prog_perl],
16  [
17   if test "${PERL+set}" = set; then
18     # 'PERL' is set in the user's environment.
19     candidate_perl_names="$PERL"
20     perl_specified=yes
21   else
22     candidate_perl_names='perl perl5'
23     perl_specified=no
24   fi
26   gl_cv_prog_perl=no
27   for perl in $candidate_perl_names; do
28     # Run test in a subshell; some versions of sh will print an error if
29     # an executable is not found, even if stderr is redirected.
30     if ( $perl -e 'require 5.005; use File::Compare; use warnings;' ) > /dev/null 2>&1; then
31       gl_cv_prog_perl=$perl
32       break
33     fi
34   done
35  ])
37 if test "$gl_cv_prog_perl" != no; then
38   PERL=$gl_cv_prog_perl
39 else
40   PERL="$am_missing_run perl"
41   AC_MSG_WARN([
42 WARNING: You don't seem to have perl5.005 or newer installed, or you lack
43          a usable version of the Perl File::Compare module.  As a result,
44          you may be unable to run a few tests or to regenerate certain
45          files if you modify the sources from which they are derived.
46 ] )
49 AC_SUBST([PERL])