62572dbcdc
# 2020-06-13: Version 0.9.13 0.9.13 truly is a cross-platform release, the best we've ever done in that respect: Out of the [49 issues](https://github.com/LibVNC/libvncserver/issues?q=is%3Aclosed+milestone%3A%22Release+0.9.13%22) closed with this release, 20 alone were related to MS Windows. The result is that 0.9.13 is the first release with full support for Microsoft Windows! The cross-platform focused work did not end there tough: MacOS support was brought up from barebones to a fully working production-grade VNC server application. Other highlights are improvements regarding TLS in LibVNCClient, [SetDesktopSize](https://github.com/rfbproto/rfbproto/blob/master/rfbproto.rst#setdesktopsize) support in LibVNCServer and a major cleanup of the project's documentation. Last but not least, 0.9.13 comes with the usual assortment of bugfixes and security improvements. ## Overall changes: * Small tweaks to the CMake build system. * The macOS server example was overhauled and is now the most feature-complete sample application of the project, ready for real-world use. * Lots of documentation updates and markdownifying. * The TravisCI continuous integration now also build-checks cross-compilation from Linux to Windows. * Setup a [Gitter community chat](https://gitter.im/LibVNC/libvncserver) for the project. ## LibVNCServer/LibVNCClient: * Both LibVNCServer and LibVNCClient now support an additional platform, namely Microsoft Windows. Building is supported with Visual Studio as well as MingGW. * The separate crypto routines used by LibVNCClient and LibVNCServer were refactored into an implementation common to both libraries. * Several security issues got fixed. * The bundled noVNC client is now at version 1.1.0 and included via a git submodule. ## LibVNCClient: * Added connect timeout as well as read timeout support thanks to Tobias Junghans. * Both TLS backends now do proper locking of network operations when multi-threaded thanks to Gaurav Ujjwal. * Fixed regression in Tight/Raw decoding introduced in 0.9.12 thanks to DRC. * Fixed encrypted connections to AnonTLS servers when using the OpenSSL back-end. Made possible by the profound research done by Gaurav Ujjwal. ## LibVNCServer: * Added a hooking function (`clientFramebufferUpdateRequestHook`) to deliver rfbFramebufferUpdateRequest messages from clients to the frame producer thanks to Jae Hyun Yoo. * Added SetDesktopSize/ExtendedDesktopSize support thanks to Floris Bos. * Added multi-threading support for MS Windows. * Fixed VNC repeater/proxy functionality that was broken in 0.9.12. * Fixed unstable WebSockets connections thanks to Sebastian Kranz.
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.34 2020/12/18 23:25:59 nia Exp $
|
|
#
|
|
|
|
DISTNAME= libvncserver-LibVNCServer-0.9.13
|
|
PKGNAME= libVNCServer-0.9.13
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=LibVNC/}
|
|
GITHUB_PROJECT= libvncserver
|
|
GITHUB_TAG= LibVNCServer-${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://libvnc.github.io/
|
|
COMMENT= Easy API to write one's own vnc server
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
# XXX doesn't really use c++ but cmake is being uncooperative
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= pkg-config
|
|
USE_CMAKE= yes
|
|
|
|
PKGCONFIG_OVERRIDE+= libvncserver.pc.cmakein
|
|
PKGCONFIG_OVERRIDE+= libvncclient.pc.cmakein
|
|
|
|
CMAKE_ARGS+= -DWITH_FFMPEG=OFF
|
|
CMAKE_ARGS+= -DWITH_GTK=OFF
|
|
CMAKE_ARGS+= -DWITH_SDL=OFF
|
|
CMAKE_ARGS+= -DWITH_SYSTEMD=OFF
|
|
|
|
CMAKE_ARGS+= -DWITH_THREADS=ON
|
|
CMAKE_ARGS+= -DWITH_TIGHTVNC_FILETRANSFER=ON
|
|
CMAKE_ARGS+= -DWITH_WEBSOCKETS=ON
|
|
CMAKE_ARGS+= -DWITH_24BPP=ON
|
|
CMAKE_ARGS+= -DWITH_LZO=ON
|
|
CMAKE_ARGS+= -DWITH_ZLIB=ON
|
|
CMAKE_ARGS+= -DWITH_JPEG=ON
|
|
CMAKE_ARGS+= -DWITH_PNG=ON
|
|
|
|
LDFLAGS.SunOS+= -lsocket
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../archivers/lzo/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../security/gnutls/buildlink3.mk"
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|