From be513b2f2f296cba566093f9533d51a5deaddab3 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Tue, 28 Dec 2010 18:56:43 -0800 Subject: 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 --- configure.ac | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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], -- cgit v1.2.1