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 723995 - winks: configure test is broken - missing braces
winks: configure test is broken - missing braces
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
git master
Other Windows
: Normal normal
: 1.3.1
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2014-02-10 04:15 UTC by LRN
Modified: 2014-02-10 08:34 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Fix winks configure test (746 bytes, patch)
2014-02-10 08:27 UTC, LRN
committed Details | Review

Description LRN 2014-02-10 04:15:54 UTC
AC_LANG_PROGRAM() call in winks test in gst-plugins-bad configure.ac is missing braces and a comma. The result is that there's only a single argument to AC_LANG_PROGRAM(), which contains both prolog and body, whereas it should have prolog in the first argument and body in the second.
Autoconf figures that it should just use an empty body, since one isn't provided, and we end up with a conftest that has two main() functions.
Comment 1 LRN 2014-02-10 08:27:29 UTC
Created attachment 268640 [details] [review]
Fix winks configure test
Comment 2 Sebastian Dröge (slomo) 2014-02-10 08:34:37 UTC
commit 008c15c910dbbe1d4323ded31dc1c5c567ce3a8c
Author: Руслан Ижбулатов <lrn1986@gmail.com>
Date:   Mon Feb 10 08:21:04 2014 +0000

    Fix winks configure test
    
    Fixes #723995