]> granicus.if.org Git - curl/commitdiff
Jean-Philippe Barrette-LaPierre made buildconf run better on Mac OS X by
authorDaniel Stenberg <daniel@haxx.se>
Thu, 30 Sep 2004 19:46:32 +0000 (19:46 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 30 Sep 2004 19:46:32 +0000 (19:46 +0000)
properly using glibtoolize instead of plain libtoolize. (This is made if
glibtool was found and used instead of plain libtool.)

CHANGES
buildconf

diff --git a/CHANGES b/CHANGES
index 77de7496b57d9d3e7cb2d8b951bb3f1aa4719954..9f9c47dbea6d41536d01c2361cff8d5af34729b0 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,11 @@
 
                                   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)
 - Bertrand Demiddelaer fixed curl_easy_reset() so that it doesn't mistakingly
   enable the progress meter.
index 238a3417c1bfe3c1ed35f79c95e4e957a97999c8..04aeabb3482c9334b18118d4ac2148ab794c0ce5 100755 (executable)
--- a/buildconf
+++ b/buildconf
@@ -101,6 +101,10 @@ libtool=`findtool glibtool 2>/dev/null`
 if test ! -x "$libtool"; then
   libtool=`findtool libtool`
 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/[- ].*//'`
 if test -z "$lt_pversion"; then
   echo "buildconf: libtool not found."