Commit 5faf337b authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Peter Korsgaard
Browse files

package/spice: enable slirp support

parent af103acf
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -41,4 +41,11 @@ config BR2_PACKAGE_SPICE_GUI
	  Say 'y' here to enable the Graphical User Interface (GUI)
	  start dialog.

config BR2_PACKAGE_SPICE_TUNNEL
	bool "Enable network redirection"
	select BR2_PACKAGE_SLIRP
	help
	  Say 'y' here to enable network redirection, aka tunnelling
	  through a SLIP/SLIRP session.

endif # BR2_PACKAGE_SPICE
+7 −1
Original line number Diff line number Diff line
@@ -22,7 +22,6 @@ SPICE_DEPENDENCIES = \
# We disable everything for now, because the dependency tree can become
# quite deep if we try to enable some features, and I have not tested that.
SPICE_CONF_OPT =            \
  --disable-tunnel          \
  --disable-opengl          \
  --disable-smartcard       \
  --disable-automated-tests \
@@ -44,6 +43,13 @@ else
SPICE_CONF_OPT += --disable-gui
endif

ifeq ($(BR2_PACKAGE_SPICE_TUNNEL),y)
SPICE_CONF_OPT += --enable-tunnel
SPICE_DEPENDENCIES += slirp
else
SPICE_CONF_OPT += --disable-tunnel
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