diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-11-20 19:47:53 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-11-20 19:49:07 -0800 |
commit | a5669dcb488db19b1ba4f1ef4d4565b6c3d1ea09 (patch) | |
tree | 8a13738170b6100f02c45066ebead4f6bb5b12b7 /configure.ac | |
parent | d902a9f27369fc8388774e73f4bee6ab0ad86ef5 (diff) |
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
Regroup AC statements under the Autoconf initialization section.
Regroup AM statements under the Automake initialization section.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index bea8e72..9c5c08c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,17 +1,16 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. +# Initialize Autoconf AC_PREREQ([2.60]) -AC_INIT([libICE], - [1.0.7], - [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], - [libICE]) - +AC_INIT([libICE], [1.0.7], + [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libICE]) AC_CONFIG_SRCDIR([Makefile.am]) -AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AC_CONFIG_HEADERS([config.h]) +# Initialize Automake +AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE -AM_CONFIG_HEADER([config.h]) # Require xorg-macros minimum of 1.10 for DocBook XML documentation m4_ifndef([XORG_MACROS_VERSION], |