Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Jun 2016 18:57:57 +0000 (UTC)
From:      Dirk Meyer <dinoex@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r417834 - in head/net/x11vnc: . files
Message-ID:  <201606301857.u5UIvvNd079961@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dinoex
Date: Thu Jun 30 18:57:57 2016
New Revision: 417834
URL: https://svnweb.freebsd.org/changeset/ports/417834

Log:
  - support build with libressl
  PR:		210700
  Submitted by:	Andris Raugulis
  Obtained from:	https://github.com/Sp1l/freebsd-ports/blob/master/net/x11vnc/files/patch-x11vnc_enc.h

Added:
  head/net/x11vnc/files/
  head/net/x11vnc/files/patch-x11vnc_enc.h   (contents, props changed)
Modified:
  head/net/x11vnc/Makefile

Modified: head/net/x11vnc/Makefile
==============================================================================
--- head/net/x11vnc/Makefile	Thu Jun 30 16:44:10 2016	(r417833)
+++ head/net/x11vnc/Makefile	Thu Jun 30 18:57:57 2016	(r417834)
@@ -20,7 +20,7 @@ USE_XORG=	x11 xcb xdamage xfixes xrandr 
 # Sets LDFLAGS and adds to CONFIGURE_ENV, therefore we set LDFLAGS
 LDFLAGS+=	-L${LOCALBASE}/lib
 USE_OPENSSL=	yes
-USES=		iconv jpeg pkgconfig
+USES=		iconv pkgconfig jpeg
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 

Added: head/net/x11vnc/files/patch-x11vnc_enc.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/x11vnc/files/patch-x11vnc_enc.h	Thu Jun 30 18:57:57 2016	(r417834)
@@ -0,0 +1,13 @@
+--- x11vnc/enc.h.orig	2011-08-10 22:31:32 UTC
++++ x11vnc/enc.h
+@@ -454,8 +454,10 @@ extern void enc_do(char *ciph, char *key
+ 		p++;
+ 		if (strstr(p, "md5+") == p) {
+ 			Digest = EVP_md5();        p += strlen("md5+");
++#ifndef OPENSSL_NO_SHA0
+ 		} else if (strstr(p, "sha+") == p) {
+ 			Digest = EVP_sha();        p += strlen("sha+");
++#endif
+ 		} else if (strstr(p, "sha1+") == p) {
+ 			Digest = EVP_sha1();       p += strlen("sha1+");
+ 		} else if (strstr(p, "ripe+") == p) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606301857.u5UIvvNd079961>