diff options
author | Christian Beier <dontmind@freeshell.org> | 2018-05-14 17:01:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-14 17:01:13 +0200 |
commit | b997331e52a4d5f8c8ac680a3127fa8e30a38c00 (patch) | |
tree | 4c4afe9b2cefe1a663a3aa6d4e30d08ff9e267b5 | |
parent | 5c0ff7e072d682330508fc1593265e805327ca55 (diff) | |
parent | c5b8763b61924be2351bc6b2df504cc151d5f235 (diff) | |
download | libtdevnc-b997331e52a4d5f8c8ac680a3127fa8e30a38c00.tar.gz libtdevnc-b997331e52a4d5f8c8ac680a3127fa8e30a38c00.zip |
Merge pull request #215 from BastiaanOlij/fix_nozlib_compile_error
libvncclient: zrle.c: Move undef of REALBPP down
rfbproto.c which includes this file expects an undefined REALBPP after the inclusion. Do this whether or not there is zlib available.
-rw-r--r-- | libvncclient/zrle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvncclient/zrle.c b/libvncclient/zrle.c index e732046..ceba15a 100644 --- a/libvncclient/zrle.c +++ b/libvncclient/zrle.c @@ -420,8 +420,8 @@ static int HandleZRLETile(rfbClient* client, #undef HandleZRLE #undef HandleZRLETile #undef UncompressCPixel -#undef REALBPP #endif #undef UNCOMP +#undef REALBPP |