From 2ad5d4769461c3d57b7376e0b6a6c29f8cefff3c Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Sat, 10 Oct 2009 15:05:27 -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 | 17 +++++++++++++---- 1 files changed, 13 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index b6caa73..030dfec 100644 --- a/configure.ac +++ b/configure.ac @@ -21,17 +21,26 @@ 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_INIT([util-macros], +AC_PREREQ([2.63]) +AC_INIT([X.Org Macros], [1.3.1], - [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 # 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. m4_include([xorgversion.m4]) +# Checks for programs. +AC_PROG_INSTALL + XORG_RELEASE_VERSION XORG_CHANGELOG -AC_OUTPUT([Makefile xorg-macros.m4:xorg-macros.m4.in:xorgversion.m4]) +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([xorg-macros.m4:xorg-macros.m4.in:xorgversion.m4]) +AC_OUTPUT + -- 1.6.0.4