summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-11-30 21:53:21 +0100
committerYang Tse <yangsita@gmail.com>2011-11-30 21:53:21 +0100
commitc92234c3bcbb92579a5adecb25c23810e2bc4c10 (patch)
treedc797a7f33af95826244e8d4829470692d9e0bfc /buildconf
parent7e02f7fdee299c04b6a4fb46a562b34a6b183446 (diff)
downloadcurl-c92234c3bcbb92579a5adecb25c23810e2bc4c10.tar.gz
buildconf: follow-up for commit 7e02f7fd
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf27
1 files changed, 17 insertions, 10 deletions
diff --git a/buildconf b/buildconf
index bc448f936..28f3852c0 100755
--- a/buildconf
+++ b/buildconf
@@ -331,24 +331,31 @@ done
# run the correct scripts now
#
+if test ! -f m4/curl-functions.m4; then
+ echo "buildconf: cURL m4 macros not found"
+ exit 1
+fi
+
echo "buildconf: running libtoolize"
$libtoolize --copy --automake --force || die "The libtoolize command failed"
if test "$lt_major" = "1" && test "$lt_minor" = "5"; then
if test -z "$lt_patch" || test "$lt_patch" -lt "26"; then
- echo "buildconf: running libtoolize hack to rename some variables"
- $PERL -i.bak -pe \
- 's/lt_prog_compiler_pic_works/lt_cv_prog_compiler_pic_works/g; \
- s/lt_prog_compiler_static_works/lt_cv_prog_compiler_static_works/g;' \
- m4/libtool.m4
+ if test -f m4/libtool.m4; then
+ our_libtool_m4='m4/libtool.m4'
+ elif test -f libtool.m4; then
+ our_libtool_m4='libtool.m4'
+ fi
+ if test -n "$our_libtool_m4"; then
+ echo "buildconf: running libtoolize hack to rename some variables"
+ $PERL -i.bak -pe \
+ 's/lt_prog_compiler_pic_works/lt_cv_prog_compiler_pic_works/g; \
+ s/lt_prog_compiler_static_works/lt_cv_prog_compiler_static_works/g;' \
+ $our_libtool_m4
+ fi
fi
fi
-if test ! -f m4/curl-functions.m4; then
- echo "buildconf: cURL m4 macros not found"
- exit 1
-fi
-
echo "buildconf: running aclocal"
${ACLOCAL:-aclocal} -I m4 $ACLOCAL_FLAGS || die "The aclocal command line failed"