[Gstreamer-bugs] [Bug 139035] New: - Non-standard regex used as libtool argument

bugzilla-daemon at widget.gnome.org bugzilla-daemon at widget.gnome.org
Sun Apr 4 07:38:59 PDT 2004


http://bugzilla.gnome.org/show_bug.cgi?id=139035

           Summary: Non-standard regex used as libtool argument
           Product: GStreamer
           Version: HEAD CVS
          Platform: Other
        OS/Version: other
            Status: UNCONFIRMED
          Severity: critical
          Priority: Normal
         Component: gst-plugins
        AssignedTo: gstreamer-maint at bugzilla.gnome.org
        ReportedBy: jmmv at menta.net
         QAContact: gstreamer-maint at bugzilla.gnome.org


The configure script in gst-plugin defines some standard arguments for libtool
(in the GST_PLUGIN_LDFLAGS variable), used to build all plugins.  One of these
arguments is -export-symbols-regex, used to determine which symbols should be
made public from the plugin.

The problem is that the regex used, which is parsed internally by libtool using
egrep, is not recognized by NetBSD's native grep(1) utility.  The neat result of
this is that _no_ symbols are exported from plugins.

The regex contains {gst_,Gst,GST_}, which is the block not recognized by grep
(it is beeing treated as a simple literal string).  As an example (using the
whole regex):

[dawn jmmv] $ echo '{gst_,Gst,GST_}foobar' | grep '[_]*{gst_,Gst,GST_}.*'
{gst_,Gst,GST_}foobar
[dawn jmmv] $ echo 'gst_' | grep '[_]*{gst_,Gst,GST_}.*'
[dawn jmmv] $

I've fixed it by changing the regex to '[_]*(gst_|Gst|GST_).*'.  Patch attached
for this.

[dawn jmmv] $ echo 'gst_foobar' | grep -E '[_]*(gst_|Gst|GST_).*'
gst_foobar


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are the QA contact for the bug, or are watching the QA contact.




More information about the Gstreamer-bugs mailing list