mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-31 15:07:43 +00:00
package/spice: enable client
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
93d4e38450
commit
a872142c2f
@ -21,3 +21,16 @@ config BR2_PACKAGE_SPICE
|
|||||||
This package implements the server-part of Spice.
|
This package implements the server-part of Spice.
|
||||||
|
|
||||||
http://www.spice-space.org/
|
http://www.spice-space.org/
|
||||||
|
|
||||||
|
if BR2_PACKAGE_SPICE
|
||||||
|
|
||||||
|
comment "client depends on X.org"
|
||||||
|
depends on !BR2_PACKAGE_XORG7
|
||||||
|
|
||||||
|
config BR2_PACKAGE_SPICE_CLIENT
|
||||||
|
bool "Enable client"
|
||||||
|
depends on BR2_PACKAGE_XORG7
|
||||||
|
select BR2_PACKAGE_XLIB_LIBXFIXES
|
||||||
|
select BR2_PACKAGE_XLIB_LIBXRANDR
|
||||||
|
|
||||||
|
endif # BR2_PACKAGE_SPICE
|
||||||
|
@ -26,12 +26,18 @@ SPICE_CONF_OPT = \
|
|||||||
--disable-gui \
|
--disable-gui \
|
||||||
--disable-opengl \
|
--disable-opengl \
|
||||||
--disable-smartcard \
|
--disable-smartcard \
|
||||||
--disable-client \
|
|
||||||
--disable-automated-tests \
|
--disable-automated-tests \
|
||||||
--without-sasl \
|
--without-sasl \
|
||||||
|
|
||||||
SPICE_DEPENDENCIES += host-pkgconf
|
SPICE_DEPENDENCIES += host-pkgconf
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_SPICE_CLIENT),y)
|
||||||
|
SPICE_CONF_OPT += --enable-client
|
||||||
|
SPICE_DEPENDENCIES += xlib_libXfixes xlib_libXrandr
|
||||||
|
else
|
||||||
|
SPICE_CONF_OPT += --disable-client
|
||||||
|
endif
|
||||||
|
|
||||||
SPICE_CONF_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages
|
SPICE_CONF_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages
|
||||||
SPICE_MAKE_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages
|
SPICE_MAKE_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user