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 587023 - [freeze] disable plugin static lib
[freeze] disable plugin static lib
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
git master
Other Linux
: Normal trivial
: 0.10.14
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-06-26 08:19 UTC by Changwoo Ryu
Modified: 2009-06-26 08:35 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Changwoo Ryu 2009-06-26 08:19:25 UTC
The gst-plugins-bad source package builds/installs libgstfreeze.a unlike other plugins.

gst-plugins-bad/gst/freeze/Makefile.am needs --tag=disable-static libtool flag. Fix is trivial:


diff --git a/gst/freeze/Makefile.am b/gst/freeze/Makefile.am
index 525e476..9d07aa8 100644
--- a/gst/freeze/Makefile.am
+++ b/gst/freeze/Makefile.am
@@ -4,6 +4,7 @@ libgstfreeze_la_SOURCES	= gstfreeze.c
 libgstfreeze_la_CFLAGS	= $(GST_CFLAGS)
 libgstfreeze_la_LIBADD	= ${GST_LIBS}
 libgstfreeze_la_LDFLAGS	= $(GST_PLUGIN_LDFLAGS)
+libgstfreeze_la_LIBTOOLFLAGS = --tag=disable-static
 
 noinst_HEADERS		= gstfreeze.h
Comment 1 Tim-Philipp Müller 2009-06-26 08:35:08 UTC
Committed, thanks:

 commit 1ab8c008f3f013d671abb5544fad856976051a2b
 Author: Changwoo Ryu <cwryu@debian.org>
 Date:   Fri Jun 26 09:30:22 2009 +0100

    freeze: don't build plugin static lib
    
    Pass --tag=disable-static to libtool like we do for other plugins.
    Fixes #587023.