GNOME Bugzilla – Bug 723995
winks: configure test is broken - missing braces
Last modified: 2014-02-10 08:34:48 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.
Created attachment 268640 [details] [review] Fix winks configure test
commit 008c15c910dbbe1d4323ded31dc1c5c567ce3a8c Author: Руслан Ижбулатов <lrn1986@gmail.com> Date: Mon Feb 10 08:21:04 2014 +0000 Fix winks configure test Fixes #723995