pixman: Branch 'master'

Siarhei Siamashka siamashka at kemper.freedesktop.org
Thu Jan 3 16:06:10 PST 2013


 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 480dd38fd190fb7ca4ff172a31a4a6ef2944f20c
Author: Marko Lindqvist <cazfi74 at gmail.com>
Date:   Thu Jan 3 06:38:01 2013 +0200

    Fix build with automake-1.13
    
    Automake-1.13 has removed long obsolete AM_CONFIG_HEADER macro (
    http://lists.gnu.org/archive/html/automake/2012-12/msg00038.html )
    and autoreconf errors out upon seeing it.
    
    Attached patch replaces obsolete AM_CONFIG_HEADER with now proper
    AC_CONFIG_HEADERS.

diff --git a/configure.ac b/configure.ac
index 81f068d..515e312 100644
--- a/configure.ac
+++ b/configure.ac
@@ -64,7 +64,7 @@ AM_INIT_AUTOMAKE([foreign dist-bzip2])
 # Suppress verbose compile lines
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
 
 AC_CANONICAL_HOST
 


More information about the xorg-commit mailing list