aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-06-01 02:47:57 +0000
committerYang Tse <yangsita@gmail.com>2009-06-01 02:47:57 +0000
commit0a1b7296b9f6e6773f862b9c1f3d1ef05b9a6784 (patch)
tree6440aafc6862d55db671cdb0166471bd72a88a8f /buildconf
parentcd5e6743f744503f357b0877d6b5bad96ae53d1f (diff)
HP-UX requires libtool version 1.5.24 or newer
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf48
1 files changed, 48 insertions, 0 deletions
diff --git a/buildconf b/buildconf
index c6518552e..70d593950 100755
--- a/buildconf
+++ b/buildconf
@@ -294,6 +294,54 @@ done
echo "buildconf: running libtoolize"
$libtoolize --copy --automake --force || die "The libtoolize command failed"
+if test ! -f ./config.guess; then
+ echo "buildconf: config.guess not found"
+ exit 1
+fi
+
+buildhost=`./config.guess 2>/dev/null|head -n 1`
+case $buildhost in
+ *-*-hpux*)
+ need_lt_major=1
+ need_lt_minor=5
+ need_lt_patch=24
+ need_lt_check="yes"
+ ;;
+esac
+
+if test ! -z "$need_lt_check"; then
+ lt_major="$major"
+ lt_minor="$minor"
+ lt_patch="$patch"
+ if test -z "$lt_major"; then
+ lt_status="bad"
+ elif test "$lt_major" -gt "$need_lt_major"; then
+ lt_status="good"
+ elif test "$lt_major" -lt "$need_lt_major"; then
+ lt_status="bad"
+ elif test -z "$lt_minor"; then
+ lt_status="bad"
+ elif test "$lt_minor" -gt "$need_lt_minor"; then
+ lt_status="good"
+ elif test "$lt_minor" -lt "$need_lt_minor"; then
+ lt_status="bad"
+ elif test -z "$lt_patch"; then
+ lt_status="bad"
+ elif test "$lt_patch" -gt "$need_lt_patch"; then
+ lt_status="good"
+ elif test "$lt_patch" -lt "$need_lt_patch"; then
+ lt_status="bad"
+ else
+ lt_status="good"
+ fi
+ if test "$lt_status" != "good"; then
+ need_lt_version="$need_lt_major.$need_lt_minor.$need_lt_patch"
+ echo "buildconf: libtool version $lt_pversion found."
+ echo " $buildhost requires libtool $need_lt_version or newer."
+ exit 1
+ fi
+fi
+
if test ! -f m4/curl-functions.m4; then
echo "buildconf: cURL m4 macros not found"
exit 1