summaryrefslogtreecommitdiff
path: root/net/tightvnc/patches/patch-ag
diff options
context:
space:
mode:
authorlukem <lukem@pkgsrc.org>2002-10-20 14:33:53 +0000
committerlukem <lukem@pkgsrc.org>2002-10-20 14:33:53 +0000
commit067eeb231c0189df35147149e6ad4b5ded75ec7c (patch)
tree8aa6e38ee99ac3c210bff246100943611c579541 /net/tightvnc/patches/patch-ag
parent50afdff32065017da42623b3022a1e51aa80ee21 (diff)
downloadpkgsrc-067eeb231c0189df35147149e6ad4b5ded75ec7c.tar.gz
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
Diffstat (limited to 'net/tightvnc/patches/patch-ag')
-rw-r--r--net/tightvnc/patches/patch-ag27
1 files changed, 15 insertions, 12 deletions
diff --git a/net/tightvnc/patches/patch-ag b/net/tightvnc/patches/patch-ag
index 0d89123b612..243d411765d 100644
--- a/net/tightvnc/patches/patch-ag
+++ b/net/tightvnc/patches/patch-ag
@@ -1,15 +1,18 @@
-$NetBSD: patch-ag,v 1.1 2001/09/23 01:34:31 mycroft Exp $
+$NetBSD: patch-ag,v 1.2 2002/10/20 14:33:54 lukem Exp $
---- vncserver.orig Thu Oct 26 16:16:37 2000
+--- vncserver.orig Tue Aug 27 22:19:38 2002
+++ vncserver
-@@ -149,8 +149,8 @@
- # Add font path and color database stuff here, e.g.:
- #
- # $cmd .= " -fp unix/:7100";
--# $cmd .= " -fp /usr/lib/X11/fonts/misc/,/usr/lib/X11/fonts/75dpi/";
--# $cmd .= " -co /usr/lib/X11/rgb";
-+$cmd .= " -fp /usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/";
-+$cmd .= " -co /usr/X11R6/lib/X11/rgb";
- #
+@@ -41,10 +41,11 @@ $vncUserDir = "$ENV{HOME}/.vnc";
+ $fontPath = "unix/:7100";
- foreach $arg (@ARGV) {
+ # Here is another example of setting the font path:
+-# $fontPath = "/usr/lib/X11/fonts/misc/,/usr/lib/X11/fonts/75dpi/";
++# $fontPath = "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/";
++$fontPath = "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/";
+
+ # X colors database path is optional, uncomment and edit to use:
+-# $colorPath = "/usr/lib/X11/rgb";
++# $colorPath = "/usr/X11R6/lib/X11/rgb";
+
+ # You might wish to make your vnc directory under /tmp, to make sure
+ # passwords are always kept on the local filesystem. To do that, just