Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 3 Mar 2000 19:43:41 +0000 (19:43 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 3 Mar 2000 19:43:41 +0000 (19:43 +0000)
2000-02-29  Cristian Gafton  <gafton@redhat.com>

* configure.in (CCVERSION): Require at least veersion 5 of perl API.

ChangeLog
configure.in

index 269bfc2..8dac858 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-02-29  Cristian Gafton  <gafton@redhat.com>
+
+       * configure.in (CCVERSION): Require at least veersion 5 of perl API.
+
 2000-02-17  H.J. Lu  <hjl@gnu.org>
 
        * sunrpc/rpc/svc.h (SVCXPRT): Add a "xp_pad" field at the end.
index 0b704e5..0e7cca9 100644 (file)
@@ -630,6 +630,13 @@ AC_SUBST(libc_cv_have_ksh)
 
 AC_PROG_AWK
 AC_PATH_PROG(PERL, perl, no)
+if [ -n "$PERL" ] ; then
+   eval $($PERL -V:apiversion)
+   if expr $apiversion \< "5" ; then
+       PERL=no
+   fi
+   unset apiversion
+fi
 AC_SUBST(PERL)
 AC_PATH_PROG(INSTALL_INFO, install-info, no,
             $PATH:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin)