summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-01-05 20:05:06 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-01-05 20:05:06 -0800
commitd95a95c5b862648c2c7da8011abe6f0abb6f2064 (patch)
treecb1ecf59140b8641a2ca7d53436cb815f2b891e6
parent4b349a8c1512f660f5dc4fa94b65bab8c7c2f840 (diff)
downloadxorg-proto-xf86vidmodeproto-d95a95c5b862648c2c7da8011abe6f0abb6f2064.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 f1c65e6..a24c158 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([XF86VidModeProto], [2.3], [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