Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 7A8BE1A9217 for ; Sun, 29 Nov 2020 20:33:55 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D50C084D8C; Sun, 29 Nov 2020 20:33:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 18FE584D73 for ; Sun, 29 Nov 2020 20:33:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id WYX4Mxrw-sPP for ; Sun, 29 Nov 2020 20:33:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 8C05284D53 for ; Sun, 29 Nov 2020 20:33:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 806EDFA9D; Sun, 29 Nov 2020 20:33:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1606682033130100" MIME-Version: 1.0 Date: Sun, 29 Nov 2020 20:33:53 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/net/libvncserver To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201129203353.806EDFA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1606682033130100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Nov 29 20:33:53 UTC 2020 Modified Files: pkgsrc/net/libvncserver: distinfo pkgsrc/net/libvncserver/patches: patch-libvncclient_tls__openssl.c Log Message: libvncserver: Fix missing decl of fd_set when compiled with openssl To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/net/libvncserver/distinfo cvs rdiff -u -r1.1 -r1.2 \ pkgsrc/net/libvncserver/patches/patch-libvncclient_tls__openssl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1606682033130100 Content-Disposition: inline Content-Length: 2217 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/libvncserver/distinfo diff -u pkgsrc/net/libvncserver/distinfo:1.17 pkgsrc/net/libvncserver/distinfo:1.18 --- pkgsrc/net/libvncserver/distinfo:1.17 Thu Mar 14 09:15:13 2019 +++ pkgsrc/net/libvncserver/distinfo Sun Nov 29 20:33:53 2020 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.17 2019/03/14 09:15:13 jperkin Exp $ +$NetBSD: distinfo,v 1.18 2020/11/29 20:33:53 nia Exp $ SHA1 (libvncserver-LibVNCServer-0.9.12.tar.gz) = f2111a7d7e96d7101e7ff3834abd5b0c71c1ed5f RMD160 (libvncserver-LibVNCServer-0.9.12.tar.gz) = 62e65f56221e7274a4fb1b7f42cca00f7c5f2926 SHA512 (libvncserver-LibVNCServer-0.9.12.tar.gz) = 60ff1cc93a937d6f8f97449bc58b763095846207112f7b1b3c43eb2d74448b595d6da949903a764bd484ee54e38ff6277e882adbe965dd6d26ba15ef6ff6fcb8 Size (libvncserver-LibVNCServer-0.9.12.tar.gz) = 2237447 bytes -SHA1 (patch-libvncclient_tls__openssl.c) = 26d11832d048f93c7dbc9879603b8171abab3f31 +SHA1 (patch-libvncclient_tls__openssl.c) = 6986fdc3b65cac0b8e1f152c314ad2575ff55351 SHA1 (patch-libvncserver_websockets.c) = eb4e50f8fcb8442dae54d1360e6950e2ebd4778b SHA1 (patch-rfb_rfbproto.h) = 6dcc68a90d444f88ab696616b1aee3eb66708877 Index: pkgsrc/net/libvncserver/patches/patch-libvncclient_tls__openssl.c diff -u pkgsrc/net/libvncserver/patches/patch-libvncclient_tls__openssl.c:1.1 pkgsrc/net/libvncserver/patches/patch-libvncclient_tls__openssl.c:1.2 --- pkgsrc/net/libvncserver/patches/patch-libvncclient_tls__openssl.c:1.1 Mon Feb 25 09:48:26 2019 +++ pkgsrc/net/libvncserver/patches/patch-libvncclient_tls__openssl.c Sun Nov 29 20:33:53 2020 @@ -1,10 +1,12 @@ -$NetBSD: patch-libvncclient_tls__openssl.c,v 1.1 2019/02/25 09:48:26 jperkin Exp $ +$NetBSD: patch-libvncclient_tls__openssl.c,v 1.2 2020/11/29 20:33:53 nia Exp $ Bump _XOPEN_SOURCE to the same as other files to avoid C99 issues. +Fix missing declaration of fd_set. + --- libvncclient/tls_openssl.c.orig 2019-01-06 19:09:30.000000000 +0000 +++ libvncclient/tls_openssl.c -@@ -19,7 +19,7 @@ +@@ -19,10 +19,11 @@ */ #ifndef _MSC_VER @@ -13,3 +15,7 @@ Bump _XOPEN_SOURCE to the same as other #endif #include ++#include + #include + + #include --_----------=_1606682033130100--