Validate that autom4te and autoconf versions match.
Validate that aclocal and automake versions match. Improve removal of previous run generated files. Remove verbose debug logging of aclocal on Solaris.
This commit is contained in:
5
CHANGES
5
CHANGES
@@ -6,6 +6,11 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Yang Tse (5 Aug 2008)
|
||||||
|
- Changes done to buildconf script. Validate that autom4te and autoconf, as
|
||||||
|
well as aclocal and automake, versions match. Improve removal of previous
|
||||||
|
run generated files. Remove verbose debug logging of aclocal on Solaris.
|
||||||
|
|
||||||
Daniel Stenberg (5 Aug 2008)
|
Daniel Stenberg (5 Aug 2008)
|
||||||
- Yehoshua Hershberg found a problem that would make libcurl re-use a
|
- Yehoshua Hershberg found a problem that would make libcurl re-use a
|
||||||
connection with the multi interface even if a previous use of it caused a
|
connection with the multi interface even if a previous use of it caused a
|
||||||
|
|||||||
134
buildconf
134
buildconf
@@ -47,6 +47,25 @@ findtool(){
|
|||||||
IFS=$old_IFS
|
IFS=$old_IFS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------------
|
||||||
|
# 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
|
||||||
|
}
|
||||||
|
|
||||||
#--------------------------------------------------------------------------
|
#--------------------------------------------------------------------------
|
||||||
# Ensure that buildconf runs from the subdirectory where configure.ac lives
|
# Ensure that buildconf runs from the subdirectory where configure.ac lives
|
||||||
#
|
#
|
||||||
@@ -85,8 +104,12 @@ am4te_version=`${AUTOM4TE:-autom4te} --version 2>/dev/null|head -n 1| sed -e 's/
|
|||||||
if test -z "$am4te_version"; then
|
if test -z "$am4te_version"; then
|
||||||
echo "buildconf: autom4te not found. Weird autoconf installation!"
|
echo "buildconf: autom4te not found. Weird autoconf installation!"
|
||||||
exit 1
|
exit 1
|
||||||
|
fi
|
||||||
|
if test "$am4te_version" = "$ac_version"; then
|
||||||
|
echo "buildconf: autom4te version $am4te_version (ok)"
|
||||||
else
|
else
|
||||||
echo "buildconf: autom4te version $am4te_version"
|
echo "buildconf: autom4te version $am4te_version (ERROR: does not match autoconf version)"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#--------------------------------------------------------------------------
|
#--------------------------------------------------------------------------
|
||||||
@@ -136,8 +159,12 @@ acloc_version=`${ACLOCAL:-aclocal} --version 2>/dev/null|head -n 1| sed -e 's/^.
|
|||||||
if test -z "$acloc_version"; then
|
if test -z "$acloc_version"; then
|
||||||
echo "buildconf: aclocal not found. Weird automake installation!"
|
echo "buildconf: aclocal not found. Weird automake installation!"
|
||||||
exit 1
|
exit 1
|
||||||
|
fi
|
||||||
|
if test "$acloc_version" = "$am_version"; then
|
||||||
|
echo "buildconf: aclocal version $acloc_version (ok)"
|
||||||
else
|
else
|
||||||
echo "buildconf: aclocal version $acloc_version"
|
echo "buildconf: aclocal version $acloc_version (ERROR: does not match automake version)"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#--------------------------------------------------------------------------
|
#--------------------------------------------------------------------------
|
||||||
@@ -229,88 +256,44 @@ PERL=`findtool ${PERL:-perl}`
|
|||||||
#--------------------------------------------------------------------------
|
#--------------------------------------------------------------------------
|
||||||
# Remove files generated on previous buildconf/configure run.
|
# Remove files generated on previous buildconf/configure run.
|
||||||
#
|
#
|
||||||
for fname in aclocal.m4 \
|
for fname in .deps \
|
||||||
aclocal.m4.bak \
|
Makefile \
|
||||||
config.guess \
|
Makefile.in \
|
||||||
config.log \
|
aclocal.m4 \
|
||||||
config.status \
|
aclocal.m4.bak \
|
||||||
config.sub \
|
autom4te.cache \
|
||||||
configure \
|
compile \
|
||||||
depcomp \
|
config.guess \
|
||||||
libtool \
|
config.h \
|
||||||
ltmain.sh \
|
config.h.in \
|
||||||
Makefile \
|
config.log \
|
||||||
Makefile.in ; do
|
config.status \
|
||||||
if test -f "$fname" ; then
|
config.sub \
|
||||||
rm -f "$fname"
|
configure \
|
||||||
fi
|
curl-config \
|
||||||
|
depcomp \
|
||||||
|
libcares.pc \
|
||||||
|
libcurl.pc \
|
||||||
|
libtool \
|
||||||
|
libtool.m4 \
|
||||||
|
ltmain.sh \
|
||||||
|
missing \
|
||||||
|
stamp-h1 \
|
||||||
|
stamp-h2 \
|
||||||
|
stamp-h3 ; do
|
||||||
|
removethis "$fname"
|
||||||
done
|
done
|
||||||
if test -d autom4te.cache; then
|
|
||||||
rm -f -r autom4te.cache
|
|
||||||
fi
|
|
||||||
if test -d docs/examples/.deps; then
|
|
||||||
rm -f -r docs/examples/.deps
|
|
||||||
fi
|
|
||||||
if test -d lib/.deps; then
|
|
||||||
rm -f -r lib/.deps
|
|
||||||
fi
|
|
||||||
if test -d src/.deps; then
|
|
||||||
rm -f -r src/.deps
|
|
||||||
fi
|
|
||||||
if test -d tests/libtest/.deps; then
|
|
||||||
rm -f -r tests/libtest/.deps
|
|
||||||
fi
|
|
||||||
if test -d tests/server/.deps; then
|
|
||||||
rm -f -r tests/server/.deps
|
|
||||||
fi
|
|
||||||
|
|
||||||
#--------------------------------------------------------------------------
|
|
||||||
# Remove files generated in c-ares subdir on previous buildconf/configure run.
|
|
||||||
#
|
|
||||||
if test -d ares; then
|
|
||||||
cd ares
|
|
||||||
for fname in aclocal.m4 \
|
|
||||||
aclocal.m4.bak \
|
|
||||||
compile \
|
|
||||||
config.h \
|
|
||||||
config.h.in \
|
|
||||||
config.guess \
|
|
||||||
config.log \
|
|
||||||
config.status \
|
|
||||||
config.sub \
|
|
||||||
configure \
|
|
||||||
depcomp \
|
|
||||||
libtool \
|
|
||||||
ltmain.sh \
|
|
||||||
missing \
|
|
||||||
Makefile \
|
|
||||||
Makefile.in ; do
|
|
||||||
if test -f "$fname" ; then
|
|
||||||
rm -f "$fname"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
if test -d autom4te.cache; then
|
|
||||||
rm -f -r autom4te.cache
|
|
||||||
fi
|
|
||||||
if test -d .deps; then
|
|
||||||
rm -f -r .deps
|
|
||||||
fi
|
|
||||||
cd ..
|
|
||||||
fi
|
|
||||||
|
|
||||||
#--------------------------------------------------------------------------
|
#--------------------------------------------------------------------------
|
||||||
# run the correct scripts now
|
# run the correct scripts now
|
||||||
#
|
#
|
||||||
|
|
||||||
tmp_host_type=`uname -a | sed '/SunOS/s/.*\(SunOS\).*/\1/'`
|
|
||||||
if test "x$tmp_host_type" = "xSunOS"; then
|
|
||||||
ACLOCAL_FLAGS="$ACLOCAL_FLAGS --verbose"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "buildconf: running libtoolize"
|
echo "buildconf: running libtoolize"
|
||||||
$libtoolize --copy --automake --force || die "The libtoolize command failed"
|
$libtoolize --copy --automake --force || die "The libtoolize command failed"
|
||||||
|
|
||||||
echo "buildconf: running aclocal"
|
echo "buildconf: running aclocal"
|
||||||
${ACLOCAL:-aclocal} -I m4 $ACLOCAL_FLAGS || die "The aclocal command line failed"
|
${ACLOCAL:-aclocal} -I m4 $ACLOCAL_FLAGS || die "The aclocal command line failed"
|
||||||
|
|
||||||
if test -n "$PERL"; then
|
if test -n "$PERL"; then
|
||||||
echo "buildconf: running aclocal hack to convert all mv to mv -f"
|
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
|
$PERL -i.bak -pe 's/\bmv +([^-\s])/mv -f $1/g' aclocal.m4
|
||||||
@@ -318,10 +301,13 @@ else
|
|||||||
echo "buildconf: perl not found"
|
echo "buildconf: perl not found"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "buildconf: running autoheader"
|
echo "buildconf: running autoheader"
|
||||||
${AUTOHEADER:-autoheader} || die "The autoheader command failed"
|
${AUTOHEADER:-autoheader} || die "The autoheader command failed"
|
||||||
|
|
||||||
echo "buildconf: cp lib/config.h.in src/config.h.in"
|
echo "buildconf: cp lib/config.h.in src/config.h.in"
|
||||||
cp lib/config.h.in src/config.h.in
|
cp lib/config.h.in src/config.h.in
|
||||||
|
|
||||||
echo "buildconf: running autoconf"
|
echo "buildconf: running autoconf"
|
||||||
${AUTOCONF:-autoconf} || die "The autoconf command failed"
|
${AUTOCONF:-autoconf} || die "The autoconf command failed"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user