diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2012-12-30 23:48:47 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-12-30 23:48:47 +0000 |
commit | d0c8831f1fa8b2fd738bf1352d46f63c4161dc62 (patch) | |
tree | f3df253fd228a350be70525e1022e4343cdda3c0 /configure.ac | |
parent | 22036ef1c4b256bce70a269dcceb57b2aa02c74e (diff) |
configure: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
AM_CONFIG_HEADER has been removed in the just-released automake 1.13:
https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html
https://bugzilla.gnome.org/show_bug.cgi?id=690881
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f56624187..1063828f0 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ dnl can autoconf find the source ? AC_CONFIG_SRCDIR([gst/gst.c]) dnl define the output header for config -AM_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) dnl AM_MAINTAINER_MODE only provides the option to configure to enable it AM_MAINTAINER_MODE([enable]) |