190a5509f4
This library allows one to compile droidVNCserver without having AOSP. Screen grabbing is performed by this library, which is compiled against AOSP.
14 lines
406 B
Bash
Executable File
14 lines
406 B
Bash
Executable File
#!/bin/bash
|
|
|
|
case "$1" in
|
|
#cvs --help-commands 2>&1 | sed "s/[ ][ ]*/ /g" | cut -d " " -f 2
|
|
add|admin|annotate|checkout|commit|diff|edit|editors|export|history|import|\
|
|
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 "$@"
|
|
|