From 4e23f6d1ce67d9155a2e201592dec0d963a1d822 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 1 Feb 2012 17:31:47 +0100 Subject: updated autofoo stuff so linking actually works --- autogen.sh | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 17e4d21..2a9825d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,15 @@ #!/bin/bash -aclocal +gprefix=`which glibtoolize 2>&1 >/dev/null` +if [ $? -eq 0 ]; then + glibtoolize --force +else + libtoolize --force +fi +aclocal -I m4 +autoheader +automake --add-missing autoconf -automake -./configure + +if [ -z "$NOCONFIGURE" ]; then + ./configure "$@" +fi -- cgit v1.1-32-gdbae