Commit def30126 authored by runge's avatar runge

fix client non-jpeg/libz builds

parent e781eea6
2006-01-08 Karl Runge <runge@karlrunge.com>
* libvncclient/vncviewer.c: fix non-jpeg/libz builds.
* examples/pnmshow24.c: fix non-ALLOW24BPP builds.
* libvncserver/main.c: fix 'static int' defn.
2006-01-05 Karl Runge <runge@karlrunge.com> 2006-01-05 Karl Runge <runge@karlrunge.com>
* libvncserver/main.c: rfbRegisterProtocolExtension extMutex was * libvncserver/main.c: rfbRegisterProtocolExtension extMutex was
never initialized. never initialized.
......
...@@ -3,8 +3,10 @@ ...@@ -3,8 +3,10 @@
#include <rfb/keysym.h> #include <rfb/keysym.h>
#ifndef LIBVNCSERVER_ALLOW24BPP #ifndef LIBVNCSERVER_ALLOW24BPP
#error "I need the ALLOW24BPP flag to work" int main() {
#endif printf("I need the ALLOW24BPP LibVNCSever flag to work\n");
}
#else
static void HandleKey(rfbBool down,rfbKeySym key,rfbClientPtr cl) static void HandleKey(rfbBool down,rfbKeySym key,rfbClientPtr cl)
{ {
...@@ -88,3 +90,4 @@ int main(int argc,char** argv) ...@@ -88,3 +90,4 @@ int main(int argc,char** argv)
return(0); return(0);
} }
#endif
...@@ -157,11 +157,11 @@ rfbClient* rfbGetClient(int bitsPerSample,int samplesPerPixel, ...@@ -157,11 +157,11 @@ rfbClient* rfbGetClient(int bitsPerSample,int samplesPerPixel,
#ifdef LIBVNCSERVER_HAVE_LIBZ #ifdef LIBVNCSERVER_HAVE_LIBZ
client->raw_buffer_size = -1; client->raw_buffer_size = -1;
client->decompStreamInited = FALSE; client->decompStreamInited = FALSE;
#endif
#ifdef LIBVNCSERVER_HAVE_LIBJPEG #ifdef LIBVNCSERVER_HAVE_LIBJPEG
memset(client->zlibStreamActive,0,sizeof(rfbBool)*4); memset(client->zlibStreamActive,0,sizeof(rfbBool)*4);
client->jpegSrcManager = NULL; client->jpegSrcManager = NULL;
#endif
#endif #endif
client->HandleCursorPos = DummyPoint; client->HandleCursorPos = DummyPoint;
...@@ -252,6 +252,7 @@ rfbBool rfbInitClient(rfbClient* client,int* argc,char** argv) { ...@@ -252,6 +252,7 @@ rfbBool rfbInitClient(rfbClient* client,int* argc,char** argv) {
} }
void rfbClientCleanup(rfbClient* client) { void rfbClientCleanup(rfbClient* client) {
#ifdef LIBVNCSERVER_HAVE_LIBZ
#ifdef LIBVNCSERVER_HAVE_LIBJPEG #ifdef LIBVNCSERVER_HAVE_LIBJPEG
int i; int i;
...@@ -271,6 +272,7 @@ void rfbClientCleanup(rfbClient* client) { ...@@ -271,6 +272,7 @@ void rfbClientCleanup(rfbClient* client) {
if (client->jpegSrcManager) if (client->jpegSrcManager)
free(client->jpegSrcManager); free(client->jpegSrcManager);
#endif
#endif #endif
free(client->desktopName); free(client->desktopName);
......
...@@ -61,7 +61,7 @@ void ...@@ -61,7 +61,7 @@ void
rfbRegisterProtocolExtension(rfbProtocolExtension* extension) rfbRegisterProtocolExtension(rfbProtocolExtension* extension)
{ {
rfbProtocolExtension* last; rfbProtocolExtension* last;
static extMutex_initialized = 0; static int extMutex_initialized = 0;
if (! extMutex_initialized) { if (! extMutex_initialized) {
INIT_MUTEX(extMutex); INIT_MUTEX(extMutex);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment