shithub: opus

Download patch

ref: ba1bd031c778fdb7bc15d42af516744a193caa96
parent: 5367dac3b0eedebaf7b461a7305146096f727735
author: Ralph Giles <[email protected]>
date: Wed Jan 2 10:28:26 EST 2013

Use AC_CONFIG_HEADERS.

This avoids a warning about obsolete AM_CONFIG_HEADERS() on more
recent autoconf. The new macro has been around at least since
autoconf 2.60. So this should be safe.

--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
 
 AC_INIT(src/opus_encoder.c)
 
-AM_CONFIG_HEADER([config.h])
+AC_CONFIG_HEADERS([config.h])
 
 dnl enable silent rules on automake 1.11 and later
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])