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 525961 - Build fails on darwin
Build fails on darwin
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
git master
Other Mac OS
: Normal normal
: 0.10.20
Assigned To: Tim-Philipp Müller
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-04-03 14:01 UTC by Richard Hult
Modified: 2008-04-03 15:15 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Richard Hult 2008-04-03 14:01:18 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.
Comment 1 Stefan Sauer (gstreamer, gtkdoc dev) 2008-04-03 14:28:19 UTC
Thanks for testing and reporting.

2008-04-03  Stefan Kost  <ensonic@users.sf.net>

        * configure.ac:
          Add qoutes to the define. Fixes # 525961.