pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/libvncserver



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.

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 <rfb/rfbclient.h>
++#include <sys/select.h>
+ #include <errno.h>
+ 
+ #include <openssl/err.h>



Home | Main Index | Thread Index | Old Index