Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] package/pipewire: fix comment in Config.in
@ 2019-12-19 19:27 Fabrice Fontaine
  2019-12-19 19:28 ` [Buildroot] [PATCH 2/3] package/pipewire: add libva optional dependency Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2019-12-19 19:27 UTC (permalink / raw)
  To: buildroot

Commit ac92146ebb7627378c0a8c92f6490e55333eb6bb forgot to update
comment with udev dependency

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/pipewire/Config.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/pipewire/Config.in b/package/pipewire/Config.in
index 80e28d3614..57e70d65f8 100644
--- a/package/pipewire/Config.in
+++ b/package/pipewire/Config.in
@@ -30,6 +30,6 @@ comment "pipewire gstreamer support needs a toolchain w/ wchar, threads"
 
 endif
 
-comment "pipewire needs a toolchain w/ threads"
+comment "pipewire needs udev and a toolchain w/ threads"
 	depends on BR2_USE_MMU
-	depends on !BR2_TOOLCHAIN_HAS_THREADS
+	depends on !BR2_PACKAGE_HAS_UDEV || !BR2_TOOLCHAIN_HAS_THREADS
-- 
2.24.0

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

* [Buildroot] [PATCH 2/3] package/pipewire: add libva optional dependency
  2019-12-19 19:27 [Buildroot] [PATCH 1/3] package/pipewire: fix comment in Config.in Fabrice Fontaine
@ 2019-12-19 19:28 ` Fabrice Fontaine
  2019-12-19 19:28 ` [Buildroot] [PATCH 3/3] package/pipewire: add xlib_libX11 " Fabrice Fontaine
  2019-12-21 22:14 ` [Buildroot] [PATCH 1/3] package/pipewire: fix comment in Config.in Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2019-12-19 19:28 UTC (permalink / raw)
  To: buildroot

libva is an optional dependency of spa, see:
https://github.com/PipeWire/pipewire/blob/0.2.7/spa/meson.build

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/pipewire/pipewire.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/pipewire/pipewire.mk b/package/pipewire/pipewire.mk
index ed98ff7f3b..aa3fdc489d 100644
--- a/package/pipewire/pipewire.mk
+++ b/package/pipewire/pipewire.mk
@@ -15,6 +15,10 @@ ifeq ($(BR2_PACKAGE_FFMPEG),y)
 PIPEWIRE_DEPENDENCIES += ffmpeg
 endif
 
+ifeq ($(BR2_PACKAGE_LIBVA),y)
+PIPEWIRE_DEPENDENCIES += libva
+endif
+
 ifeq ($(BR2_PACKAGE_SBC),y)
 PIPEWIRE_DEPENDENCIES += sbc
 endif
-- 
2.24.0

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

* [Buildroot] [PATCH 3/3] package/pipewire: add xlib_libX11 optional dependency
  2019-12-19 19:27 [Buildroot] [PATCH 1/3] package/pipewire: fix comment in Config.in Fabrice Fontaine
  2019-12-19 19:28 ` [Buildroot] [PATCH 2/3] package/pipewire: add libva optional dependency Fabrice Fontaine
@ 2019-12-19 19:28 ` Fabrice Fontaine
  2019-12-21 22:14 ` [Buildroot] [PATCH 1/3] package/pipewire: fix comment in Config.in Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2019-12-19 19:28 UTC (permalink / raw)
  To: buildroot

xlib_libX11 is an optional dependeny of spa, see:
https://github.com/PipeWire/pipewire/blob/0.2.7/spa/meson.build

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/pipewire/pipewire.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/pipewire/pipewire.mk b/package/pipewire/pipewire.mk
index aa3fdc489d..df159c5ef4 100644
--- a/package/pipewire/pipewire.mk
+++ b/package/pipewire/pipewire.mk
@@ -27,6 +27,10 @@ ifeq ($(BR2_PACKAGE_SDL2),y)
 PIPEWIRE_DEPENDENCIES += sdl2
 endif
 
+ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
+PIPEWIRE_DEPENDENCIES += xlib_libX11
+endif
+
 ifeq ($(BR2_PACKAGE_PIPEWIRE_GSTREAMER),y)
 PIPEWIRE_CONF_OPTS += -Dgstreamer=enabled
 PIPEWIRE_DEPENDENCIES += libglib2 gstreamer1 gst1-plugins-base
-- 
2.24.0

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

* [Buildroot] [PATCH 1/3] package/pipewire: fix comment in Config.in
  2019-12-19 19:27 [Buildroot] [PATCH 1/3] package/pipewire: fix comment in Config.in Fabrice Fontaine
  2019-12-19 19:28 ` [Buildroot] [PATCH 2/3] package/pipewire: add libva optional dependency Fabrice Fontaine
  2019-12-19 19:28 ` [Buildroot] [PATCH 3/3] package/pipewire: add xlib_libX11 " Fabrice Fontaine
@ 2019-12-21 22:14 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2019-12-21 22:14 UTC (permalink / raw)
  To: buildroot

On Thu, 19 Dec 2019 20:27:59 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Commit ac92146ebb7627378c0a8c92f6490e55333eb6bb forgot to update
> comment with udev dependency
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/pipewire/Config.in | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Series applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2019-12-21 22:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-19 19:27 [Buildroot] [PATCH 1/3] package/pipewire: fix comment in Config.in Fabrice Fontaine
2019-12-19 19:28 ` [Buildroot] [PATCH 2/3] package/pipewire: add libva optional dependency Fabrice Fontaine
2019-12-19 19:28 ` [Buildroot] [PATCH 3/3] package/pipewire: add xlib_libX11 " Fabrice Fontaine
2019-12-21 22:14 ` [Buildroot] [PATCH 1/3] package/pipewire: fix comment in Config.in Thomas Petazzoni

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