diff options
author | Martin Szulecki | 2014-06-30 19:25:13 +0200 |
---|---|---|
committer | Martin Szulecki | 2014-06-30 19:25:13 +0200 |
commit | b3853fb76f528fda2ada89c83f44b826b7f3bfb8 (patch) | |
tree | 6dcaff9c5835695182a28b76eabf52ca3d93042d /autogen.sh | |
download | libideviceactivation-0.9.0.tar.gz libideviceactivation-0.9.0.tar.bz2 |
Initial commit for version 0.9.00.9.0
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 15 |
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 |