Subversion Repositories x2vnc

Compare Revisions

Ignore whitespace Rev 30 → Rev 31

/trunk/debian/changelog
2,8 → 2,10
 
* ipv6.patch (new): Add IPv6 support.
* Switch to debhelper compat level 9.
* missing-headers.patch: Add missing includes and prototypes to avoid
potential problems with implicit function declarations.
 
-- Magnus Holmgren <holmgren@debian.org> Sat, 29 Oct 2016 16:45:28 +0200
-- Magnus Holmgren <holmgren@debian.org> Sat, 29 Oct 2016 17:05:15 +0200
 
x2vnc (1.7.2-5) unstable; urgency=low
 
/trunk/debian/patches/missing-headers.patch
0,0 → 1,54
Description: Add missing includes and prototypes
 
--- a/rfbproto.c
+++ b/rfbproto.c
@@ -30,6 +30,8 @@
#include <x2vnc.h>
#include <X11/Xatom.h>
#include <vncauth.h>
+#include <ctype.h>
+#include <time.h>
static Bool HandleHextileEncoding8(int x, int y, int w, int h);
static Bool HandleHextileEncoding16(int x, int y, int w, int h);
--- a/sockets.c
+++ b/sockets.c
@@ -31,6 +31,7 @@
#include <x2vnc.h>
void PrintInHex(char *buf, int len);
+int tunnel(char *gatewayhost, char *remotehost, int remoteport);
Bool errorMessageFromReadExact = True;
Bool useSSHTunnel;
--- a/vncauth.c
+++ b/vncauth.c
@@ -24,6 +24,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <unistd.h>
+#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <vncauth.h>
--- a/x2vnc.c
+++ b/x2vnc.c
@@ -25,6 +25,7 @@
#include <unistd.h>
#include <errno.h>
+#include <time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/time.h>
--- a/x.c
+++ b/x.c
@@ -27,6 +27,7 @@
#include <unistd.h>
#include <x2vnc.h>
#include <math.h>
+#include <time.h>
#include <X11/X.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
/trunk/debian/patches/series
2,3 → 2,4
man-listen.patch
format-security.patch
ipv6.patch
missing-headers.patch