diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2014-08-01 19:32:38 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-08-03 10:41:36 +0200 |
commit | fb34bf1230b80713bdaa9c920e5c3bb88896d2f5 (patch) | |
tree | ef4adfb40d4e7d4f3f61228d87a0d7c5897d6406 | |
parent | 713cedea06a0ffa440aa61be399fc23c4e81f0bf (diff) | |
download | buildroot-fb34bf1230b80713bdaa9c920e5c3bb88896d2f5.tar.gz buildroot-fb34bf1230b80713bdaa9c920e5c3bb88896d2f5.zip |
xbmc: Add option for Goom screensaver
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/xbmc/Config.in | 9 | ||||
-rw-r--r-- | package/xbmc/xbmc.mk | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/package/xbmc/Config.in b/package/xbmc/Config.in index 04bc86f6f2..6a00531e79 100644 --- a/package/xbmc/Config.in +++ b/package/xbmc/Config.in @@ -128,6 +128,15 @@ config BR2_PACKAGE_XBMC_LIBBLURAY comment "libbluray support needs a toolchain w/ dynamic library" depends on BR2_PREFER_STATIC_LIB +config BR2_PACKAGE_XBMC_GOOM + bool "goom screensaver" + depends on BR2_PACKAGE_XBMC_GL + help + Enable goom screensaver + +comment "goom needs an OpenGL backend" + depends on !BR2_PACKAGE_XBMC_GL + config BR2_PACKAGE_XBMC_LIBCEC bool "hdmi cec" depends on !BR2_PREFER_STATIC_LIB # libcec diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk index c868b59045..920d7315b6 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -109,6 +109,12 @@ XBMC_CONF_OPT += --disable-gles endif endif +ifeq ($(BR2_PACKAGE_XBMC_GOOM),y) +XBMC_CONF_OPT += --enable-goom +else +XBMC_CONF_OPT += --disable-goom +endif + ifeq ($(BR2_PACKAGE_XBMC_LIBUSB),y) XBMC_DEPENDENCIES += libusb-compat XBMC_CONF_OPT += --enable-libusb |