GNOME Bugzilla – Bug 564507
AG_GST_BISON_CHECK is broken
Last modified: 2008-12-15 09:47:08 UTC
The configure check for the Bison version number is broken. It cannot handle versions with more than two components (e.g. 2.4.1).
Created attachment 124662 [details] [review] The patch It also fixes the bad usage "exit(x)?0:1", which should rather be "exit((x)?0:1)".
Created attachment 124663 [details] [review] The corrected patch
*** Bug 564361 has been marked as a duplicate of this bug. ***
2008-12-15 Sebastian Dröge <sebastian.droege@collabora.co.uk> Patch by: Roland Illig <roland dot illig at gmx dot de> * m4/gst-parser.m4: Fix AG_GST_BISON_CHECK to handle version numbers with more than two components (i.e. 2.4.1). Fixes bug #564507.
(In reply to comment #4) > 2008-12-15 Sebastian Dröge <sebastian.droege@collabora.co.uk> Thanks for fixing it so quickly. If you prefer clean code over clumsy code, you can apply the same pattern to the Flex check, further down in the same file. :) Roland