summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-12-28 18:56:43 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-12-28 19:08:23 -0800
commitbe513b2f2f296cba566093f9533d51a5deaddab3 (patch)
treee79d396e0b8d3a49c2b0c32eed4cde3f4a3eea6d
parentbb21c638673d1b2c4b24374267490e9dfedf97cb (diff)
downloadxorg-proto-printproto-be513b2f2f296cba566093f9533d51a5deaddab3.tar.gz
config: Add missing AC_CONFIG_SRCDIR & AM_MAINTAINER_MODE
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 834ae13..92d8638 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,15 @@
+dnl
+dnl Process this file with autoconf to create configure.
+
+# Initialize Autoconf
AC_PREREQ([2.60])
-AC_INIT([PrintProto], [1.0.4], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
+AC_INIT([PrintProto], [1.0.4],
+ [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
# Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS
m4_ifndef([XORG_MACROS_VERSION],