diff options
author | Stig Bakken <ssb@php.net> | 1999-08-31 18:05:22 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-08-31 18:05:22 +0000 |
commit | 4092f4b8c07ffa3272996549bdf454cea7af725e (patch) | |
tree | 006eea6414c01a62bc56ca7c171b94a1f92126ef /buildconf | |
parent | b5375a323d153b43c3ee273d2cbea70e6320227d (diff) | |
download | php-git-4092f4b8c07ffa3272996549bdf454cea7af725e.tar.gz |
ext/lcg -> ext/standard in various places
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -47,7 +47,7 @@ else echo "buildconf: automake version $am_version (ok)" fi - # libtool 1.2f or newer + # libtool 1.3.3 or newer lt_pversion=`libtool --version 2>/dev/null|sed -e 's/^[^0-9]*//' -e 's/ .*//'` if test "$lt_pversion" = ""; then echo "buildconf: libtool not found." @@ -57,12 +57,12 @@ else fi lt_version=`echo $lt_pversion|sed -e 's/\([a-z]*\)$/.\1/'` IFS=.; set $lt_version; IFS=' ' - if test "$1" -gt "1" || test "$2" -ge "3" || test "$2" = "2" -a "$3" = "f" + if test "$1" -gt "1" || test "$2" -gt "3" || test "$2" = "3" -a "$3" -ge "3" then echo "buildconf: libtool version $lt_pversion (ok)" else echo "buildconf: libtool version $lt_pversion found." - echo " You need libtool version 1.2f or newer installed" + echo " You need libtool version 1.3.3 or newer installed" echo " to build PHP from CVS." exit 1 fi |