summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2011-05-20 17:42:08 +0000
committerRainer Jung <rjung@apache.org>2011-05-20 17:42:08 +0000
commitf4acb1a299fbf1b64a97cc4c0c77f73b3aa385e9 (patch)
treeca766f96396232e5f6f6879034fa9520897e8390 /buildconf
parent43b6e5d90c24bf68be11ba55afb3c43c3d7eef57 (diff)
downloadapr-f4acb1a299fbf1b64a97cc4c0c77f73b3aa385e9.tar.gz
Use buildconf script from trunk, works fine.
Changes: - fixed indentation - Correct and add a few comments - Remove "$verbose" from libtool 1 call (it doesn't implement it) - Reduce code duplication - Remove "force" form libtoolize in order to not overwrite config.(guess|sub). All possibly conflicting old files get removed by buildconf before calling libtoolize. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@1125485 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf49
1 files changed, 35 insertions, 14 deletions
diff --git a/buildconf b/buildconf
index f8c4810ff..2fa18a8be 100755
--- a/buildconf
+++ b/buildconf
@@ -42,26 +42,38 @@ fi
#
echo "buildconf: copying libtool helper files using $libtoolize"
-# Remove any libtool files so one can switch between libtool 1.3
-# and libtool 1.4 by simply rerunning the buildconf script.
+# Remove any libtool files so one can switch between libtool versions
+# by simply rerunning the buildconf script.
+rm -f aclocal.m4 libtool.m4
(cd build ; rm -f ltconfig ltmain.sh libtool.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 lt~obsolete.m4)
+# Determine libtool version, because --copy behaves differently
+# w.r.t. copying libtool.m4
lt_pversion=`$libtoolize --version 2>/dev/null|sed -e 's/([^)]*)//g;s/^[^0-9]*//;s/[- ].*//g;q'`
lt_version=`echo $lt_pversion|sed -e 's/\([a-z]*\)$/.\1/'`
IFS=.; set $lt_version; IFS=' '
+
+# libtool 1
if test "$1" = "1"; then
- $libtoolize --copy --automake --force $verbose
+ $libtoolize --copy --automake
+ # Unlikely, maybe for old versions the file exists
if [ -f libtool.m4 ]; then
ltfile=`pwd`/libtool.m4
else
- ltfindcmd="`sed -n \"/=[^\\\`]/p;/libtool_m4=/{s/.*=/echo /p;q;}\" \
+
+ # Extract all lines setting variables from libtoolize up until
+ # libtool_m4 gets set
+ ltfindcmd="`sed -n \"/=[^\\\`]/p;/libtool_m4=/{s/.*=/echo /p;q;}\" \
< $libtoolize`"
- ltfile=${LIBTOOL_M4-`eval "$ltfindcmd"`}
- # Expecting the code above to be very portable, but just in case...
- if [ -z "$ltfile" -o ! -f "$ltfile" ]; then
- ltpath=`dirname $libtoolize`
- ltfile=`cd $ltpath/../share/aclocal ; pwd`/libtool.m4
- fi
+
+ # Get path to libtool.m4 either from LIBTOOL_M4 env var or our libtoolize based script
+ ltfile=${LIBTOOL_M4-`eval "$ltfindcmd"`}
+
+ # Expecting the code above to be very portable, but just in case...
+ if [ -z "$ltfile" -o ! -f "$ltfile" ]; then
+ ltpath=`dirname $libtoolize`
+ ltfile=`cd $ltpath/../share/aclocal ; pwd`/libtool.m4
+ fi
fi
if [ ! -f $ltfile ]; then
echo "$ltfile not found"
@@ -69,12 +81,21 @@ if test "$1" = "1"; then
fi
# Do we need this anymore?
echo "buildconf: Using libtool.m4 at ${ltfile}."
- cat $ltfile | sed -e 's/LIBTOOL=\(.*\)top_build/LIBTOOL=\1apr_build/' > build/libtool.m4
-fi
-if test "$1" = "2"; then
- $libtoolize --copy --force $verbose
+ rm -f build/libtool.m4
+ cp -p $ltfile build/libtool.m4
+
+# libtool 2
+elif test "$1" = "2"; then
+ $libtoolize --copy --quiet $verbose
fi
+# Replace top_builddir by apr_builddir.
+# Wouldn't it just be better to define top_builddir??
+# Not sure, wuld it interfere with httpd top_builddir when bundled?
+mv build/libtool.m4 build/libtool.m4.$$
+sed -e 's/\(LIBTOOL=.*\)top_build/\1apr_build/' < build/libtool.m4.$$ > build/libtool.m4
+rm -f build/libtool.m4.$$
+
# Clean up any leftovers
rm -f aclocal.m4 libtool.m4