summaryrefslogtreecommitdiffstats
path: root/build/linux/autogen.sh
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <WillemJan.Palenstijn@uantwerpen.be>2013-07-01 22:34:11 +0000
committerwpalenst <WillemJan.Palenstijn@uantwerpen.be>2013-07-01 22:34:11 +0000
commitb2fc6c70434674d74551c3a6c01ffb3233499312 (patch)
treeb17f080ebc504ab85ebb7c3d89f917fd87ce9e00 /build/linux/autogen.sh
downloadastra-b2fc6c70434674d74551c3a6c01ffb3233499312.tar.gz
astra-b2fc6c70434674d74551c3a6c01ffb3233499312.tar.bz2
astra-b2fc6c70434674d74551c3a6c01ffb3233499312.tar.xz
astra-b2fc6c70434674d74551c3a6c01ffb3233499312.zip
Update version to 1.3
Diffstat (limited to 'build/linux/autogen.sh')
-rwxr-xr-xbuild/linux/autogen.sh36
1 files changed, 36 insertions, 0 deletions
diff --git a/build/linux/autogen.sh b/build/linux/autogen.sh
new file mode 100755
index 0000000..c856793
--- /dev/null
+++ b/build/linux/autogen.sh
@@ -0,0 +1,36 @@
+#!/bin/bash
+
+aclocal
+if test $? -ne 0; then
+ echo "Error running aclocal"
+ exit 1
+fi
+
+autoconf
+if test $? -ne 0; then
+ echo "Error running autoconf"
+ exit 1
+fi
+
+libtoolize --install --force > /dev/null 2>&1
+if test $? -ne 0; then
+ libtoolize --force
+ if test $? -ne 0; then
+ echo "Error running libtoolize"
+ exit 1
+ fi
+fi
+
+if test ! -e config.guess; then
+ ln -s config.guess.dist config.guess
+fi
+
+if test ! -e config.sub; then
+ ln -s config.sub.dist config.sub
+fi
+
+if test ! -e install-sh; then
+ ln -s install-sh.dist install-sh
+fi
+
+echo "Done."