diff options
author | runge <runge> | 2007-06-15 03:19:05 +0000 |
---|---|---|
committer | runge <runge> | 2007-06-15 03:19:05 +0000 |
commit | d3326942e2e7d1391da0975590dbd2c8668d9328 (patch) | |
tree | 34da35ee116fc657d51736ff65fc0b02b3826801 /x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd | |
parent | 171db9c542cd35b6de8ad88cefd99ea145482df1 (diff) | |
download | libtdevnc-d3326942e2e7d1391da0975590dbd2c8668d9328.tar.gz libtdevnc-d3326942e2e7d1391da0975590dbd2c8668d9328.zip |
x11vnc: fix build error if libssl is missing or --without-ssl supplied.
Diffstat (limited to 'x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd')
-rwxr-xr-x | x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd b/x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd index 7c76688..dde977b 100755 --- a/x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd +++ b/x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd @@ -86,6 +86,13 @@ fi PATH=$PATH:/usr/bin:/bin export PATH +if [ "X$FULLNAME" = "XKarl J. Runge" ]; then + VNCVIEWER_POPUP_FIX=1 + export VNCVIEWER_POPUP_FIX + + PATH=`echo "$PATH" | sed -e 's,runge/bin/override,-------------,'` +fi + # Set this for ss_vncviewer to pick up: # if [ "X$1" = "X-cotvnc" ]; then @@ -195,6 +202,11 @@ else PATH="$dir:$dir/$name:$dir/util:$PATH" fi +if [ -f "$dir/util/ultraftp.jar" ]; then + SSVNC_ULTRA_FTP_JAR="$dir/util/ultraftp.jar" + export SSVNC_ULTRA_FTP_JAR +fi + base=`basename "$0"` if [ "X$1" = "X-ssl" ]; then shift |