2001-05-03 05:12:53 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2001-05-30 03:59:47 -04:00
|
|
|
die(){
|
|
|
|
echo "$@"
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
|
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"
|
2003-01-20 10:24:54 -05:00
|
|
|
ac_version=`${AUTOCONF:-autoconf} --version 2>/dev/null|head -1| sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
|
|
|
|
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
|
|
|
|
IFS=.; set $ac_version; 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)"
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# autoheader 2.50 or newer
|
|
|
|
#
|
|
|
|
ah_version=`${AUTOHEADER:-autoheader} --version 2>/dev/null|head -1| sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
|
|
|
|
if test -z "$ah_version"; then
|
|
|
|
echo "buildconf: autoheader not found."
|
|
|
|
echo " You need autoheader version 2.50 or newer installed."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
IFS=.; set $ah_version; IFS=' '
|
|
|
|
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"
|
2003-04-22 18:31:02 -04:00
|
|
|
am_version=`${AUTOMAKE:-automake} --version 2>/dev/null|head -1| sed -e 's/^.* \([0-9]\)/\1/' -e 's/[a-z]* *$//'`
|
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
|
|
|
|
IFS=.; set $am_version; 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)"
|
|
|
|
|
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
|
|
|
|
|
|
|
libtool=`which glibtool 2>/dev/null`
|
|
|
|
if test ! -x "$libtool"; then
|
|
|
|
libtool=`which libtool`
|
|
|
|
fi
|
|
|
|
#lt_pversion=`${LIBTOOL:-$libtool} --version 2>/dev/null|head -1| sed -e 's/^.* \([0-9]\)/\1/' -e 's/[a-z]* *$//'`
|
|
|
|
lt_pversion=`$libtool --version 2>/dev/null|head -1|sed -e 's/^[^0-9]*//g' -e 's/[- ].*//'`
|
|
|
|
if test -z "$lt_pversion"; then
|
|
|
|
echo "buildconf: libtool not found."
|
|
|
|
echo " You need libtool version $LIBTOOL_WANTED_VERSION or newer installed"
|
|
|
|
exit 1
|
|
|
|
fi
|
2003-10-14 07:27:30 -04:00
|
|
|
lt_version=`echo $lt_pversion|sed -e 's/\([a-z]*\)$//'`
|
2003-05-03 12:25:49 -04:00
|
|
|
IFS=.; set $lt_version; IFS=' '
|
|
|
|
lt_status="good"
|
2003-10-14 07:27:30 -04:00
|
|
|
|
|
|
|
major=$1
|
|
|
|
minor=$2
|
|
|
|
patch=$3
|
|
|
|
|
|
|
|
if test "$major" = "$LIBTOOL_WANTED_MAJOR"; then
|
|
|
|
if test "$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
|
|
|
|
if test "$minor" -gt "$LIBTOOL_WANTED_MINOR"; then
|
|
|
|
lt_status="good"
|
|
|
|
elif test -n "$patch"; then
|
|
|
|
if test "$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
|
|
|
|
echo "buildconf: libtool version $lt_pversion found."
|
|
|
|
echo " You need libtool version $LIBTOOL_WANTED_VERSION or newer installed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "buildconf: libtool version $lt_version (ok)"
|
|
|
|
|
|
|
|
# ------------------------------------------------------------
|
|
|
|
|
|
|
|
# run the correct scripts now
|
|
|
|
|
2003-05-09 04:17:41 -04:00
|
|
|
echo "buildconf: running libtoolize"
|
|
|
|
${LIBTOOLIZE:-libtoolize} --copy --automake || die "The command '${LIBTOOLIZE:-libtoolize} --copy --automake' failed"
|
2003-01-20 10:24:54 -05:00
|
|
|
echo "buildconf: running aclocal"
|
2003-04-22 18:31:02 -04:00
|
|
|
${ACLOCAL:-aclocal} || die "The command '${AUTOHEADER:-aclocal}' failed"
|
2003-01-20 10:24:54 -05:00
|
|
|
echo "buildconf: running autoheader"
|
2003-04-22 18:31:02 -04:00
|
|
|
${AUTOHEADER:-autoheader} || die "The command '${AUTOHEADER:-autoheader}' failed"
|
2003-01-20 10:24:54 -05:00
|
|
|
echo "buildconf: running autoconf"
|
2003-04-22 18:31:02 -04:00
|
|
|
${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed"
|
2003-10-20 04:25:12 -04:00
|
|
|
|
|
|
|
if test -d ares; then
|
|
|
|
echo "buildconf: running autoconf in the ares directory"
|
|
|
|
cd ares
|
|
|
|
${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed"
|
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
|
2003-01-20 10:24:54 -05:00
|
|
|
echo "buildconf: running automake"
|
2003-04-22 18:31:02 -04:00
|
|
|
${AUTOMAKE:-automake} -a || die "The command '${AUTOMAKE:-automake} -a' failed"
|
2003-01-20 10:24:54 -05:00
|
|
|
exit 0
|