Commit 3c5d1b0f authored by dscho's avatar dscho

cvs more flexible now; ZRLE encoding only when HAVE_ZRLE defined

parent 1e4c2e73
if [ a"$1" = adiff -o a"$1" = aexport ]; then #!/bin/bash
cmd="$1"
shift case "$1" in
else #cvs --help-commands 2>&1 | sed "s/[ ][ ]*/ /g" | cut -d " " -f 2
cmd=update add|admin|annotate|checkout|commit|diff|edit|editors|export|history|import|\
fi init|log|login|logout|pserver|rdiff|release|remove|rtag|server|status|\
tag|unedit|update|watch|watchers)
cmd="$1"; shift;;
*) cmd=update;;
esac
cvs -z3 -d :pserver:anonymous@cvs.libvncserver.sf.net:/cvsroot/libvncserver $cmd "$@" cvs -z3 -d :pserver:anonymous@cvs.libvncserver.sf.net:/cvsroot/libvncserver $cmd "$@"
...@@ -304,7 +304,9 @@ typedef struct { ...@@ -304,7 +304,9 @@ typedef struct {
#ifdef BACKCHANNEL #ifdef BACKCHANNEL
#define rfbEncodingBackChannel 15 #define rfbEncodingBackChannel 15
#endif #endif
#ifdef HAVE_ZRLE
#define rfbEncodingZRLE 16 #define rfbEncodingZRLE 16
#endif
/* /*
* Special encoding numbers: * Special encoding numbers:
......
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