After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 692864 - Fails to build with Automake 1.13 due to deprecated macro AM_CONFIG_HEADER
Fails to build with Automake 1.13 due to deprecated macro AM_CONFIG_HEADER
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-editing-services
git master
Other Linux
: Normal normal
: 1.2.0
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2013-01-30 09:28 UTC by Kerrick Staley
Modified: 2013-09-24 16:03 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch fixing the issue (822 bytes, patch)
2013-01-30 09:28 UTC, Kerrick Staley
committed Details | Review

Description Kerrick Staley 2013-01-30 09:28:58 UTC
Created attachment 234811 [details] [review]
Patch fixing the issue

gst-editing-services uses the deprecated macro AM_CONFIG_HEADER in configure.ac; it needs to be replaced with AC_CONFIG_HEADERS in order to build with Automake 1.13.

See
https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html
Comment 1 Tim-Philipp Müller 2013-01-30 10:29:00 UTC
Thanks, pushed:

 commit 4d527e24be9b6134801964189e37f87961339d61
 Author: Kerrick Staley <mail@kerrickstaley.com>
 Date:   Wed Jan 30 01:27:17 2013 -0800

    build: replace AM_CONFIG_HEADER with AC_CONFIG_HEADERS to fix build with automake 1.13
    
    AM_CONFIG_HEADER is deprecated; see
    https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html
    
    https://bugzilla.gnome.org/show_bug.cgi?id=692864