summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-01-05 19:55:21 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-01-05 19:55:21 -0800
commitc0c8ff516f40d5b9f0d595c0c381c895c39309b9 (patch)
treefcd264c02e6de0c8061159c0e73a84ea097c27c6
parent6f3c1924a6018f8fc090f57e0fcab00d50707dcb (diff)
downloadxorg-proto-xf86driproto-c0c8ff516f40d5b9f0d595c0c381c895c39309b9.tar.gz
config: Add missing AC_CONFIG_SRCDIR
Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c7980cc..2902495 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,12 @@
+dnl
+dnl Process this file with autoconf to create configure.
+
+# Initialize Autoconf
AC_PREREQ([2.60])
AC_INIT([XF86DRIProto], [2.1.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
+AC_CONFIG_SRCDIR([Makefile.am])
+
+# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-bzip2])
AM_MAINTAINER_MODE