GNOME Bugzilla – Bug 587023
[freeze] disable plugin static lib
Last modified: 2009-06-26 08:35:08 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
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.