diff options
author | David Robillard <d@drobilla.net> | 2008-01-16 02:27:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-01-16 02:27:40 +0000 |
commit | b83ce0b6712e9dc119dc6fa38c58932c60321ed1 (patch) | |
tree | 67e73abb376894fcf7361b2f71cdac8052b30b26 /autogen.sh | |
parent | 2aca277bdc433255cd39b55dc0a1ba562910a2ee (diff) | |
download | lilv-b83ce0b6712e9dc119dc6fa38c58932c60321ed1.tar.gz lilv-b83ce0b6712e9dc119dc6fa38c58932c60321ed1.tar.bz2 lilv-b83ce0b6712e9dc119dc6fa38c58932c60321ed1.zip |
Mac building fixes.
git-svn-id: http://svn.drobilla.net/lad/slv2@1062 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -3,9 +3,14 @@ echo 'Generating necessary files...' rm -rf config mkdir -p config -libtoolize --force +# Mac +if [ -x "`which glibtoolize`" ]; then + glibtoolize --force +else + libtoolize --force +fi aclocal autoheader -Wall -automake --foreign --add-missing -Wall -Wno-portability +automake --foreign --add-missing autoconf |