pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/x2vnc
Module Name: pkgsrc
Committed By: nia
Date: Sun Mar 22 09:41:31 UTC 2026
Modified Files:
pkgsrc/net/x2vnc: distinfo
Added Files:
pkgsrc/net/x2vnc/patches: patch-rfbproto.c patch-sockets.c
patch-vncauth.c
Log Message:
x2vnc: Fix implicit function decls
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/net/x2vnc/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/net/x2vnc/patches/patch-rfbproto.c \
pkgsrc/net/x2vnc/patches/patch-sockets.c \
pkgsrc/net/x2vnc/patches/patch-vncauth.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/x2vnc/distinfo
diff -u pkgsrc/net/x2vnc/distinfo:1.11 pkgsrc/net/x2vnc/distinfo:1.12
--- pkgsrc/net/x2vnc/distinfo:1.11 Tue Oct 26 11:07:12 2021
+++ pkgsrc/net/x2vnc/distinfo Sun Mar 22 09:41:30 2026
@@ -1,7 +1,10 @@
-$NetBSD: distinfo,v 1.11 2021/10/26 11:07:12 nia Exp $
+$NetBSD: distinfo,v 1.12 2026/03/22 09:41:30 nia Exp $
BLAKE2s (x2vnc-1.7.2.tar.gz) = 4245de8276c2e1fd0bf535860ef5c9a234e52388ac1823ab0908eb7dae1ea615
SHA512 (x2vnc-1.7.2.tar.gz) = f9bb9f8b95a6172758d1fd8b97f235088f0815afa21f2e11db77e59b36f8b3fe2fa2d8b922b14ccde1c589851d80489c9fd81d9f734ca9b053e4bc4019eade0b
Size (x2vnc-1.7.2.tar.gz) = 82258 bytes
SHA1 (patch-aa) = e1020b5e4b32265d66bc02a198172c3c5948c39b
SHA1 (patch-ab) = 34006e0543f35b6d670131325dbce1c2368a0fa3
+SHA1 (patch-rfbproto.c) = 802afe80d88ea8efa8286041d83da61af067c536
+SHA1 (patch-sockets.c) = 5af3a0366ee34b1a95c0630e160bae728586351d
+SHA1 (patch-vncauth.c) = bc30a1bd5d796618f6a606fa0a1953d680d7a385
Added files:
Index: pkgsrc/net/x2vnc/patches/patch-rfbproto.c
diff -u /dev/null pkgsrc/net/x2vnc/patches/patch-rfbproto.c:1.1
--- /dev/null Sun Mar 22 09:41:31 2026
+++ pkgsrc/net/x2vnc/patches/patch-rfbproto.c Sun Mar 22 09:41:31 2026
@@ -0,0 +1,14 @@
+$NetBSD: patch-rfbproto.c,v 1.1 2026/03/22 09:41:31 nia Exp $
+
+Fix implicit declaration of isspace(3), isalpha(3).
+
+--- rfbproto.c.orig 2026-03-22 09:24:15.370286540 +0000
++++ rfbproto.c
+@@ -26,6 +26,7 @@
+ #include <unistd.h>
+ #include <sys/types.h>
+ #include <errno.h>
++#include <ctype.h>
+ #include <pwd.h>
+ #include <x2vnc.h>
+ #include <X11/Xatom.h>
Index: pkgsrc/net/x2vnc/patches/patch-sockets.c
diff -u /dev/null pkgsrc/net/x2vnc/patches/patch-sockets.c:1.1
--- /dev/null Sun Mar 22 09:41:31 2026
+++ pkgsrc/net/x2vnc/patches/patch-sockets.c Sun Mar 22 09:41:31 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-sockets.c,v 1.1 2026/03/22 09:41:31 nia Exp $
+
+Fix implicit function declaration.
+
+--- sockets.c.orig 2026-03-22 09:24:31.574607613 +0000
++++ sockets.c
+@@ -36,6 +36,8 @@ Bool errorMessageFromReadExact = True;
+ Bool useSSHTunnel;
+ char *useSSHGateway;
+
++int tunnel(char *, char *, int);
++
+ /*
+ * Read an exact number of bytes, and don't return until you've got them.
+ */
Index: pkgsrc/net/x2vnc/patches/patch-vncauth.c
diff -u /dev/null pkgsrc/net/x2vnc/patches/patch-vncauth.c:1.1
--- /dev/null Sun Mar 22 09:41:31 2026
+++ pkgsrc/net/x2vnc/patches/patch-vncauth.c Sun Mar 22 09:41:31 2026
@@ -0,0 +1,14 @@
+$NetBSD: patch-vncauth.c,v 1.1 2026/03/22 09:41:31 nia Exp $
+
+Fix implicit declaration of dup(2).
+
+--- vncauth.c.orig 2026-03-22 09:25:36.630005546 +0000
++++ vncauth.c
+@@ -24,6 +24,7 @@
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <string.h>
++#include <unistd.h>
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <vncauth.h>
Home |
Main Index |
Thread Index |
Old Index