GNOME Bugzilla – Bug 525961
Build fails on darwin
Last modified: 2008-04-03 15:15:25 UTC
Current CVS gives: gstregistry.c:833: error: syntax error before '.' token The reason is: if (!g_str_has_suffix (filename, G_MODULE_SUFFIX) #ifdef GST_EXTRA_MODULE_SUFFIX || !g_str_has_suffix (filename, GST_EXTRA_MODULE_SUFFIX) #endif the SUFFIX macro is defined without quotes. I'm not sure if it's used in any other places where you don't want the quotes, otherwise the fix should be simple, adding quotes to configure.ac.
Thanks for testing and reporting. 2008-04-03 Stefan Kost <ensonic@users.sf.net> * configure.ac: Add qoutes to the define. Fixes # 525961.