summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-04-09 21:38:37 -0700
committerKeith Packard <keithp@keithp.com>2013-04-09 21:39:54 -0700
commit92135eefc5d452f8d4f1921a778af238e6b5d1a5 (patch)
treeb2fd7e89ddd9a46952c9a9c3bf4cf4f8259ea995 /autogen.sh
parent9ab4a811fe9174cad10854da626102a64a0d5ece (diff)
downloadxorg-proto-dri3proto-92135eefc5d452f8d4f1921a778af238e6b5d1a5.tar.gz
Initial DRI3 protocol headers
Just getting started Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..904cd67
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,12 @@
+#! /bin/sh
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+ORIGDIR=`pwd`
+cd $srcdir
+
+autoreconf -v --install || exit 1
+cd $ORIGDIR || exit $?
+
+$srcdir/configure --enable-maintainer-mode "$@"