diff options
Diffstat (limited to 'package/spice/spice.mk')
-rw-r--r-- | package/spice/spice.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/spice/spice.mk b/package/spice/spice.mk index 2f7fc20d1..0a5c58e17 100644 --- a/package/spice/spice.mk +++ b/package/spice/spice.mk @@ -23,7 +23,6 @@ SPICE_DEPENDENCIES = \ # quite deep if we try to enable some features, and I have not tested that. SPICE_CONF_OPT = \ --disable-tunnel \ - --disable-gui \ --disable-opengl \ --disable-smartcard \ --disable-automated-tests \ @@ -38,6 +37,13 @@ else SPICE_CONF_OPT += --disable-client endif +ifeq ($(BR2_PACKAGE_SPICE_GUI),y) +SPICE_CONF_OPT += --enable-gui +SPICE_DEPENDENCIES += cegui06 +else +SPICE_CONF_OPT += --disable-gui +endif + 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 |