All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/xbmc: add option to enable libva
@ 2014-09-07 11:54 Bernd Kuhls
  2014-09-07 11:54 ` [Buildroot] [PATCH 2/2] package/xbmc: add option to enable alsa Bernd Kuhls
  2014-09-23 20:21 ` [Buildroot] [PATCH 1/2] package/xbmc: add option to enable libva Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2014-09-07 11:54 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/xbmc/Config.in |    7 +++++++
 package/xbmc/xbmc.mk   |    2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/package/xbmc/Config.in b/package/xbmc/Config.in
index ed0d4ed..3eda3b2 100644
--- a/package/xbmc/Config.in
+++ b/package/xbmc/Config.in
@@ -210,6 +210,13 @@ config BR2_PACKAGE_XBMC_LIBUSB
 	help
 	  Enable libusb support.
 
+config BR2_PACKAGE_XBMC_LIBVA
+	bool "va"
+	select BR2_PACKAGE_LIBVA
+	depends on !BR2_PREFER_STATIC_LIB
+	help
+	  Enable libva support.
+
 config BR2_PACKAGE_XBMC_WAVPACK
 	bool "wavpack"
 	select BR2_PACKAGE_WAVPACK
diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk
index 42320b8..75fc63b 100644
--- a/package/xbmc/xbmc.mk
+++ b/package/xbmc/xbmc.mk
@@ -193,7 +193,7 @@ XBMC_DEPENDENCIES += libtheora
 endif
 
 # xbmc needs libva & libva-glx
-ifeq ($(BR2_PACKAGE_LIBVA)$(BR2_PACKAGE_MESA3D_DRI_DRIVER),yy)
+ifeq ($(BR2_PACKAGE_XBMC_LIBVA)$(BR2_PACKAGE_MESA3D_DRI_DRIVER),yy)
 XBMC_DEPENDENCIES += mesa3d libva
 XBMC_CONF_OPT += --enable-vaapi
 else
-- 
1.7.10.4

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

* [Buildroot] [PATCH 2/2] package/xbmc: add option to enable alsa
  2014-09-07 11:54 [Buildroot] [PATCH 1/2] package/xbmc: add option to enable libva Bernd Kuhls
@ 2014-09-07 11:54 ` Bernd Kuhls
  2014-09-23 20:21 ` [Buildroot] [PATCH 1/2] package/xbmc: add option to enable libva Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Bernd Kuhls @ 2014-09-07 11:54 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/xbmc/Config.in |    6 ++++++
 package/xbmc/xbmc.mk   |    2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/xbmc/Config.in b/package/xbmc/Config.in
index 3eda3b2..2069dd5 100644
--- a/package/xbmc/Config.in
+++ b/package/xbmc/Config.in
@@ -103,6 +103,12 @@ menuconfig BR2_PACKAGE_XBMC
 
 if BR2_PACKAGE_XBMC
 
++config BR2_PACKAGE_XBMC_ALSA_LIB
+	bool "alsa"
+	select BR2_PACKAGE_ALSA_LIB
+	help
+	  Enable alsa support.
+
 config BR2_PACKAGE_XBMC_AVAHI
 	bool "avahi"
 	depends on !BR2_PREFER_STATIC_LIB # avahi
diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk
index 75fc63b..5d8199c 100644
--- a/package/xbmc/xbmc.mk
+++ b/package/xbmc/xbmc.mk
@@ -71,7 +71,7 @@ else
 XBMC_CONF_OPT += --disable-dbus
 endif
 
-ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
+ifeq ($(BR2_PACKAGE_XBMC_ALSA_LIB),y)
 XBMC_DEPENDENCIES += alsa-lib
 XBMC_CONF_OPT += --enable-alsa
 else
-- 
1.7.10.4

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

* [Buildroot] [PATCH 1/2] package/xbmc: add option to enable libva
  2014-09-07 11:54 [Buildroot] [PATCH 1/2] package/xbmc: add option to enable libva Bernd Kuhls
  2014-09-07 11:54 ` [Buildroot] [PATCH 2/2] package/xbmc: add option to enable alsa Bernd Kuhls
@ 2014-09-23 20:21 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2014-09-23 20:21 UTC (permalink / raw)
  To: buildroot

Dear Bernd Kuhls,

On Sun,  7 Sep 2014 13:54:35 +0200, Bernd Kuhls wrote:
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/xbmc/Config.in |    7 +++++++
>  package/xbmc/xbmc.mk   |    2 +-
>  2 files changed, 8 insertions(+), 1 deletion(-)

Applied, but I had to make one change, see below.

> 
> diff --git a/package/xbmc/Config.in b/package/xbmc/Config.in
> index ed0d4ed..3eda3b2 100644
> --- a/package/xbmc/Config.in
> +++ b/package/xbmc/Config.in
> @@ -210,6 +210,13 @@ config BR2_PACKAGE_XBMC_LIBUSB
>  	help
>  	  Enable libusb support.
>  
> +config BR2_PACKAGE_XBMC_LIBVA
> +	bool "va"
> +	select BR2_PACKAGE_LIBVA
> +	depends on !BR2_PREFER_STATIC_LIB

This option has a new toolchain dependency, but you forgot the
corresponding comment. I added it.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2014-09-23 20:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-07 11:54 [Buildroot] [PATCH 1/2] package/xbmc: add option to enable libva Bernd Kuhls
2014-09-07 11:54 ` [Buildroot] [PATCH 2/2] package/xbmc: add option to enable alsa Bernd Kuhls
2014-09-23 20:21 ` [Buildroot] [PATCH 1/2] package/xbmc: add option to enable libva Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.