summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorKevin E Martin <kem@kem.org>2005-07-29 21:22:57 +0000
committerKevin E Martin <kem@kem.org>2005-07-29 21:22:57 +0000
commit9161e0233a932f88a79d228f538565c48dba58d4 (patch)
tree8cd994be9d7d96bad34a7045475b8b827a63ce65 /autogen.sh
downloadxorg-util-macros-9161e0233a932f88a79d228f538565c48dba58d4.tar.gz
Various changes preparing packages for RC0:XORG-6_99_99_900
- Verify and update package version numbers as needed - Implement versioning scheme - Change bug address to point to bugzilla bug entry form - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it) - Fix makedepend to use pkgconfig and pass distcheck - Update build script to build macros first - Update modular Xorg version
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 "$@"