2001-05-03 05:12:53 -04:00
|
|
|
#!/bin/sh
|
2005-12-21 04:15:54 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2009-01-08 17:53:37 -05:00
|
|
|
# Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2005-12-21 04:15:54 -05:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
|
|
|
# are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
###########################################################################
|
2001-05-03 05:12:53 -04:00
|
|
|
|
2001-05-30 03:59:47 -04:00
|
|
|
die(){
|
|
|
|
echo "$@"
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
|
2008-07-29 15:01:34 -04:00
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# findtool works as 'which' but we use a different name to make it more
|
|
|
|
# obvious we aren't using 'which'! ;-)
|
|
|
|
#
|
2004-02-18 11:16:13 -05:00
|
|
|
findtool(){
|
|
|
|
file="$1"
|
|
|
|
|
2008-07-29 15:01:34 -04:00
|
|
|
old_IFS=$IFS; IFS=':'
|
2004-02-18 11:16:13 -05:00
|
|
|
for path in $PATH
|
|
|
|
do
|
2008-07-29 15:01:34 -04:00
|
|
|
IFS=$old_IFS
|
2005-12-21 03:09:12 -05:00
|
|
|
# echo "checks for $file in $path" >&2
|
2005-06-09 18:43:13 -04:00
|
|
|
if test -f "$path/$file"; then
|
2004-02-18 11:16:13 -05:00
|
|
|
echo "$path/$file"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
2008-07-29 15:01:34 -04:00
|
|
|
IFS=$old_IFS
|
2004-02-18 11:16:13 -05:00
|
|
|
}
|
|
|
|
|
2008-08-05 02:20:18 -04:00
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# removethis() removes all files and subdirectories with the given name,
|
|
|
|
# inside and below the current subdirectory at invocation time.
|
|
|
|
#
|
|
|
|
removethis(){
|
|
|
|
if test "$#" = "1"; then
|
|
|
|
find . -depth -name $1 -print > buildconf.tmp.$$
|
|
|
|
while read fdname
|
|
|
|
do
|
|
|
|
if test -f "$fdname"; then
|
|
|
|
rm -f "$fdname"
|
|
|
|
elif test -d "$fdname"; then
|
|
|
|
rm -f -r "$fdname"
|
|
|
|
fi
|
|
|
|
done < buildconf.tmp.$$
|
|
|
|
rm -f buildconf.tmp.$$
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2008-07-28 12:17:51 -04:00
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Ensure that buildconf runs from the subdirectory where configure.ac lives
|
|
|
|
#
|
|
|
|
if test ! -f configure.ac ||
|
|
|
|
test ! -f src/main.c ||
|
|
|
|
test ! -f lib/urldata.h ||
|
|
|
|
test ! -f include/curl/curl.h; then
|
|
|
|
echo "Can not run buildconf from outside of curl's source subdirectory!"
|
|
|
|
echo "Change to the subdirectory where buildconf is found, and try again."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2003-01-20 10:24:54 -05:00
|
|
|
#--------------------------------------------------------------------------
|
2003-05-03 12:25:49 -04:00
|
|
|
# autoconf 2.57 or newer
|
2003-01-20 10:24:54 -05:00
|
|
|
#
|
2003-05-03 12:25:49 -04:00
|
|
|
need_autoconf="2.57"
|
2005-06-09 02:45:54 -04:00
|
|
|
ac_version=`${AUTOCONF:-autoconf} --version 2>/dev/null|head -n 1| sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
|
2003-01-20 10:24:54 -05:00
|
|
|
if test -z "$ac_version"; then
|
|
|
|
echo "buildconf: autoconf not found."
|
2003-05-03 12:25:49 -04:00
|
|
|
echo " You need autoconf version $need_autoconf or newer installed."
|
2003-01-20 10:24:54 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2009-06-07 20:07:18 -04:00
|
|
|
old_IFS=$IFS; IFS='.'; set $ac_version; IFS=$old_IFS
|
2003-05-03 12:25:49 -04:00
|
|
|
if test "$1" = "2" -a "$2" -lt "57" || test "$1" -lt "2"; then
|
2003-01-20 10:24:54 -05:00
|
|
|
echo "buildconf: autoconf version $ac_version found."
|
2003-05-03 12:25:49 -04:00
|
|
|
echo " You need autoconf version $need_autoconf or newer installed."
|
2003-01-20 10:24:54 -05:00
|
|
|
echo " If you have a sufficient autoconf installed, but it"
|
|
|
|
echo " is not named 'autoconf', then try setting the"
|
|
|
|
echo " AUTOCONF environment variable."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "buildconf: autoconf version $ac_version (ok)"
|
|
|
|
|
2008-07-29 21:17:15 -04:00
|
|
|
am4te_version=`${AUTOM4TE:-autom4te} --version 2>/dev/null|head -n 1| sed -e 's/autom4te\(.*\)/\1/' -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
|
|
|
|
if test -z "$am4te_version"; then
|
|
|
|
echo "buildconf: autom4te not found. Weird autoconf installation!"
|
|
|
|
exit 1
|
2008-08-05 02:20:18 -04:00
|
|
|
fi
|
|
|
|
if test "$am4te_version" = "$ac_version"; then
|
|
|
|
echo "buildconf: autom4te version $am4te_version (ok)"
|
2008-07-29 21:17:15 -04:00
|
|
|
else
|
2008-08-05 02:20:18 -04:00
|
|
|
echo "buildconf: autom4te version $am4te_version (ERROR: does not match autoconf version)"
|
|
|
|
exit 1
|
2008-07-29 21:17:15 -04:00
|
|
|
fi
|
|
|
|
|
2003-01-20 10:24:54 -05:00
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# autoheader 2.50 or newer
|
|
|
|
#
|
2005-06-09 02:45:54 -04:00
|
|
|
ah_version=`${AUTOHEADER:-autoheader} --version 2>/dev/null|head -n 1| sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
|
2003-01-20 10:24:54 -05:00
|
|
|
if test -z "$ah_version"; then
|
|
|
|
echo "buildconf: autoheader not found."
|
|
|
|
echo " You need autoheader version 2.50 or newer installed."
|
|
|
|
exit 1
|
|
|
|
fi
|
2009-06-07 20:07:18 -04:00
|
|
|
old_IFS=$IFS; IFS='.'; set $ah_version; IFS=$old_IFS
|
2003-01-20 10:24:54 -05:00
|
|
|
if test "$1" = "2" -a "$2" -lt "50" || test "$1" -lt "2"; then
|
|
|
|
echo "buildconf: autoheader version $ah_version found."
|
|
|
|
echo " You need autoheader version 2.50 or newer installed."
|
|
|
|
echo " If you have a sufficient autoheader installed, but it"
|
|
|
|
echo " is not named 'autoheader', then try setting the"
|
|
|
|
echo " AUTOHEADER environment variable."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "buildconf: autoheader version $ah_version (ok)"
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------------
|
2003-05-03 12:25:49 -04:00
|
|
|
# automake 1.7 or newer
|
2003-01-20 10:24:54 -05:00
|
|
|
#
|
2003-05-03 12:25:49 -04:00
|
|
|
need_automake="1.7"
|
2005-06-09 02:45:54 -04:00
|
|
|
am_version=`${AUTOMAKE:-automake} --version 2>/dev/null|head -n 1| sed -e 's/^.* \([0-9]\)/\1/' -e 's/[a-z]* *$//' -e 's/\(.*\)\(-p.*\)/\1/'`
|
2003-01-20 10:24:54 -05:00
|
|
|
if test -z "$am_version"; then
|
|
|
|
echo "buildconf: automake not found."
|
2003-05-03 12:25:49 -04:00
|
|
|
echo " You need automake version $need_automake or newer installed."
|
2003-01-20 10:24:54 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2009-06-07 20:07:18 -04:00
|
|
|
old_IFS=$IFS; IFS='.'; set $am_version; IFS=$old_IFS
|
2003-05-03 12:25:49 -04:00
|
|
|
if test "$1" = "1" -a "$2" -lt "7" || test "$1" -lt "1"; then
|
2003-01-20 10:24:54 -05:00
|
|
|
echo "buildconf: automake version $am_version found."
|
2003-05-03 12:25:49 -04:00
|
|
|
echo " You need automake version $need_automake or newer installed."
|
2003-01-20 10:24:54 -05:00
|
|
|
echo " If you have a sufficient automake installed, but it"
|
2004-01-05 09:20:08 -05:00
|
|
|
echo " is not named 'automake', then try setting the"
|
2003-01-20 10:24:54 -05:00
|
|
|
echo " AUTOMAKE environment variable."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "buildconf: automake version $am_version (ok)"
|
|
|
|
|
2008-07-29 21:17:15 -04:00
|
|
|
acloc_version=`${ACLOCAL:-aclocal} --version 2>/dev/null|head -n 1| sed -e 's/^.* \([0-9]\)/\1/' -e 's/[a-z]* *$//' -e 's/\(.*\)\(-p.*\)/\1/'`
|
|
|
|
if test -z "$acloc_version"; then
|
2005-04-07 04:59:39 -04:00
|
|
|
echo "buildconf: aclocal not found. Weird automake installation!"
|
|
|
|
exit 1
|
2008-08-05 02:20:18 -04:00
|
|
|
fi
|
|
|
|
if test "$acloc_version" = "$am_version"; then
|
|
|
|
echo "buildconf: aclocal version $acloc_version (ok)"
|
2005-04-07 04:59:39 -04:00
|
|
|
else
|
2008-08-05 02:20:18 -04:00
|
|
|
echo "buildconf: aclocal version $acloc_version (ERROR: does not match automake version)"
|
|
|
|
exit 1
|
2005-04-07 04:59:39 -04:00
|
|
|
fi
|
2003-05-03 12:25:49 -04:00
|
|
|
|
|
|
|
#--------------------------------------------------------------------------
|
2003-05-13 05:37:45 -04:00
|
|
|
# libtool check
|
2003-05-03 12:25:49 -04:00
|
|
|
#
|
|
|
|
LIBTOOL_WANTED_MAJOR=1
|
2003-05-12 08:38:52 -04:00
|
|
|
LIBTOOL_WANTED_MINOR=4
|
|
|
|
LIBTOOL_WANTED_PATCH=2
|
|
|
|
LIBTOOL_WANTED_VERSION=1.4.2
|
2003-05-03 12:25:49 -04:00
|
|
|
|
2004-02-18 11:16:13 -05:00
|
|
|
# this approach that tries 'glibtool' first is some kind of work-around for
|
|
|
|
# some BSD-systems I believe that use to provide the GNU libtool named
|
|
|
|
# glibtool, with 'libtool' being something completely different.
|
|
|
|
libtool=`findtool glibtool 2>/dev/null`
|
2003-05-03 12:25:49 -04:00
|
|
|
if test ! -x "$libtool"; then
|
2005-12-21 03:09:12 -05:00
|
|
|
libtool=`findtool ${LIBTOOL:-libtool}`
|
2003-05-03 12:25:49 -04:00
|
|
|
fi
|
2004-09-30 15:46:32 -04:00
|
|
|
|
2005-12-21 03:09:12 -05:00
|
|
|
if test -z "$LIBTOOLIZE"; then
|
|
|
|
# set the LIBTOOLIZE here so that glibtoolize is used if glibtool was found
|
|
|
|
# $libtool is already the full path
|
|
|
|
libtoolize="${libtool}ize"
|
|
|
|
else
|
|
|
|
libtoolize=`findtool $LIBTOOLIZE`
|
|
|
|
fi
|
2004-09-30 15:46:32 -04:00
|
|
|
|
2009-06-07 20:07:18 -04:00
|
|
|
lt_pver=`$libtool --version 2>/dev/null|head -n 1`
|
|
|
|
lt_qver=`echo $lt_pver|sed -e "s/([^)]*)//g" -e "s/^[^0-9]*//g"`
|
|
|
|
lt_version=`echo $lt_qver|sed -e "s/[- ].*//" -e "s/\([a-z]*\)$//"`
|
|
|
|
if test -z "$lt_version"; then
|
2003-05-03 12:25:49 -04:00
|
|
|
echo "buildconf: libtool not found."
|
|
|
|
echo " You need libtool version $LIBTOOL_WANTED_VERSION or newer installed"
|
|
|
|
exit 1
|
|
|
|
fi
|
2009-06-07 20:07:18 -04:00
|
|
|
old_IFS=$IFS; IFS='.'; set $lt_version; IFS=$old_IFS
|
|
|
|
lt_major=$1
|
|
|
|
lt_minor=$2
|
|
|
|
lt_patch=$3
|
2003-05-03 12:25:49 -04:00
|
|
|
lt_status="good"
|
2003-10-14 07:27:30 -04:00
|
|
|
|
2009-06-07 20:07:18 -04:00
|
|
|
if test "$lt_major" = "$LIBTOOL_WANTED_MAJOR"; then
|
|
|
|
if test "$lt_minor" -lt "$LIBTOOL_WANTED_MINOR"; then
|
2003-05-03 12:25:49 -04:00
|
|
|
lt_status="bad"
|
2003-10-14 07:27:30 -04:00
|
|
|
elif test -n "$LIBTOOL_WANTED_PATCH"; then
|
2009-06-07 20:07:18 -04:00
|
|
|
if test "$lt_minor" -gt "$LIBTOOL_WANTED_MINOR"; then
|
2003-10-14 07:27:30 -04:00
|
|
|
lt_status="good"
|
2009-06-07 20:07:18 -04:00
|
|
|
elif test -n "$lt_patch"; then
|
|
|
|
if test "$lt_patch" -lt "$LIBTOOL_WANTED_PATCH"; then
|
2003-05-12 09:05:11 -04:00
|
|
|
lt_status="bad"
|
|
|
|
fi
|
2003-10-14 07:27:30 -04:00
|
|
|
else
|
|
|
|
lt_status="bad"
|
2003-05-03 12:25:49 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test $lt_status != "good"; then
|
2009-06-07 20:07:18 -04:00
|
|
|
echo "buildconf: libtool version $lt_version found."
|
2003-05-03 12:25:49 -04:00
|
|
|
echo " You need libtool version $LIBTOOL_WANTED_VERSION or newer installed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "buildconf: libtool version $lt_version (ok)"
|
|
|
|
|
2005-12-21 03:09:12 -05:00
|
|
|
if test -f "$libtoolize"; then
|
2005-04-07 04:59:39 -04:00
|
|
|
echo "buildconf: libtoolize found"
|
|
|
|
else
|
|
|
|
echo "buildconf: libtoolize not found. Weird libtool installation!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2004-03-15 02:47:13 -05:00
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# m4 check
|
|
|
|
#
|
2005-06-09 02:45:54 -04:00
|
|
|
m4=`${M4:-m4} --version 2>/dev/null|head -n 1`;
|
2004-03-15 02:47:13 -05:00
|
|
|
m4_version=`echo $m4 | sed -e 's/^.* \([0-9]\)/\1/' -e 's/[a-z]* *$//'`
|
|
|
|
|
|
|
|
if { echo $m4 | grep "GNU" >/dev/null 2>&1; } then
|
|
|
|
echo "buildconf: GNU m4 version $m4_version (ok)"
|
|
|
|
else
|
|
|
|
echo "buildconf: m4 version $m4 found. You need a GNU m4 installed!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2005-04-07 10:26:03 -04:00
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# perl check
|
|
|
|
#
|
2005-12-21 03:09:12 -05:00
|
|
|
PERL=`findtool ${PERL:-perl}`
|
2004-03-15 02:47:13 -05:00
|
|
|
|
2008-07-28 11:15:13 -04:00
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Remove files generated on previous buildconf/configure run.
|
|
|
|
#
|
2008-08-05 02:20:18 -04:00
|
|
|
for fname in .deps \
|
2009-06-02 23:15:19 -04:00
|
|
|
.libs \
|
2009-06-03 06:34:37 -04:00
|
|
|
*.la \
|
|
|
|
*.lo \
|
|
|
|
*.a \
|
|
|
|
*.o \
|
2009-06-02 20:57:18 -04:00
|
|
|
Makefile \
|
2008-08-05 02:20:18 -04:00
|
|
|
Makefile.in \
|
|
|
|
aclocal.m4 \
|
|
|
|
aclocal.m4.bak \
|
2009-06-02 20:08:09 -04:00
|
|
|
ares_build.h \
|
2009-11-14 22:46:14 -05:00
|
|
|
ares_config.h \
|
|
|
|
ares_config.h.in \
|
2008-08-05 02:20:18 -04:00
|
|
|
autom4te.cache \
|
|
|
|
compile \
|
|
|
|
config.guess \
|
2009-07-14 09:25:14 -04:00
|
|
|
curl_config.h \
|
|
|
|
curl_config.h.in \
|
2008-08-05 02:20:18 -04:00
|
|
|
config.log \
|
2009-06-03 06:34:37 -04:00
|
|
|
config.lt \
|
2008-08-05 02:20:18 -04:00
|
|
|
config.status \
|
|
|
|
config.sub \
|
|
|
|
configure \
|
|
|
|
curl-config \
|
2008-08-14 19:55:24 -04:00
|
|
|
curlbuild.h \
|
2008-08-05 02:20:18 -04:00
|
|
|
depcomp \
|
|
|
|
libcares.pc \
|
|
|
|
libcurl.pc \
|
|
|
|
libtool \
|
|
|
|
libtool.m4 \
|
|
|
|
ltmain.sh \
|
2009-02-13 01:25:35 -05:00
|
|
|
ltoptions.m4 \
|
|
|
|
ltsugar.m4 \
|
|
|
|
ltversion.m4 \
|
|
|
|
lt~obsolete.m4 \
|
2008-08-05 02:20:18 -04:00
|
|
|
stamp-h1 \
|
|
|
|
stamp-h2 \
|
|
|
|
stamp-h3 ; do
|
|
|
|
removethis "$fname"
|
2008-07-28 11:15:13 -04:00
|
|
|
done
|
2003-05-03 12:25:49 -04:00
|
|
|
|
2008-07-28 11:15:13 -04:00
|
|
|
#--------------------------------------------------------------------------
|
2003-05-03 12:25:49 -04:00
|
|
|
# run the correct scripts now
|
2008-07-28 11:15:13 -04:00
|
|
|
#
|
2003-05-03 12:25:49 -04:00
|
|
|
|
2003-05-09 04:17:41 -04:00
|
|
|
echo "buildconf: running libtoolize"
|
2005-12-21 03:09:12 -05:00
|
|
|
$libtoolize --copy --automake --force || die "The libtoolize command failed"
|
2008-08-05 02:20:18 -04:00
|
|
|
|
2009-03-09 05:24:31 -04:00
|
|
|
if test ! -f m4/curl-functions.m4; then
|
|
|
|
echo "buildconf: cURL m4 macros not found"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2003-01-20 10:24:54 -05:00
|
|
|
echo "buildconf: running aclocal"
|
2008-07-29 23:10:03 -04:00
|
|
|
${ACLOCAL:-aclocal} -I m4 $ACLOCAL_FLAGS || die "The aclocal command line failed"
|
2008-08-05 02:20:18 -04:00
|
|
|
|
2005-04-07 10:26:03 -04:00
|
|
|
if test -n "$PERL"; then
|
|
|
|
echo "buildconf: running aclocal hack to convert all mv to mv -f"
|
|
|
|
$PERL -i.bak -pe 's/\bmv +([^-\s])/mv -f $1/g' aclocal.m4
|
|
|
|
else
|
|
|
|
echo "buildconf: perl not found"
|
|
|
|
exit 1
|
|
|
|
fi
|
2008-08-05 02:20:18 -04:00
|
|
|
|
2003-01-20 10:24:54 -05:00
|
|
|
echo "buildconf: running autoheader"
|
2004-05-18 06:55:40 -04:00
|
|
|
${AUTOHEADER:-autoheader} || die "The autoheader command failed"
|
2008-08-05 02:20:18 -04:00
|
|
|
|
2009-07-14 09:25:14 -04:00
|
|
|
echo "buildconf: cp lib/curl_config.h.in src/curl_config.h.in"
|
|
|
|
cp lib/curl_config.h.in src/curl_config.h.in
|
2008-08-05 02:20:18 -04:00
|
|
|
|
2003-01-20 10:24:54 -05:00
|
|
|
echo "buildconf: running autoconf"
|
2004-05-18 06:55:40 -04:00
|
|
|
${AUTOCONF:-autoconf} || die "The autoconf command failed"
|
2003-10-20 04:25:12 -04:00
|
|
|
|
|
|
|
if test -d ares; then
|
|
|
|
cd ares
|
2006-01-06 17:08:39 -05:00
|
|
|
echo "buildconf: running in ares"
|
|
|
|
./buildconf
|
2003-10-20 04:25:12 -04:00
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
|
2003-01-20 10:24:54 -05:00
|
|
|
echo "buildconf: running automake"
|
2005-09-01 17:41:35 -04:00
|
|
|
${AUTOMAKE:-automake} -a -c || die "The automake command failed"
|
2004-01-27 07:16:24 -05:00
|
|
|
|
2009-06-05 14:07:47 -04:00
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Depending on the libtool and automake versions being used, config.guess
|
|
|
|
# might not be installed in the subdirectory until automake has finished.
|
|
|
|
# So we can not attempt to use it until this very last buildconf stage.
|
|
|
|
#
|
|
|
|
|
|
|
|
if test ! -f ./config.guess; then
|
|
|
|
echo "buildconf: config.guess not found"
|
|
|
|
else
|
|
|
|
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
|
|
|
|
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"
|
2009-06-07 20:07:18 -04:00
|
|
|
echo "buildconf: libtool version $lt_version found."
|
|
|
|
echo " $buildhost requires libtool $need_lt_version or newer installed."
|
2009-06-05 14:07:47 -04:00
|
|
|
rm -f configure
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Finished succesfully.
|
|
|
|
#
|
|
|
|
|
2004-01-27 07:16:24 -05:00
|
|
|
echo "buildconf: OK"
|
2003-01-20 10:24:54 -05:00
|
|
|
exit 0
|