]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
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 269bfc2e876695ce0b2ba697072b3b517f24beed..8dac858ed74a48ccf32b56b7949a73e1a3c7062e 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 0b704e55ea057774707495073d92e44b1de5b89f..0e7cca9e6b1201b9e4f11beabf63c10eca99e011 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)