diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2012-10-24 12:15:54 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-04-15 15:56:02 +0200 |
commit | ef182de45f2feee595ad52bda63adeb90fee8282 (patch) | |
tree | 9f06a8a10f65fa07e877680c6097f9b4c87d23c2 /ext | |
parent | 12ad2c0e7d9940205a10db2108613ae9b0aeff93 (diff) |
gst: Add better support for static plugins
Diffstat (limited to 'ext')
-rw-r--r-- | ext/a52dec/Makefile.am | 2 | ||||
-rw-r--r-- | ext/amrnb/Makefile.am | 2 | ||||
-rw-r--r-- | ext/amrwbdec/Makefile.am | 2 | ||||
-rw-r--r-- | ext/cdio/Makefile.am | 2 | ||||
-rw-r--r-- | ext/dvdread/Makefile.am | 2 | ||||
-rw-r--r-- | ext/lame/Makefile.am | 2 | ||||
-rw-r--r-- | ext/mad/Makefile.am | 2 | ||||
-rw-r--r-- | ext/mpeg2dec/Makefile.am | 2 | ||||
-rw-r--r-- | ext/sidplay/Makefile.am | 2 | ||||
-rw-r--r-- | ext/twolame/Makefile.am | 2 | ||||
-rw-r--r-- | ext/x264/Makefile.am | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/ext/a52dec/Makefile.am b/ext/a52dec/Makefile.am index 65c4d266..6a43121e 100644 --- a/ext/a52dec/Makefile.am +++ b/ext/a52dec/Makefile.am @@ -15,6 +15,6 @@ libgsta52dec_la_LIBADD = \ $(ORC_LIBS) \ $(A52DEC_LIBS) libgsta52dec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgsta52dec_la_LIBTOOLFLAGS = --tag=disable-static +libgsta52dec_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = gsta52dec.h diff --git a/ext/amrnb/Makefile.am b/ext/amrnb/Makefile.am index 6c7edfbb..283f54d0 100644 --- a/ext/amrnb/Makefile.am +++ b/ext/amrnb/Makefile.am @@ -11,7 +11,7 @@ libgstamrnb_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \ -lgstaudio-@GST_API_VERSION@ \ $(GST_BASE_LIBS) $(GST_LIBS) $(AMRNB_LIBS) libgstamrnb_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstamrnb_la_LIBTOOLFLAGS = --tag=disable-static +libgstamrnb_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = \ amrnbdec.h \ diff --git a/ext/amrwbdec/Makefile.am b/ext/amrwbdec/Makefile.am index 1ed02009..aef29846 100644 --- a/ext/amrwbdec/Makefile.am +++ b/ext/amrwbdec/Makefile.am @@ -11,7 +11,7 @@ libgstamrwbdec_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \ -lgstaudio-@GST_API_VERSION@ \ $(GST_LIBS) $(AMRWB_LIBS) libgstamrwbdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstamrwbdec_la_LIBTOOLFLAGS = --tag=disable-static +libgstamrwbdec_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = \ amrwbdec.h diff --git a/ext/cdio/Makefile.am b/ext/cdio/Makefile.am index e4865d18..bd8f4222 100644 --- a/ext/cdio/Makefile.am +++ b/ext/cdio/Makefile.am @@ -16,7 +16,7 @@ libgstcdio_la_LIBADD = \ $(CDIO_LIBS) libgstcdio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstcdio_la_LIBTOOLFLAGS = --tag=disable-static +libgstcdio_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = \ gstcdio.h \ diff --git a/ext/dvdread/Makefile.am b/ext/dvdread/Makefile.am index d5c9bac0..30b4ba35 100644 --- a/ext/dvdread/Makefile.am +++ b/ext/dvdread/Makefile.am @@ -5,7 +5,7 @@ libgstdvdread_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(DVDREAD_CFLAGS) libgstdvdread_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) \ $(GMODULE_NO_EXPORT_LIBS) $(DVDREAD_LIBS) libgstdvdread_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstdvdread_la_LIBTOOLFLAGS = --tag=disable-static +libgstdvdread_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = dvdreadsrc.h diff --git a/ext/lame/Makefile.am b/ext/lame/Makefile.am index 7cacf2a4..c7124dd1 100644 --- a/ext/lame/Makefile.am +++ b/ext/lame/Makefile.am @@ -6,6 +6,6 @@ libgstlame_la_CFLAGS = \ libgstlame_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \ $(GST_BASE_LIBS) $(GST_LIBS) $(LAME_LIBS) libgstlame_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstlame_la_LIBTOOLFLAGS = --tag=disable-static +libgstlame_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = gstlamemp3enc.h diff --git a/ext/mad/Makefile.am b/ext/mad/Makefile.am index 097b864a..ca796d66 100644 --- a/ext/mad/Makefile.am +++ b/ext/mad/Makefile.am @@ -9,7 +9,7 @@ libgstmad_la_LIBADD = \ $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \ $(GST_BASE_LIBS) $(GST_LIBS) $(MAD_LIBS) libgstmad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstmad_la_LIBTOOLFLAGS = --tag=disable-static +libgstmad_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = gstmad.h diff --git a/ext/mpeg2dec/Makefile.am b/ext/mpeg2dec/Makefile.am index bf0a4ea2..593e2c3f 100644 --- a/ext/mpeg2dec/Makefile.am +++ b/ext/mpeg2dec/Makefile.am @@ -6,6 +6,6 @@ libgstmpeg2dec_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \ libgstmpeg2dec_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \ $(GST_LIBS) $(MPEG2DEC_LIBS) libgstmpeg2dec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstmpeg2dec_la_LIBTOOLFLAGS = --tag=disable-static +libgstmpeg2dec_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = gstmpeg2dec.h diff --git a/ext/sidplay/Makefile.am b/ext/sidplay/Makefile.am index 47e51ee4..d44b227f 100644 --- a/ext/sidplay/Makefile.am +++ b/ext/sidplay/Makefile.am @@ -6,6 +6,6 @@ libgstsid_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \ libgstsid_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) $(SIDPLAY_LIBS) \ -lgstaudio-$(GST_API_VERSION) libgstsid_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstsid_la_LIBTOOLFLAGS = --tag=disable-static +libgstsid_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = gstsiddec.h diff --git a/ext/twolame/Makefile.am b/ext/twolame/Makefile.am index 75035153..b6de82c1 100644 --- a/ext/twolame/Makefile.am +++ b/ext/twolame/Makefile.am @@ -7,6 +7,6 @@ libgsttwolame_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \ -lgstaudio-@GST_API_VERSION@ -lgstpbutils-@GST_API_VERSION@ \ $(GST_LIBS) $(TWOLAME_LIBS) libgsttwolame_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgsttwolame_la_LIBTOOLFLAGS = --tag=disable-static +libgsttwolame_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = gsttwolamemp2enc.h diff --git a/ext/x264/Makefile.am b/ext/x264/Makefile.am index f69c9b13..aae96032 100644 --- a/ext/x264/Makefile.am +++ b/ext/x264/Makefile.am @@ -12,7 +12,7 @@ libgstx264_la_LIBADD = \ $(GST_LIBS) \ $(X264_LIBS) libgstx264_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstx264_la_LIBTOOLFLAGS = --tag=disable-static +libgstx264_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = gstx264enc.h |