summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-12-28 17:51:15 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-12-28 17:51:18 -0800
commit7df615d96ea2204b3922bf0600a55cbe661b3d69 (patch)
tree513f5c3caa05709562f5060715a3db2d1af3a22f
parent2cef0867dcf92eb3cb08868fca23371785c19bad (diff)
downloadxorg-proto-dmxproto-7df615d96ea2204b3922bf0600a55cbe661b3d69.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.ac11
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index c25791e..e4442dd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,14 @@
+dnl
+dnl Process this file with autoconf to create configure.
+
+# Initialize Autoconf
AC_PREREQ([2.60])
-AC_INIT([DMXProto], [2.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
+AC_INIT([DMXProto], [2.3],
+ [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
+AC_CONFIG_SRCDIR([Makefile.am])
+AC_CONFIG_HEADERS([config.h])
+
+# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-bzip2])
AM_MAINTAINER_MODE