summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-12-08 22:17:49 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-12-08 22:18:58 -0800
commit3389416e4c58b7e7ccad8d2bccb65f3e291ef43b (patch)
tree2ea7198dac4164a009e0aabea6bd31539d2be126
parent0545a1f26d56ab329b69be76a27e2d4d9b0f88df (diff)
downloadxorg-proto-resourceproto-3389416e4c58b7e7ccad8d2bccb65f3e291ef43b.tar.gz
config: replace deprecated AC_OUTPUT file list with AC_CONFIG_FILES
Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Add missing AC_CONFIG_SRCDIR Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac15
1 files changed, 12 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 550a90d..b4e378d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,13 @@
+dnl
+dnl Process this file with autoconf to create configure.
+
+# Initialize Autoconf
AC_PREREQ([2.60])
-AC_INIT([ResourceProto], [1.1.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
+AC_INIT([ResourceProto],[1.1.0],
+ [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
@@ -9,5 +17,6 @@ m4_ifndef([XORG_MACROS_VERSION],
XORG_MACROS_VERSION(1.3)
XORG_DEFAULT_OPTIONS
-AC_OUTPUT([Makefile
- resourceproto.pc])
+AC_CONFIG_FILES([Makefile
+ resourceproto.pc])
+AC_OUTPUT