df84f371fe
Fix two -Wimplicit-fallthrough warnings in the murmurhash function: ../src/murmurhash.c: In function 'murmurhash': ../src/murmurhash.c:71:15: warning: this statement may fall through [-Wimplicit-fallthrough=] 71 | case 3: k ^= (tail[2] << 16); | ~~^~~~~~~~~~~~~~~~~~ ../src/murmurhash.c:72:5: note: here 72 | case 2: k ^= (tail[1] << 8); | ^~~~ ../src/murmurhash.c:72:15: warning: this statement may fall through [-Wimplicit-fallthrough=] 72 | case 2: k ^= (tail[1] << 8); | ~~^~~~~~~~~~~~~~~~~ ../src/murmurhash.c:74:5: note: here 74 | case 1: | ^~~~ |
||
---|---|---|
bench | ||
doc | ||
examples | ||
include | ||
src | ||
test | ||
test-images | ||
.gitignore | ||
COPYING | ||
FUNDING.yml | ||
README.md | ||
_clang-format | ||
meson.build | ||
meson_options.txt | ||
test-zrle.c |
README.md
Neat VNC
Introduction
This is a liberally licensed VNC server library that's intended to be fast and neat.
Goals
- Speed.
- Clean interface.
- Interoperability with the Freedesktop.org ecosystem.
Building
Runtime Dependencies
- aml - https://github.com/any1/aml/
- ffmpeg (optional)
- gbm (optional)
- gnutls (optional)
- libdrm (optional)
- libturbojpeg (optional)
- pixman
- zlib
Build Dependencies
- libdrm
- meson
- pkg-config
To build just run:
meson build
ninja -C build