summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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