Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | CMake: set OpenSSL include dir regardless of websockets being enabled or not | Christian Beier | 2017-01-31 | 1 | -1/+1 |
| | |||||
* | CMake: the blooptest example needs pthreads | Christian Beier | 2017-01-29 | 1 | -2/+2 |
| | |||||
* | CMake: fix examples linking when building with MSVC | Christian Beier | 2017-01-29 | 1 | -1/+2 |
| | |||||
* | CMake: as of now, the tight sources need libjpeg, libpng alone is not enough | Christian Beier | 2017-01-29 | 1 | -1/+0 |
| | |||||
* | CMake: as of now, websockets support requires sys/uio.h | Christian Beier | 2017-01-28 | 1 | -28/+27 |
| | |||||
* | CMake: TightVNC-filetransfer requires pthreads as of now | Christian Beier | 2017-01-28 | 1 | -5/+7 |
| | |||||
* | CMake: fix build system generation when zlib or OpenSSL not found | CHris B | 2017-01-28 | 1 | -2/+5 |
| | |||||
* | CMake: do not include NOTFOUND libs in pkg-config snippets | CHris B | 2017-01-28 | 1 | -0/+3 |
| | |||||
* | CMake: make the build configurable. | Christian Beier | 2017-01-22 | 1 | -61/+122 |
| | |||||
* | CMake: remove platform-specific flags. | Christian Beier | 2017-01-07 | 1 | -1/+0 |
| | |||||
* | CMake: bump version. | Christian Beier | 2017-01-02 | 1 | -1/+1 |
| | |||||
* | CMake: generate and install pkgconfig files. | Christian Beier | 2017-01-02 | 1 | -0/+28 |
| | |||||
* | CMake: bump SOVERSION to 1. | Christian Beier | 2017-01-02 | 1 | -1/+1 |
| | | | | Fixes https://github.com/LibVNC/libvncserver/issues/149 | ||||
* | CMake: update bugreport path | Christian Beier | 2017-01-02 | 1 | -1/+1 |
| | |||||
* | Fix some OSX linker problems. | Christian Beier | 2016-12-30 | 1 | -0/+6 |
| | |||||
* | CMake: CMP0037 requires CMake 3.0. | Christian Beier | 2016-12-30 | 1 | -1/+1 |
| | |||||
* | CMake: output examples to respective directories. | Christian Beier | 2016-12-30 | 1 | -0/+2 |
| | |||||
* | CMake: version up as well. | Christian Beier | 2016-12-28 | 1 | -1/+1 |
| | |||||
* | Support systemd socket activation | Kyle Russell | 2016-09-21 | 1 | -0/+12 |
| | |||||
* | CMake: Add maybe-found OpenSSL libs to libvncclient. | Christian Beier | 2016-05-30 | 1 | -0/+1 |
| | |||||
* | CMake: Not all platforms have endian.h, so use the build system's endianess ↵ | Christian Beier | 2016-05-30 | 1 | -0/+3 |
| | | | | check. | ||||
* | Append missing include directory for GNUTLS and OPENSSL in CMake project | Cédric Georges | 2016-03-05 | 1 | -0/+2 |
| | | | | Append support of gnutls > v 2.99.01 (gnutls_transport_set_global_errno have a different signature) | ||||
* | re-up comment | Cédric Georges | 2016-03-05 | 1 | -0/+2 |
| | |||||
* | Append IPv6 option in CMake Project | Cédric Georges | 2016-03-05 | 1 | -2/+9 |
| | |||||
* | Instead of letting the build system define endianess, rely on endian.h. | Christian Beier | 2015-05-28 | 1 | -3/+0 |
| | |||||
* | Do away with rfbint.h generation and use stdint.h directly instead. | Christian Beier | 2015-05-28 | 1 | -2/+0 |
| | |||||
* | fixing SOVERSION and .so VERSION | Peter Spiess-Knafl | 2015-01-27 | 1 | -6/+8 |
| | |||||
* | Use CMAKE_CURRENT_*_DIR instead of CMAKE_*_DIR. | Matthias Treydte | 2014-06-23 | 1 | -11/+12 |
| | | | | | | | | | | | | | | | This makes the library friendly to use as a git submodule within another project, and should change nothing when compiled alone. For example when having a directory structure like "my_project/external/libvnc", where in libvnc resides a checkout of libvncserver, one can just reference that directory from the CMakeLists.txt in my_project with > add_directory ( external/libvnc ) and add vncclient / vncserver in my_project's taret_link_libraries, one can just hack away without having to manually make / install LibVNCServer whenever something is changed there. | ||||
* | Use htobeNN(3) to convert numbers in websocket.c. | Raphael Kubo da Costa | 2012-09-14 | 1 | -0/+2 |
| | | | | | | | | | byteswap.h exists only on glibc, so building libvncserver with websockets support was not possible in other systems. Replace the inclusion of byteswap.h and the WS_* definitions with calls to htobeNN, which should perform the same conversions, be more portable and avoid the need to check for the platform's endianness. | ||||
* | Do not hardcode the need for libresolv. | Raphael Kubo da Costa | 2012-09-14 | 1 | -7/+18 |
| | | | | | | | | | | libresolv is only present on systems which use glibc; platforms such as FreeBSD have __b64_ntop as part of libc itself. Improve the detection process and only link against libresolv if it exists on the system, and remember to reset CMAKE_REQUIRED_LIBRARIES after performing the necessary tests, since we do not always want to link against libresolv. | ||||
* | CMake: Link against libgcrypt when it is found. | Raphael Kubo da Costa | 2012-09-14 | 1 | -1/+2 |
| | | | | | | | | | | So far, libgcrypt was looked for but no targets linked against it directly; this caused linking problems for the client and server examples, as the symbols they needed were not passed to the linker. The issue that the GnuTLS websockets code uses libgcrypt regardless of whether it has been found or not has not been touched by this commit, though. | ||||
* | Add Compile Time Version Test Defines. | Christian Beier | 2012-05-23 | 1 | -0/+3 |
| | |||||
* | Bump version to 0.9.10. | Christian Beier | 2012-05-05 | 1 | -1/+1 |
| | |||||
* | Fix CMake build of LibVNCClient. | Christian Beier | 2012-04-26 | 1 | -1/+17 |
| | |||||
* | Bump version to 0.9.9. | Christian Beier | 2012-04-25 | 1 | -1/+1 |
| | |||||
* | Extend support for the new TurboVNC encoder to the CMake build system | DRC | 2012-03-26 | 1 | -2/+39 |
| | |||||
* | Merge branch 'websockets' of https://github.com/kanaka/libvncserver | Christian Beier | 2012-01-12 | 1 | -11/+13 |
|\ | |||||
| * | cmake: adapted to latest websocket crypto changes | Gernot Tenchio | 2012-01-12 | 1 | -11/+13 |
| | | |||||
* | | Update version number in autotools && cmake, NEWS entry. | Christian Beier | 2011-11-08 | 1 | -1/+1 |
|/ | |||||
* | cmake: set SOVERSION | Gernot Tenchio | 2011-09-19 | 1 | -0/+4 |
| | |||||
* | Merge branch 'kanaka/websockets' into websockets | Gernot Tenchio | 2011-08-30 | 1 | -0/+1 |
|\ | | | | | | | | | Conflicts: libvncserver/websockets.c | ||||
| * | cmake: use sha1.c for websocket builds | Gernot Tenchio | 2011-08-29 | 1 | -0/+1 |
| | | |||||
* | | cmake: make some noise | Gernot Tenchio | 2011-08-25 | 1 | -0/+1 |
|/ | |||||
* | cmake: don't link sdl libs to vnc libraries | Gernot Tenchio | 2011-08-17 | 1 | -2/+0 |
| | | | | Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | Move libvncserver/md5* to common | Gernot Tenchio | 2011-08-17 | 1 | -1/+1 |
| | | | | Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | websockets: Add Websockets support to CMakeLists.txt | Gernot Tenchio | 2011-08-17 | 1 | -2/+28 |
| | | | | Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | tightPng: Add initial tightPng encoding support. | Joel Martin | 2011-07-22 | 1 | -4/+18 |
| | | | | | | | http://wiki.qemu.org/VNC_Tight_PNG Signed-off-by: Joel Martin <github@martintribe.org> Signed-off-by: Christian Beier <dontmind@freeshell.org> | ||||
* | CMake: Check for libgcrypt availability. | Christian Beier | 2011-03-12 | 1 | -0/+6 |
| | |||||
* | CMake: Threads can be available even if SDL is not. | Christian Beier | 2011-03-12 | 1 | -4/+4 |
| | |||||
* | CMake: fix building SDLvncviewer. | Christian Beier | 2011-03-12 | 1 | -2/+4 |
| |