summaryrefslogtreecommitdiff
path: root/packages/webkit/files/autogen.sh
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2007-12-30 15:56:32 +0000
committerKoen Kooi <koen@openembedded.org>2007-12-30 15:56:32 +0000
commitdbdfaa6382510052e538b777485f2a06590f1605 (patch)
treed5b2de45f57e3cae44975c1e0646dba4f1f95ba5 /packages/webkit/files/autogen.sh
parentea0694a86d7e31981589aa3e9c8aed9bcb5e61a9 (diff)
webkit-gtk: prepare for autotools support: http://www.unpluggable.com/?p=156
Diffstat (limited to 'packages/webkit/files/autogen.sh')
-rw-r--r--packages/webkit/files/autogen.sh40
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 $?