summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2017-05-16 13:29:38 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2017-05-16 13:29:38 -0400
commitd143af2c77ea1cd0e634224d23f8de4f819767ab (patch)
treea3aba6a5df1057f20026897132130ef321163fc6 /plugins
parent2bf0a98bcd4e8af126725e1bd66fe41a04d4c330 (diff)
Remove plugin specific static build option
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/elements/Makefile.am1
-rw-r--r--plugins/elements/meson.build2
-rw-r--r--plugins/tracers/Makefile.am1
3 files changed, 1 insertions, 3 deletions
diff --git a/plugins/elements/Makefile.am b/plugins/elements/Makefile.am
index 3d11dbe11..1bbc35ff9 100644
--- a/plugins/elements/Makefile.am
+++ b/plugins/elements/Makefile.am
@@ -33,7 +33,6 @@ libgstcoreelements_la_LIBADD = \
$(top_builddir)/libs/gst/base/libgstbase-@GST_API_VERSION@.la \
$(GST_OBJ_LIBS)
libgstcoreelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
-libgstcoreelements_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
noinst_HEADERS = \
gstcapsfilter.h \
diff --git a/plugins/elements/meson.build b/plugins/elements/meson.build
index 9b0f4c8a0..abb2e2669 100644
--- a/plugins/elements/meson.build
+++ b/plugins/elements/meson.build
@@ -28,7 +28,7 @@ gst_elements_sources = [
if libtype != 'shared'
gst_elements_static = static_library('gstcoreelements',
gst_elements_sources,
- c_args : gst_c_args + ['-DGST_PLUGIN_BUILD_STATIC'],
+ c_args : gst_c_args,
include_directories : [configinc],
dependencies : [gobject_dep, glib_dep, gst_dep, gst_base_dep],
install : true,
diff --git a/plugins/tracers/Makefile.am b/plugins/tracers/Makefile.am
index d52bb28ba..975ca8b18 100644
--- a/plugins/tracers/Makefile.am
+++ b/plugins/tracers/Makefile.am
@@ -30,7 +30,6 @@ libgstcoretracers_la_LIBADD = \
$(GST_PRINTF_LA) \
$(GST_OBJ_LIBS)
libgstcoretracers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
-libgstcoretracers_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
noinst_HEADERS = \
gstlatency.h \