pkgsrc/net/tightvnc/patches/patch-be
lukem 067eeb231c Update to tightvnc 1.2.6. Notable changes:
all:
- supply manual pages

Xvnc:
- fixed crash in the font server code
- fixed blocking I/O problem which led to easy denial-of-service
  attacks via built-in HTTP server
- fixed memory alignment problem in Raw encoder, for systems with
  strict alignment constraints
- support libwrap for server access control
- rely upon system zlib instead of shipping own copy
- reset compression level & JPEG image quality on reading client's encoding list
- allow applet parameters to be specified in URL request to the HTTP server

vncpasswd:
- work correctly if a filename is given

vncserver:
- default depth is 24 instead of 8
- attempt restart once if failed first time due to font path lossage
- removed 2 second startup delay
- allow users to keep vnc directories in /tmp
- work correctly if $XAUTHORITY is not set
2002-10-20 14:33:53 +00:00

13 lines
559 B
Text

$NetBSD: patch-be,v 1.1 2002/10/20 14:33:54 lukem Exp $
--- Xvnc/configure.orig Tue Apr 30 23:07:30 2002
+++ Xvnc/configure
@@ -24,7 +24,7 @@ else
MINOR=`echo $REV | awk -F. 'NF < 2 {print "0"} {print $2}'`
TEENY=0
else
- REV=`uname -r | sed -e 's/^V//' -e 's/-.*$//'`
+ REV=`uname -r | sed -e 's/^V//' -e 's/[-_].*$//'`
MAJOR=`echo $REV | awk -F. 'NF < 1 {print "0"} {print $1}'`
MINOR=`echo $REV | awk -F. 'NF < 2 {print "0"} {print $2}'`
TEENY=`echo $REV | awk -F. 'NF < 3 {print "0"} {print $3}'`