From b47a30d3c91fbd5b230a11b1a5ddbfb943bcd7b2 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Mon, 12 Oct 2009 10:57:13 -0400 Subject: [PATCH] configuration: update, fix warnings, apply global maintenance #24450 Update configure.ac using autotools utilities and wiki guidelines configure.ac: AM_MAINTAINER_MODE missing #24238 This turns off maintainer mode build rules in tarballs. For all X.Org components. --- configure.ac | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index abc6f46..7654b18 100644 --- a/configure.ac +++ b/configure.ac @@ -21,11 +21,17 @@ dnl CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. -AC_PREREQ([2.57]) +AC_PREREQ([2.63]) AC_INIT([util-macros], [1.3.0], - [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) + [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], + [util-macros]) +AC_CONFIG_SRCDIR([Makefile.am]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_MAINTAINER_MODE + +# Checks for programs. +AC_PROG_INSTALL # This is the package that installs xorgversion.m4 as part of xorg-macros.m4. # In order to use xorgversion.m4 here, we include it explicitly. @@ -34,4 +40,5 @@ m4_include([xorgversion.m4]) XORG_RELEASE_VERSION XORG_CHANGELOG -AC_OUTPUT([Makefile xorg-macros.m4:xorg-macros.m4.in:xorgversion.m4]) +AC_CONFIG_FILES([Makefile xorg-macros.m4:xorg-macros.m4.in:xorgversion.m4]) +AC_OUTPUT -- 1.6.0.4