mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Jean-Philippe Barrette-LaPierre made buildconf run better on Mac OS X by
properly using glibtoolize instead of plain libtoolize. (This is made if glibtool was found and used instead of plain libtool.)
This commit is contained in:
parent
35292e794a
commit
94c6a5eeab
5
CHANGES
5
CHANGES
@ -6,6 +6,11 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Daniel (30 September 2004)
|
||||||
|
- Jean-Philippe Barrette-LaPierre made buildconf run better on Mac OS X by
|
||||||
|
properly using glibtoolize instead of plain libtoolize. (This is made if
|
||||||
|
glibtool was found and used instead of plain libtool.)
|
||||||
|
|
||||||
Daniel (29 September 2004)
|
Daniel (29 September 2004)
|
||||||
- Bertrand Demiddelaer fixed curl_easy_reset() so that it doesn't mistakingly
|
- Bertrand Demiddelaer fixed curl_easy_reset() so that it doesn't mistakingly
|
||||||
enable the progress meter.
|
enable the progress meter.
|
||||||
|
@ -101,6 +101,10 @@ libtool=`findtool glibtool 2>/dev/null`
|
|||||||
if test ! -x "$libtool"; then
|
if test ! -x "$libtool"; then
|
||||||
libtool=`findtool libtool`
|
libtool=`findtool libtool`
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# set the LIBTOOLIZE here so that glibtoolize is used if glibtool was found
|
||||||
|
LIBTOOLIZE="${libtool}ize"
|
||||||
|
|
||||||
lt_pversion=`$libtool --version 2>/dev/null|head -1|sed -e 's/^[^0-9]*//g' -e 's/[- ].*//'`
|
lt_pversion=`$libtool --version 2>/dev/null|head -1|sed -e 's/^[^0-9]*//g' -e 's/[- ].*//'`
|
||||||
if test -z "$lt_pversion"; then
|
if test -z "$lt_pversion"; then
|
||||||
echo "buildconf: libtool not found."
|
echo "buildconf: libtool not found."
|
||||||
|
Loading…
Reference in New Issue
Block a user