ee59023794
- Remove patch (already in version)
- autotools is no more available, switch to cmake
- Disable ffmpeg (used for example)
- Add LZO dependency (to avoid using internal LZO) through the new
WITH_LZO option added by
139da17b6e
- Add hash for license file
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
548 B
Plaintext
25 lines
548 B
Plaintext
config BR2_PACKAGE_LIBVNCSERVER
|
|
bool "libvncserver"
|
|
depends on BR2_USE_MMU # VNCommand.c uses fork()
|
|
# binutils issue (bad expression)
|
|
depends on !BR2_nios2
|
|
select BR2_PACKAGE_LZO
|
|
help
|
|
libvncserver is a VNC server/client library.
|
|
|
|
https://libvnc.github.io/
|
|
|
|
if BR2_PACKAGE_LIBVNCSERVER
|
|
|
|
config BR2_PACKAGE_LIBVNCSERVER_TIGHTPNG
|
|
bool "TightPNG encoding support"
|
|
select BR2_PACKAGE_JPEG
|
|
select BR2_PACKAGE_LIBPNG
|
|
help
|
|
TightPNG encoding speeds up HTML5 based VNC clients like
|
|
noVNC.
|
|
|
|
http://wiki.qemu.org/VNC_Tight_PNG
|
|
|
|
endif
|