X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=MakeMakefile;h=4ef2a62eed4839c77eb11abe1647e8658d5c5611;hp=90e4700fd5a26dafd921693744fc9b06ebe4d00e;hb=HEAD;hpb=cf0430b5c1d80f3de44d420643620ddc6b1e428f diff --git a/MakeMakefile b/MakeMakefile index 90e4700..4ef2a62 100755 --- a/MakeMakefile +++ b/MakeMakefile @@ -1,9 +1,9 @@ -#!/bin/sh +#!/bin/bash # # Run this script after the first cvs checkout to build # makefiles and friends -PATH="/usr/pack/automake-1.11-to/amd64-linux-debian3.1/:/usr/pack/automake-1.11-to/amd64-linux-ubuntu8.04/bin:$PATH" +PATH="/usr/pack/automake-1.11-to/amd64-linux-debian3.1/:/usr/pack/automake-1.11-to/amd64-linux-ubuntu8.04/bin:/usr/pack/gettext-0.18.1.1-to/amd64-linux-ubuntu8.04/bin:$PATH" export PATH vcheck (){ @@ -20,8 +20,15 @@ ERROR=0 LIBTOOL_VER="1.5.6" AUTOMAKE_VER="1.9.2" AUTOCONF_VER="2.59" +LIBTOOL_BIN="libtool" -if vcheck $LIBTOOL_VER "libtool --version" +# On MAC OS X, GNU libtool is named 'glibtool': +if [ `(uname -s) 2>/dev/null` == 'Darwin' ] +then + LIBTOOL_BIN="glibtool" +fi + +if vcheck $LIBTOOL_VER "$LIBTOOL_BIN --version" then echo "get a copy of GNU libtool >= $LIBTOOL_VER" ERROR=1