* [Buildroot] [PATCH] gst-plugins-bad: make more dependency-less plugins configurable
@ 2009-12-03 22:34 Sven Neumann
2009-12-03 23:38 ` Lionel Landwerlin
2009-12-08 13:52 ` Peter Korsgaard
0 siblings, 2 replies; 5+ messages in thread
From: Sven Neumann @ 2009-12-03 22:34 UTC (permalink / raw)
To: buildroot
The latest update added a few new plugins that were missing from
the buildroot configuration system. This commit makes these
dependency-less plugins configurable.
Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
---
package/multimedia/gst-plugins-bad/Config.in | 12 ++++++++++
.../multimedia/gst-plugins-bad/gst-plugins-bad.mk | 24 ++++++++++++++++++++
2 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/package/multimedia/gst-plugins-bad/Config.in b/package/multimedia/gst-plugins-bad/Config.in
index 8601cf4..c7ebe2a 100644
--- a/package/multimedia/gst-plugins-bad/Config.in
+++ b/package/multimedia/gst-plugins-bad/Config.in
@@ -21,6 +21,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AIFFPARSE
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AMRPARSE
bool "amrparse"
+config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ASFMUX
+ bool "asfmux"
+
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT
bool "autoconvert"
@@ -54,9 +57,15 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FESTIVAL
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEZE
bool "freeze"
+config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREI0R
+ bool "frei0r"
+
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE
bool "h264parse"
+config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HDVPARSE
+ bool "hdvparse"
+
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB
bool "librfb"
@@ -114,6 +123,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDP
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SELECTOR
bool "selector"
+config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SHAPEWIPE
+ bool "shapewipe"
+
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN
bool "siren"
diff --git a/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk b/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk
index c6c5fd0..9a0955f 100644
--- a/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk
+++ b/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk
@@ -33,6 +33,12 @@ else
GST_PLUGINS_BAD_CONF_OPT += --disable-amrparse
endif
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ASFMUX),y)
+GST_PLUGINS_BAD_CONF_OPT += --enable-asfmux
+else
+GST_PLUGINS_BAD_CONF_OPT += --disable-asfmux
+endif
+
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-autoconvert
else
@@ -99,12 +105,24 @@ else
GST_PLUGINS_BAD_CONF_OPT += --disable-freeze
endif
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREI0R),y)
+GST_PLUGINS_BAD_CONF_OPT += --enable-frei0r
+else
+GST_PLUGINS_BAD_CONF_OPT += --disable-frei0r
+endif
+
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-h264parse
else
GST_PLUGINS_BAD_CONF_OPT += --disable-h264parse
endif
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HDVPARSE),y)
+GST_PLUGINS_BAD_CONF_OPT += --enable-hdvparse
+else
+GST_PLUGINS_BAD_CONF_OPT += --disable-hdvparse
+endif
+
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-librfb
else
@@ -219,6 +237,12 @@ else
GST_PLUGINS_BAD_CONF_OPT += --disable-selector
endif
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SHAPEWIPE),y)
+GST_PLUGINS_BAD_CONF_OPT += --enable-shapewipe
+else
+GST_PLUGINS_BAD_CONF_OPT += --disable-shapewipe
+endif
+
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-siren
else
--
1.6.5.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] gst-plugins-bad: make more dependency-less plugins configurable
2009-12-03 22:34 [Buildroot] [PATCH] gst-plugins-bad: make more dependency-less plugins configurable Sven Neumann
@ 2009-12-03 23:38 ` Lionel Landwerlin
2009-12-08 13:52 ` Peter Korsgaard
1 sibling, 0 replies; 5+ messages in thread
From: Lionel Landwerlin @ 2009-12-03 23:38 UTC (permalink / raw)
To: buildroot
Hi Sven,
please consider theses patchs too :
http://lists.busybox.net/pipermail/buildroot/2009-November/030291.html
Regards,
--
Lionel
Le jeudi 03 d?cembre 2009 ? 23:34 +0100, Sven Neumann a ?crit :
> The latest update added a few new plugins that were missing from
> the buildroot configuration system. This commit makes these
> dependency-less plugins configurable.
>
> Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] gst-plugins-bad: make more dependency-less plugins configurable
2009-12-03 22:34 [Buildroot] [PATCH] gst-plugins-bad: make more dependency-less plugins configurable Sven Neumann
2009-12-03 23:38 ` Lionel Landwerlin
@ 2009-12-08 13:52 ` Peter Korsgaard
2009-12-08 14:21 ` [Buildroot] (no subject) Tom Wagner
1 sibling, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2009-12-08 13:52 UTC (permalink / raw)
To: buildroot
>>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes:
Sven> The latest update added a few new plugins that were missing from
Sven> the buildroot configuration system. This commit makes these
Sven> dependency-less plugins configurable.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] (no subject)
2009-12-08 13:52 ` Peter Korsgaard
@ 2009-12-08 14:21 ` Tom Wagner
2009-12-08 14:36 ` Michael S. Zick
0 siblings, 1 reply; 5+ messages in thread
From: Tom Wagner @ 2009-12-08 14:21 UTC (permalink / raw)
To: buildroot
Please remove my name from this list.
--------------------------------------------------
From: "Peter Korsgaard" <jacmet@uclibc.org>
Sent: Tuesday, December 08, 2009 7:52 AM
To: "Sven Neumann" <s.neumann@raumfeld.com>
Cc: <buildroot@busybox.net>
Subject: Re: [Buildroot] [PATCH] gst-plugins-bad: make more
dependency-lessplugins configurable
>>>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes:
>
> Sven> The latest update added a few new plugins that were missing from
> Sven> the buildroot configuration system. This commit makes these
> Sven> dependency-less plugins configurable.
>
> Committed, thanks.
>
> --
> Bye, Peter Korsgaard
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-12-08 14:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-03 22:34 [Buildroot] [PATCH] gst-plugins-bad: make more dependency-less plugins configurable Sven Neumann
2009-12-03 23:38 ` Lionel Landwerlin
2009-12-08 13:52 ` Peter Korsgaard
2009-12-08 14:21 ` [Buildroot] (no subject) Tom Wagner
2009-12-08 14:36 ` Michael S. Zick
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox