Tunneling support is gone upstream, so drop the patch and add
Config.in.legacy handling for the option.
Celt051 is no longer a hard dependency, and opus is a new optional
dependency, so adjust the dependencies to match.
Python / pyparsing are not needed as the tarball contains the generated
files (this should presumably have been host-python in the first place as
these are used at build time), but we need a small workaround to convince
configure that they really aren't needed.
Alsa-lib is only needed for client support, and the configure script checks
for X11/Xext/Xrender, so adjust the dependencies to match.
A user manual is now generated by default if asciidoc is available, so
explicitly disable that.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit 6f2c022023)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
60 lines
1.7 KiB
Plaintext
60 lines
1.7 KiB
Plaintext
comment "spice server needs a toolchain w/ wchar, threads"
|
|
depends on BR2_i386 || BR2_x86_64
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_SPICE
|
|
bool "spice server"
|
|
depends on BR2_i386 || BR2_x86_64
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
select BR2_PACKAGE_JPEG
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_PIXMAN
|
|
select BR2_PACKAGE_SPICE_PROTOCOL
|
|
help
|
|
The Spice project aims to provide a complete open source
|
|
solution for interaction with virtualized desktop devices.
|
|
The Spice project deals with both the virtualized devices
|
|
and the front-end. Interaction between front-end and
|
|
back-end is done using VD-Interfaces.
|
|
|
|
This package implements the server-part of Spice.
|
|
|
|
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
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
select BR2_PACKAGE_XLIB_LIBXFIXES
|
|
select BR2_PACKAGE_XLIB_LIBXRANDR
|
|
select BR2_PACKAGE_XLIB_LIBX11
|
|
select BR2_PACKAGE_XLIB_LIBXEXT
|
|
select BR2_PACKAGE_XLIB_LIBXRENDER
|
|
select BR2_PACKAGE_ALSA_LIB
|
|
|
|
comment "client needs a toolchain w/ threads, C++"
|
|
depends on BR2_PACKAGE_XORG7
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
|
|
|
|
config BR2_PACKAGE_SPICE_GUI
|
|
bool "Enable GUI"
|
|
depends on BR2_PACKAGE_SPICE_CLIENT
|
|
depends on !BR2_STATIC_LIBS
|
|
select BR2_PACKAGE_CEGUI06
|
|
help
|
|
Say 'y' here to enable the Graphical User Interface (GUI)
|
|
start dialog.
|
|
|
|
comment "gui needs a toolchain w/ dynamic library"
|
|
depends on BR2_STATIC_LIBS
|
|
|
|
endif # BR2_PACKAGE_SPICE
|