summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2014-06-30 19:25:13 +0200
committerGravatar Martin Szulecki2014-06-30 19:25:13 +0200
commitb3853fb76f528fda2ada89c83f44b826b7f3bfb8 (patch)
tree6dcaff9c5835695182a28b76eabf52ca3d93042d /autogen.sh
downloadlibideviceactivation-b3853fb76f528fda2ada89c83f44b826b7f3bfb8.tar.gz
libideviceactivation-b3853fb76f528fda2ada89c83f44b826b7f3bfb8.tar.bz2
Initial commit for version 0.9.00.9.0
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..3292973
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+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
+
+if [ -z "$NOCONFIGURE" ]; then
+ ./configure "$@"
+fi