summaryrefslogtreecommitdiffstats
path: root/package/libvncserver/libvncserver.mk
Commit message (Collapse)AuthorAgeFilesLines
* packages: remove non-IPv6 dependencies and tweaksGustavo Zacarias2015-04-221-4/+0
| | | | | | | | Now that IPv6 is mandatory remove package dependencies and conditionals for it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libvncserver: OpenSSL support needs NPTL thread supportThomas Petazzoni2014-12-311-2/+2
| | | | | | | | | | | The OpenSSL support of libvncserver already has a dependency on thread support, but it in fact requires NPTL threading. Fixes: http://autobuild.buildroot.org/results/be2/be20dec9ffe7de3adc46a834852b20353d39baff/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libvncserver: add config option for tightpng encoding supportFloris Bos2014-12-271-0/+6
| | | | | | | | | | | TightPNG encoding speeds up HTML5 based VNC clients like noVNC. libvncserver enables this encoding if both libpng and jpeg libraries are available. [Thomas: rewrap Config.in help text.] Signed-off-by: Floris Bos <bos@je-eigen-domein.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libvncserver: disable libva supportFloris Bos2014-12-271-0/+4
| | | | | | | | | | | | | | | | | | | | | The libvncclient library (part of libvncserver) has optional support for HW accelerated H264 video playback using libva However there are currently two problems with it: 1) it only supports libva compiled with X11 support enabled, but it does not verify that is the case, resulting in compile errors. 2) it only supports the libva 1.0.x API, and not newer libva versions, like 1.4.x we include with buildroot. https://github.com/LibVNC/libvncserver/issues/11 Disabling libva support for now. Signed-off-by: Floris Bos <bos@je-eigen-domein.nl> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libvncserver: bump version to 0.9.10Floris Bos2014-12-261-2/+7
| | | | | | | | | | | [Thomas: - add comment about AUTORECONF = YES, noticed by Baruch Siach, and suggested by Yann E. Morin. - add dependency on host-pkgconf, since the configure script uses PKG_CHECK_MODULES.] Signed-off-by: Floris Bos <bos@je-eigen-domein.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: rename FOO_CONF_OPT into FOO_CONF_OPTSThomas De Schampheleire2014-10-041-8/+8
| | | | | | | | | | | | To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libvncserver: openssl support needs pthreadsPeter Korsgaard2013-11-221-2/+3
| | | | | | | | | Fixes http://autobuild.buildroot.net/results/c30/c3082693fe0da0c54d4bbf950dd6d74e1395c1d9/ Also pass --without-ssl if that isn't the case, as the configure script otherwise ends up detecting openssl if built before libvncserver. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libvncserver: fix build without pthreadPeter Korsgaard2013-11-131-0/+4
| | | | | | Fixes http://autobuild.buildroot.net/results/761/7618028d0781269d2f6f0a14d814da456f207475/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libvncserver: handle libvncserver-config scriptThomas Petazzoni2013-05-111-0/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libvncserver: gnutls support needs gcrypt as wellPeter Korsgaard2013-02-051-1/+1
| | | | | | Fixes http://autobuild.buildroot.org/results/3b479b8cf751cc0c075ab942b56aad36f79ada71 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libvncserver: bump versionPeter Korsgaard2013-01-281-2/+3
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages: switch to host-pkgconfGustavo Zacarias2012-10-291-1/+1
| | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* remove rest of the BR2_SOURCEFORGE_MIRROR referencesStefan Fröberg2012-08-281-1/+1
| | | | | Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libvncserver: ensure target libgcrypt-config is usedPeter Korsgaard2012-02-131-0/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add libvncserverPeter Korsgaard2012-02-101-0/+50
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
OpenPOWER on IntegriCloud