summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorDavid Croft <david@php.net>2001-06-20 18:21:03 +0000
committerDavid Croft <david@php.net>2001-06-20 18:21:03 +0000
commitfce6f4c5cbae1a5283381c795d1f4c168b7e7b38 (patch)
treeec1e1d8e15df107ab225c28c25da711df815550e /build
parent46847de73bc7ef9f0937a3108eacb66392fe0197 (diff)
downloadphp-git-fce6f4c5cbae1a5283381c795d1f4c168b7e7b38.tar.gz
libtool 1.3 -> 1.4 in first check
Diffstat (limited to 'build')
-rwxr-xr-xbuild/buildcheck.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/buildcheck.sh b/build/buildcheck.sh
index 2f6f969bfb..63145deaa1 100755
--- a/build/buildcheck.sh
+++ b/build/buildcheck.sh
@@ -16,7 +16,7 @@
# | Sascha Schumann <sascha@schumann.cx> |
# +----------------------------------------------------------------------+
#
-# $Id: buildcheck.sh,v 1.11 2001-05-24 12:36:09 sas Exp $
+# $Id: buildcheck.sh,v 1.12 2001-06-20 18:21:03 david Exp $
#
echo "buildconf: checking installation..."
@@ -58,13 +58,13 @@ else
echo "buildconf: automake version $am_version (ok)"
fi
-# libtool 1.3.3 or newer
+# libtool 1.4 or newer
libtool=`which libtool`
if test ! -f "$libtool"; then libtool=`which glibtool`; fi
lt_pversion=`$libtool --version 2>/dev/null|sed -e 's/^[^0-9]*//' -e 's/[- ].*//'`
if test "$lt_pversion" = ""; then
echo "buildconf: libtool not found."
-echo " You need libtool version 1.3 or newer installed"
+echo " You need libtool version 1.4 or newer installed"
echo " to build PHP from CVS."
exit 1
fi