From 72510c69a88422a27cf52f03ad18b1b47e826e43 Mon Sep 17 00:00:00 2001 From: Dan Villiom Podlaski Christiansen Date: Tue, 23 Oct 2012 17:44:31 +0200 Subject: fix Darwin support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # HG changeset patch # User Dan Villiom Podlaski Christiansen # Date 1351006208 -7200 # Node ID 9530ad68d54dd519b0acd1a1516e9259e59277e1 # Parent a50eb30597f3a077189a3019ac4fe11e12250bb6 fix Darwin support Apple used to provide a tool called 'libtoolize' in the OS X developer tools, so the Libtool project wisely named their tool 'glibtoolize' on darwin. Other than that, hardcoding specific versions of autotools is fairly annoying. Signed-off-by: Klaus Kämpf --- bootstrap | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/bootstrap b/bootstrap index 731fa44..b953ba7 100755 --- a/bootstrap +++ b/bootstrap @@ -3,16 +3,13 @@ UNAME=`uname` if [ "$UNAME" = "Darwin" ]; then -libtoolize --copy --force --automake -aclocal-1.9 -autoheader-2.60 -automake-1.9 --add-missing --copy --foreign -autoconf-2.60 - + LIBTOOLIZE=glibtoolize else -libtoolize --copy --force --automake + LIBTOOLIZE=libtoolize +fi + +$LIBTOOLIZE --copy --force --automake aclocal autoheader automake --add-missing --copy --foreign autoconf -fi -- cgit