summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2009-10-12 10:57:13 -0400
committerGaetan Nadon <memsize@videotron.ca>2009-10-12 10:57:13 -0400
commitb47a30d3c91fbd5b230a11b1a5ddbfb943bcd7b2 (patch)
tree9f3d96347c9f97c0acdcb6004a0fbcf0dbafd1b7
parentf8695cf7b892028bf7c502e85f26f0a756edd316 (diff)
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.
-rw-r--r--configure.ac13
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