diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-12-30 16:44:17 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-12-30 16:44:17 +0000 |
commit | 99d6885374c4957e8a1b61c4dc23a7d770f3f6d9 (patch) | |
tree | 2b3f90497d5d29cdb6661e9b9206c4c5cdde2699 /packages/webkit/files/autogen.sh | |
parent | 7144ec4e6439c5d16f2c168f62a0741412f6bff5 (diff) | |
parent | 52d47eefac6f3629f38c08aba37d6753337b5207 (diff) |
merge of '1887e05997e5d1f748a52eec6b2d13c49a073d4c'
and '3097cec884e81b132a9e898dffce71a333d6484c'
Diffstat (limited to 'packages/webkit/files/autogen.sh')
-rw-r--r-- | packages/webkit/files/autogen.sh | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/webkit/files/autogen.sh b/packages/webkit/files/autogen.sh new file mode 100644 index 0000000000..b7f7d37b2f --- /dev/null +++ b/packages/webkit/files/autogen.sh @@ -0,0 +1,40 @@ +#! /bin/sh + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +cd $srcdir + +DIE=0 + +(autoconf --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have autoconf installed to compile $PROJECT." + echo "Install the appropriate package for your distribution," + echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/" + DIE=1 +} + +(automake --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have automake installed to compile $PROJECT." + echo "Install the appropriate package for your distribution," + echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/" + DIE=1 +} + +if test "$DIE" -eq 1; then + exit 1 +fi + +rm -rf $top_srcdir/autom4te.cache + +touch README INSTALL + +aclocal || exit $? +libtoolize --force || exit $? +autoheader || exit $? +automake --foreign --add-missing || exit $? +autoconf || exit $? + +./configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $? |