pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/tightvncviewer
Module Name: pkgsrc
Committed By: mrg
Date: Sun Oct 12 22:35:32 UTC 2025
Modified Files:
pkgsrc/net/tightvncviewer: distinfo
Added Files:
pkgsrc/net/tightvncviewer/patches: patch-include_vncauth.h
patch-vncviewer_misc.c patch-vncviewer_vncviewer.h
Log Message:
add some missing prototypes and a header to satisfy GCC 14.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/net/tightvncviewer/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/net/tightvncviewer/patches/patch-include_vncauth.h \
pkgsrc/net/tightvncviewer/patches/patch-vncviewer_misc.c \
pkgsrc/net/tightvncviewer/patches/patch-vncviewer_vncviewer.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/tightvncviewer/distinfo
diff -u pkgsrc/net/tightvncviewer/distinfo:1.17 pkgsrc/net/tightvncviewer/distinfo:1.18
--- pkgsrc/net/tightvncviewer/distinfo:1.17 Mon Apr 21 21:10:27 2025
+++ pkgsrc/net/tightvncviewer/distinfo Sun Oct 12 22:35:32 2025
@@ -1,6 +1,9 @@
-$NetBSD: distinfo,v 1.17 2025/04/21 21:10:27 wiz Exp $
+$NetBSD: distinfo,v 1.18 2025/10/12 22:35:32 mrg Exp $
BLAKE2s (tightvnc-1.3.10_unixsrc.tar.bz2) = 1df478639d56ec1b3fd23ab46c083163f4358d69ae308e6d520043046cc7f358
SHA512 (tightvnc-1.3.10_unixsrc.tar.bz2) = b5b3d5d532feffc07db2d48d3416e1a0d1b1b15bdb8ff801ed42042d4b99f34365e10e3b005bc15cc6e0a33c429db8976c227a1854e1af5e10bcb60e17a69b87
Size (tightvnc-1.3.10_unixsrc.tar.bz2) = 1780510 bytes
SHA1 (patch-aa) = 56346a71083a8565d034187fcabb28a965078d62
+SHA1 (patch-include_vncauth.h) = 3bc6e3ee46df5b8ef63242245aac9ec46216039e
+SHA1 (patch-vncviewer_misc.c) = 75a844634d7678a6a157633ac55f07bbeef3a874
+SHA1 (patch-vncviewer_vncviewer.h) = 856a28c4092f4312d84183b33795f26685b7f3e8
Added files:
Index: pkgsrc/net/tightvncviewer/patches/patch-include_vncauth.h
diff -u /dev/null pkgsrc/net/tightvncviewer/patches/patch-include_vncauth.h:1.1
--- /dev/null Sun Oct 12 22:35:32 2025
+++ pkgsrc/net/tightvncviewer/patches/patch-include_vncauth.h Sun Oct 12 22:35:32 2025
@@ -0,0 +1,21 @@
+$NetBSD: patch-include_vncauth.h,v 1.1 2025/10/12 22:35:32 mrg Exp $
+
+Add missing prototypes.
+
+
+--- include/vncauth.h.orig 2000-06-11 05:00:51.000000000 -0700
++++ include/vncauth.h 2025-10-12 15:23:50.435408620 -0700
+@@ -24,7 +24,9 @@
+ #define MAXPWLEN 8
+ #define CHALLENGESIZE 16
+
+-extern int vncEncryptAndStorePasswd(char *passwd, char *fname);
+-extern char *vncDecryptPasswdFromFile(char *fname);
+-extern void vncRandomBytes(unsigned char *bytes);
+-extern void vncEncryptBytes(unsigned char *bytes, char *passwd);
++int vncEncryptAndStorePasswd(char *passwd, char *fname);
++int vncEncryptAndStorePasswd2(char *passwd, char *passwdViewOnly, char *fname);
++char *vncDecryptPasswdFromFile(char *fname);
++int vncDecryptPasswdFromFile2(char *fname, char *passwdFullControl, char *passwdViewOnly);
++void vncRandomBytes(unsigned char *bytes);
++void vncEncryptBytes(unsigned char *bytes, char *passwd);
Index: pkgsrc/net/tightvncviewer/patches/patch-vncviewer_misc.c
diff -u /dev/null pkgsrc/net/tightvncviewer/patches/patch-vncviewer_misc.c:1.1
--- /dev/null Sun Oct 12 22:35:32 2025
+++ pkgsrc/net/tightvncviewer/patches/patch-vncviewer_misc.c Sun Oct 12 22:35:32 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-vncviewer_misc.c,v 1.1 2025/10/12 22:35:32 mrg Exp $
+
+Add missing header for wait(2) prototype.
+
+
+--- vncviewer/misc.c.orig 2003-01-14 23:58:32.000000000 -0800
++++ vncviewer/misc.c 2025-10-12 15:24:52.037316337 -0700
+@@ -22,6 +22,7 @@
+ */
+
+ #include <vncviewer.h>
++#include <sys/wait.h>
+ #include <signal.h>
+ #include <fcntl.h>
+
Index: pkgsrc/net/tightvncviewer/patches/patch-vncviewer_vncviewer.h
diff -u /dev/null pkgsrc/net/tightvncviewer/patches/patch-vncviewer_vncviewer.h:1.1
--- /dev/null Sun Oct 12 22:35:32 2025
+++ pkgsrc/net/tightvncviewer/patches/patch-vncviewer_vncviewer.h Sun Oct 12 22:35:32 2025
@@ -0,0 +1,16 @@
+$NetBSD: patch-vncviewer_vncviewer.h,v 1.1 2025/10/12 22:35:32 mrg Exp $
+
+Add missing prototypes.
+
+
+--- vncviewer/vncviewer.h.orig 2006-12-05 03:12:42.000000000 -0800
++++ vncviewer/vncviewer.h 2025-10-12 15:29:12.058216143 -0700
+@@ -140,6 +140,8 @@ extern void SetVisualAndCmap();
+
+ extern Bool HandleCursorShape(int xhot, int yhot, int width, int height,
+ CARD32 enc);
++extern Bool HandleXCursor(int xhot, int yhot, int width, int height);
++extern Bool HandleCursorPos(int x, int y);
+ extern void SoftCursorLockArea(int x, int y, int w, int h);
+ extern void SoftCursorUnlockScreen(void);
+ extern void SoftCursorMove(int x, int y);
Home |
Main Index |
Thread Index |
Old Index