From e45dc6234bf887fa8356684c13f2468c3041c542 Mon Sep 17 00:00:00 2001 From: Sergey Kleymenov Date: Thu, 19 Mar 2015 08:31:53 +0300 Subject: [PATCH] Add bootstrap support for Mac --- bootstrap | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index 6347427..c38b12b 100755 --- a/bootstrap +++ b/bootstrap @@ -31,7 +31,15 @@ # EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. aclocal -libtoolize --automake --copy + +case `uname` in + Darwin*) + glibtoolize --automake --copy + ;; + *) + libtoolize --automake --copy + ;; +esac autoheader automake --foreign --add-missing --copy