Missing include (forgot in previous).

This commit is contained in:
ajacoutot 2021-03-25 07:24:15 +00:00
parent a4e26436c0
commit 27d6586b56
2 changed files with 14 additions and 1 deletions

View File

@ -1,9 +1,10 @@
# $OpenBSD: Makefile,v 1.14 2021/03/24 12:31:44 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.15 2021/03/25 07:24:15 ajacoutot Exp $
COMMENT= library for easy implementation of a VNC server
DISTNAME= LibVNCServer-0.9.13
PKGNAME= ${DISTNAME:L}
REVISION= 0
SHARED_LIBS += vncclient 1.0 # 0.0
SHARED_LIBS += vncserver 3.1 # 0.0

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-examples_repeater_c,v 1.1 2021/03/25 07:24:15 ajacoutot Exp $
Index: examples/repeater.c
--- examples/repeater.c.orig
+++ examples/repeater.c
@@ -1,5 +1,6 @@
/* This example shows how to connect to an UltraVNC repeater. */
+#include <sys/socket.h>
#include <rfb/rfb.h>
static void clientGone(rfbClientPtr cl)