summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2006-03-15 00:43:18 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2006-03-15 00:43:18 +0000
commit245466d4ef8ea4012242a3fa21a217e767f4eac4 (patch)
treea6423ce83c5cf20e02c949578350532ea7d34a9c /autogen.sh
parent24d5661d2c703582e44ce140d0eb7251433e1ad0 (diff)
Add the normal trappings of the Xorg modular build system.
Replace "Xv.h" with <X11/extensions/Xv.h> and add #include "config.h" for modular build Strip ^M out of ast_accel.c
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 "$@"