build: Do not use deprecated AM_CONFIG_HEADER
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Thu, 10 Jan 2013 15:18:14 +0000 (13:18 -0200)
committerMarcel Holtmann <marcel@holtmann.org>
Thu, 10 Jan 2013 23:53:08 +0000 (15:53 -0800)
The long-obsoleted AM_CONFIG_HEADER macro was removed in automake 1.13.
Use AC_CONFIG_HEADERS instead.

configure.ac

index 59d9a0a..3109192 100644 (file)
@@ -2,7 +2,7 @@ AC_PREREQ(2.60)
 AC_INIT(neard, 0.8)
 
 AM_INIT_AUTOMAKE([foreign subdir-objects color-tests])
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
 
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])