Skip to content

Commit

Permalink
buildconf: follow-up for commit 7e02f7f
Browse files Browse the repository at this point in the history
  • Loading branch information
yangtse committed Nov 30, 2011
1 parent 7e02f7f commit c92234c
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions buildconf
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit c92234c

Please sign in to comment.