Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 2/2] gst-plugins-good: make new dependency-less plugins configurable
@ 2009-10-19 21:46 Sven Neumann
  2009-10-19 22:18 ` Markus Heidelberg
  0 siblings, 1 reply; 11+ messages in thread
From: Sven Neumann @ 2009-10-19 21:46 UTC (permalink / raw)
  To: buildroot

gst-plugins-good gained a number of dependency-less plugins with
the last update. This commit makes them configurable in buildroot.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
---
 package/multimedia/gst-plugins-good/Config.in      |   16 ++++++++-
 .../gst-plugins-good/gst-plugins-good.mk           |   32 +++++++++++++++++--
 2 files changed, 42 insertions(+), 6 deletions(-)

diff --git a/package/multimedia/gst-plugins-good/Config.in b/package/multimedia/gst-plugins-good/Config.in
index b96f15d..fdb6646 100644
--- a/package/multimedia/gst-plugins-good/Config.in
+++ b/package/multimedia/gst-plugins-good/Config.in
@@ -61,8 +61,11 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AVI
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CUTTER
 	bool "cutter"
 
-config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUG
-	bool "debug"
+config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUGUTILS
+	bool "debugutils"
+
+config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEINTERLACE
+	bool "deinterlace"
 
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV
 	bool "effectv"
@@ -70,6 +73,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EQUALIZER
 	bool "equalizer"
 
+config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLV
+	bool "flv"
+
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX
 	bool "id3demux (*.mp3 audio)"
 
@@ -115,6 +121,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTP
 	bool "rtp"
 
+config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER
+	bool "rtpmanager"
+
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP
 	bool "rtsp"
 
@@ -143,6 +152,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPARSE
 	bool "wavparse (*.wav audio)"
 	default y
 
+config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4M
+	bool "y4m"
+
 comment "plugins with external dependencies"
 
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX
diff --git a/package/multimedia/gst-plugins-good/gst-plugins-good.mk b/package/multimedia/gst-plugins-good/gst-plugins-good.mk
index 4f4861b..5dcf64a 100644
--- a/package/multimedia/gst-plugins-good/gst-plugins-good.mk
+++ b/package/multimedia/gst-plugins-good/gst-plugins-good.mk
@@ -10,8 +10,8 @@ GST_PLUGINS_GOOD_LIBTOOL_PATCH = NO
 
 GST_PLUGINS_GOOD_CONF_OPT = \
 		$(DISABLE_NLS) \
+		--disable-debug \
 		--disable-examples \
-		--disable-directdraw \
 		--disable-directsound \
 		--disable-sunaudio \
 		--disable-osx_audio \
@@ -105,10 +105,16 @@ else
 GST_PLUGINS_GOOD_CONF_OPT += --disable-cutter
 endif
 
-ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUG),y)
-GST_PLUGINS_GOOD_CONF_OPT += --enable-debug
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUGUTILS),y)
+GST_PLUGINS_GOOD_CONF_OPT += --enable-debugutils
 else
-GST_PLUGINS_GOOD_CONF_OPT += --disable-debug
+GST_PLUGINS_GOOD_CONF_OPT += --disable-debugutils
+endif
+
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEINTERLACE),y)
+GST_PLUGINS_GOOD_CONF_OPT += --enable-deinterlace
+else
+GST_PLUGINS_GOOD_CONF_OPT += --disable-deinterlace
 endif
 
 ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV),y)
@@ -123,6 +129,12 @@ else
 GST_PLUGINS_GOOD_CONF_OPT += --disable-equalizer
 endif
 
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLV),y)
+GST_PLUGINS_GOOD_CONF_OPT += --enable-flv
+else
+GST_PLUGINS_GOOD_CONF_OPT += --disable-flv
+endif
+
 ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX),y)
 GST_PLUGINS_GOOD_CONF_OPT += --enable-id3demux
 else
@@ -213,6 +225,12 @@ else
 GST_PLUGINS_GOOD_CONF_OPT += --disable-rtp
 endif
 
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER),y)
+GST_PLUGINS_GOOD_CONF_OPT += --enable-rtpmanager
+else
+GST_PLUGINS_GOOD_CONF_OPT += --disable-rtpmanager
+endif
+
 ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP),y)
 GST_PLUGINS_GOOD_CONF_OPT += --enable-rtsp
 else
@@ -267,6 +285,12 @@ else
 GST_PLUGINS_GOOD_CONF_OPT += --disable-wavparse
 endif
 
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4m),y)
+GST_PLUGINS_GOOD_CONF_OPT += --enable-y4m
+else
+GST_PLUGINS_GOOD_CONF_OPT += --disable-y4m
+endif
+
 ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX),y)
 GST_PLUGINS_GOOD_CONF_OPT += --enable-annodex
 GST_PLUGINS_GOOD_DEPENDENCIES += libxml2
-- 
1.6.5

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/2] gst-plugins-good: make new dependency-less plugins configurable
  2009-10-19 21:46 [Buildroot] [PATCH 2/2] gst-plugins-good: make new dependency-less plugins configurable Sven Neumann
@ 2009-10-19 22:18 ` Markus Heidelberg
  2009-10-20 19:21   ` [Buildroot] [PATCH] " Sven Neumann
  0 siblings, 1 reply; 11+ messages in thread
From: Markus Heidelberg @ 2009-10-19 22:18 UTC (permalink / raw)
  To: buildroot

Sven Neumann, 19.10.2009:
> +config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4M
> +	bool "y4m"
> +

> +ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4m),y)

Typo: must be an uppercase M in Y4m.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH] gst-plugins-good: make new dependency-less plugins configurable
  2009-10-19 22:18 ` Markus Heidelberg
@ 2009-10-20 19:21   ` Sven Neumann
  2009-10-21  8:22     ` Peter Korsgaard
  0 siblings, 1 reply; 11+ messages in thread
From: Sven Neumann @ 2009-10-20 19:21 UTC (permalink / raw)
  To: buildroot

gst-plugins-good gained a number of dependency-less plugins with
the last update. This commit makes them configurable in buildroot.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
---
 package/multimedia/gst-plugins-good/Config.in      |   16 ++++++++-
 .../gst-plugins-good/gst-plugins-good.mk           |   32 +++++++++++++++++--
 2 files changed, 42 insertions(+), 6 deletions(-)

diff --git a/package/multimedia/gst-plugins-good/Config.in b/package/multimedia/gst-plugins-good/Config.in
index b96f15d..fdb6646 100644
--- a/package/multimedia/gst-plugins-good/Config.in
+++ b/package/multimedia/gst-plugins-good/Config.in
@@ -61,8 +61,11 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AVI
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CUTTER
 	bool "cutter"
 
-config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUG
-	bool "debug"
+config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUGUTILS
+	bool "debugutils"
+
+config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEINTERLACE
+	bool "deinterlace"
 
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV
 	bool "effectv"
@@ -70,6 +73,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EQUALIZER
 	bool "equalizer"
 
+config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLV
+	bool "flv"
+
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX
 	bool "id3demux (*.mp3 audio)"
 
@@ -115,6 +121,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTP
 	bool "rtp"
 
+config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER
+	bool "rtpmanager"
+
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP
 	bool "rtsp"
 
@@ -143,6 +152,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPARSE
 	bool "wavparse (*.wav audio)"
 	default y
 
+config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4M
+	bool "y4m"
+
 comment "plugins with external dependencies"
 
 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX
diff --git a/package/multimedia/gst-plugins-good/gst-plugins-good.mk b/package/multimedia/gst-plugins-good/gst-plugins-good.mk
index 4f4861b..7b6f02b 100644
--- a/package/multimedia/gst-plugins-good/gst-plugins-good.mk
+++ b/package/multimedia/gst-plugins-good/gst-plugins-good.mk
@@ -10,8 +10,8 @@ GST_PLUGINS_GOOD_LIBTOOL_PATCH = NO
 
 GST_PLUGINS_GOOD_CONF_OPT = \
 		$(DISABLE_NLS) \
+		--disable-debug \
 		--disable-examples \
-		--disable-directdraw \
 		--disable-directsound \
 		--disable-sunaudio \
 		--disable-osx_audio \
@@ -105,10 +105,16 @@ else
 GST_PLUGINS_GOOD_CONF_OPT += --disable-cutter
 endif
 
-ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUG),y)
-GST_PLUGINS_GOOD_CONF_OPT += --enable-debug
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUGUTILS),y)
+GST_PLUGINS_GOOD_CONF_OPT += --enable-debugutils
 else
-GST_PLUGINS_GOOD_CONF_OPT += --disable-debug
+GST_PLUGINS_GOOD_CONF_OPT += --disable-debugutils
+endif
+
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEINTERLACE),y)
+GST_PLUGINS_GOOD_CONF_OPT += --enable-deinterlace
+else
+GST_PLUGINS_GOOD_CONF_OPT += --disable-deinterlace
 endif
 
 ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV),y)
@@ -123,6 +129,12 @@ else
 GST_PLUGINS_GOOD_CONF_OPT += --disable-equalizer
 endif
 
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLV),y)
+GST_PLUGINS_GOOD_CONF_OPT += --enable-flv
+else
+GST_PLUGINS_GOOD_CONF_OPT += --disable-flv
+endif
+
 ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX),y)
 GST_PLUGINS_GOOD_CONF_OPT += --enable-id3demux
 else
@@ -213,6 +225,12 @@ else
 GST_PLUGINS_GOOD_CONF_OPT += --disable-rtp
 endif
 
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER),y)
+GST_PLUGINS_GOOD_CONF_OPT += --enable-rtpmanager
+else
+GST_PLUGINS_GOOD_CONF_OPT += --disable-rtpmanager
+endif
+
 ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP),y)
 GST_PLUGINS_GOOD_CONF_OPT += --enable-rtsp
 else
@@ -267,6 +285,12 @@ else
 GST_PLUGINS_GOOD_CONF_OPT += --disable-wavparse
 endif
 
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4M),y)
+GST_PLUGINS_GOOD_CONF_OPT += --enable-y4m
+else
+GST_PLUGINS_GOOD_CONF_OPT += --disable-y4m
+endif
+
 ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX),y)
 GST_PLUGINS_GOOD_CONF_OPT += --enable-annodex
 GST_PLUGINS_GOOD_DEPENDENCIES += libxml2
-- 
1.6.5

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH] gst-plugins-good: make new dependency-less plugins configurable
  2009-10-20 19:21   ` [Buildroot] [PATCH] " Sven Neumann
@ 2009-10-21  8:22     ` Peter Korsgaard
  2009-10-21  9:05       ` Sven Neumann
  0 siblings, 1 reply; 11+ messages in thread
From: Peter Korsgaard @ 2009-10-21  8:22 UTC (permalink / raw)
  To: buildroot

>>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes:

 Sven> gst-plugins-good gained a number of dependency-less plugins with
 Sven> the last update. This commit makes them configurable in buildroot.

 Sven>  GST_PLUGINS_GOOD_CONF_OPT = \
 Sven>  		$(DISABLE_NLS) \
 Sven> +		--disable-debug \
 Sven>  		--disable-examples \
 Sven> -		--disable-directdraw \

Why?

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH] gst-plugins-good: make new dependency-less plugins configurable
  2009-10-21  8:22     ` Peter Korsgaard
@ 2009-10-21  9:05       ` Sven Neumann
  2009-10-21 11:27         ` Peter Korsgaard
  0 siblings, 1 reply; 11+ messages in thread
From: Sven Neumann @ 2009-10-21  9:05 UTC (permalink / raw)
  To: buildroot

On Wed, 2009-10-21 at 10:22 +0200, Peter Korsgaard wrote:
> >>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes:
> 
>  Sven> gst-plugins-good gained a number of dependency-less plugins with
>  Sven> the last update. This commit makes them configurable in buildroot.
> 
>  Sven>  GST_PLUGINS_GOOD_CONF_OPT = \
>  Sven>  		$(DISABLE_NLS) \
>  Sven> +		--disable-debug \
>  Sven>  		--disable-examples \
>  Sven> -		--disable-directdraw \

Hmm, perhaps directdraw should become an option as well, but I thought
it's not really interesting for the buildroot target audience.

--disable-debug should perhaps be configurable or depend on
BR2_ENABLE_DEBUG ?


Sven

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH] gst-plugins-good: make new dependency-less plugins configurable
  2009-10-21  9:05       ` Sven Neumann
@ 2009-10-21 11:27         ` Peter Korsgaard
  2009-10-21 17:14           ` Sven Neumann
  0 siblings, 1 reply; 11+ messages in thread
From: Peter Korsgaard @ 2009-10-21 11:27 UTC (permalink / raw)
  To: buildroot

>>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes:

 Sven> GST_PLUGINS_GOOD_CONF_OPT = \
 Sven> $(DISABLE_NLS) \
 Sven> +		--disable-debug \
 Sven> --disable-examples \
 Sven> -		--disable-directdraw \

 Sven> Hmm, perhaps directdraw should become an option as well, but I thought
 Sven> it's not really interesting for the buildroot target audience.

Is that directdraw as in the component of Microsoft DirectX? That indeed
doesn't seem like something we would want to enable. Why did you remove
the line?

 Sven> --disable-debug should perhaps be configurable or depend on
 Sven> BR2_ENABLE_DEBUG ?

That might be an idea, yes.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH] gst-plugins-good: make new dependency-less plugins configurable
  2009-10-21 11:27         ` Peter Korsgaard
@ 2009-10-21 17:14           ` Sven Neumann
  2009-10-21 21:04             ` Markus Heidelberg
  2009-10-21 21:06             ` Peter Korsgaard
  0 siblings, 2 replies; 11+ messages in thread
From: Sven Neumann @ 2009-10-21 17:14 UTC (permalink / raw)
  To: buildroot

On Wed, 2009-10-21 at 13:27 +0200, Peter Korsgaard wrote:
> >>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes:
> 
>  Sven> GST_PLUGINS_GOOD_CONF_OPT = \
>  Sven> $(DISABLE_NLS) \
>  Sven> +		--disable-debug \
>  Sven> --disable-examples \
>  Sven> -		--disable-directdraw \
> 
>  Sven> Hmm, perhaps directdraw should become an option as well, but I thought
>  Sven> it's not really interesting for the buildroot target audience.
> 
> Is that directdraw as in the component of Microsoft DirectX? That indeed
> doesn't seem like something we would want to enable. Why did you remove
> the line?

Ah right, now I rememeber. It is not any longer a valid configure option
for the new release. So I removed it.


Sven

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH] gst-plugins-good: make new dependency-less plugins configurable
  2009-10-21 17:14           ` Sven Neumann
@ 2009-10-21 21:04             ` Markus Heidelberg
  2009-10-21 21:12               ` Peter Korsgaard
  2009-10-21 21:06             ` Peter Korsgaard
  1 sibling, 1 reply; 11+ messages in thread
From: Markus Heidelberg @ 2009-10-21 21:04 UTC (permalink / raw)
  To: buildroot

Sven Neumann, 21.10.2009:
> On Wed, 2009-10-21 at 13:27 +0200, Peter Korsgaard wrote:
> > >>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes:
> > 
> >  Sven> GST_PLUGINS_GOOD_CONF_OPT = \
> >  Sven> $(DISABLE_NLS) \
> >  Sven> +		--disable-debug \
> >  Sven> --disable-examples \
> >  Sven> -		--disable-directdraw \
> > 
> >  Sven> Hmm, perhaps directdraw should become an option as well, but I thought
> >  Sven> it's not really interesting for the buildroot target audience.
> > 
> > Is that directdraw as in the component of Microsoft DirectX? That indeed
> > doesn't seem like something we would want to enable. Why did you remove
> > the line?
> 
> Ah right, now I rememeber. It is not any longer a valid configure option
> for the new release. So I removed it.

Yes, directdraw moved from gst-plugins-good to gst-plugins-bad.
Would be nice to add this to the commit message then as well as the
rename from debug to debugutils to avoid confusion.

Markus

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH] gst-plugins-good: make new dependency-less plugins configurable
  2009-10-21 17:14           ` Sven Neumann
  2009-10-21 21:04             ` Markus Heidelberg
@ 2009-10-21 21:06             ` Peter Korsgaard
  1 sibling, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2009-10-21 21:06 UTC (permalink / raw)
  To: buildroot

>>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes:

Hi,

 >> Is that directdraw as in the component of Microsoft DirectX? That indeed
 >> doesn't seem like something we would want to enable. Why did you remove
 >> the line?

 Sven> Ah right, now I rememeber. It is not any longer a valid configure
 Sven> option for the new release. So I removed it.

Ok, committed - Thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH] gst-plugins-good: make new dependency-less plugins configurable
  2009-10-21 21:04             ` Markus Heidelberg
@ 2009-10-21 21:12               ` Peter Korsgaard
  2009-10-21 21:15                 ` Sven Neumann
  0 siblings, 1 reply; 11+ messages in thread
From: Peter Korsgaard @ 2009-10-21 21:12 UTC (permalink / raw)
  To: buildroot

>>>>> "Markus" == Markus Heidelberg <markus.heidelberg@web.de> writes:

Hi,

 >> Ah right, now I rememeber. It is not any longer a valid configure
 >> option for the new release. So I removed it.

 Markus> Yes, directdraw moved from gst-plugins-good to gst-plugins-bad.
 Markus> Would be nice to add this to the commit message then as well as
 Markus> the rename from debug to debugutils to avoid confusion.

I agree, but I already committed and pushed that one - For next time
please.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH] gst-plugins-good: make new dependency-less plugins configurable
  2009-10-21 21:12               ` Peter Korsgaard
@ 2009-10-21 21:15                 ` Sven Neumann
  0 siblings, 0 replies; 11+ messages in thread
From: Sven Neumann @ 2009-10-21 21:15 UTC (permalink / raw)
  To: buildroot

On Wed, 2009-10-21 at 23:12 +0200, Peter Korsgaard wrote:
> >>>>> "Markus" == Markus Heidelberg <markus.heidelberg@web.de> writes:
>  Markus> Yes, directdraw moved from gst-plugins-good to gst-plugins-bad.
>  Markus> Would be nice to add this to the commit message then as well as
>  Markus> the rename from debug to debugutils to avoid confusion.
> 
> I agree, but I already committed and pushed that one - For next time
> please.

I'll send a patch for gst-plugins-bad soon and will try to be more
careful about the commit messages. Thanks for your review.


Sven

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2009-10-21 21:15 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-19 21:46 [Buildroot] [PATCH 2/2] gst-plugins-good: make new dependency-less plugins configurable Sven Neumann
2009-10-19 22:18 ` Markus Heidelberg
2009-10-20 19:21   ` [Buildroot] [PATCH] " Sven Neumann
2009-10-21  8:22     ` Peter Korsgaard
2009-10-21  9:05       ` Sven Neumann
2009-10-21 11:27         ` Peter Korsgaard
2009-10-21 17:14           ` Sven Neumann
2009-10-21 21:04             ` Markus Heidelberg
2009-10-21 21:12               ` Peter Korsgaard
2009-10-21 21:15                 ` Sven Neumann
2009-10-21 21:06             ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox