summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh29
1 files changed, 18 insertions, 11 deletions
diff --git a/autogen.sh b/autogen.sh
index 3292973..9164d13 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,15 +1,22 @@
1#!/bin/sh 1#!/bin/sh
2gprefix=`which glibtoolize 2>&1 >/dev/null` 2
3if [ $? -eq 0 ]; then 3srcdir=`dirname $0`
4 glibtoolize --force 4test -z "$srcdir" && srcdir=.
5else 5
6 libtoolize --force 6(
7fi 7 cd "$srcdir"
8aclocal -I m4 8 gprefix=`which glibtoolize 2>&1 >/dev/null`
9autoheader 9 if [ $? -eq 0 ]; then
10automake --add-missing 10 glibtoolize --force
11autoconf 11 else
12 libtoolize --force
13 fi
14 aclocal -I m4
15 autoheader
16 automake --add-missing
17 autoconf
18)
12 19
13if [ -z "$NOCONFIGURE" ]; then 20if [ -z "$NOCONFIGURE" ]; then
14 ./configure "$@" 21 "$srcdir/configure" "$@"
15fi 22fi