diff options
author | Benjamin Otte <otte@gnome.org> | 2004-04-04 23:00:03 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-04-04 23:00:03 +0000 |
commit | cf74f490456e42cf8e5ae167e712fa376a9363c3 (patch) | |
tree | 7780145dbef6abaf2a655ee955dc37733d1cf202 /configure.ac | |
parent | f5b39e877d0e52d8205cd0120dcca07635f224c7 (diff) |
configure.ac: fix --export-symblos-regex to a working regex.
Original commit message from CVS:
reviewed by Benjamin Otte <otte@gnome.org>
* configure.ac:
fix --export-symblos-regex to a working regex.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index fb95e7dd..d3b3b3b5 100644 --- a/configure.ac +++ b/configure.ac @@ -328,7 +328,7 @@ dnl =========================================================================== plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR" AC_SUBST(plugindir) -GST_PLUGIN_LDFLAGS='-module -avoid-version -export-symbols-regex [_]*{gst_,Gst,GST_}.*' +GST_PLUGIN_LDFLAGS='-module -avoid-version -export-symbols-regex [_]*\(gst_\|Gst\|GST_\).*' AC_SUBST(GST_PLUGIN_LDFLAGS) dnl these are all the gst plug-ins, compilable without additional libs |