Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Nov 2018 22:53:36 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r483951 - head/www/edbrowse/files
Message-ID:  <201811032253.wA3MraUn063102@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Nov  3 22:53:35 2018
New Revision: 483951
URL: https://svnweb.freebsd.org/changeset/ports/483951

Log:
  Fix build with curl 7.62.0

Added:
  head/www/edbrowse/files/
  head/www/edbrowse/files/patch-src-http.c   (contents, props changed)

Added: head/www/edbrowse/files/patch-src-http.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/edbrowse/files/patch-src-http.c	Sat Nov  3 22:53:35 2018	(r483951)
@@ -0,0 +1,12 @@
+--- src/http.c.orig	2018-06-27 17:42:33 UTC
++++ src/http.c
+@@ -1555,7 +1555,9 @@ void ebcurl_setError(CURLcode curlret, c
+ 		break;
+ 
+ 	case CURLE_PEER_FAILED_VERIFICATION:
++#if LIBCURL_VERSION_NUM < 0x073e00
+ 	case CURLE_SSL_CACERT:
++#endif
+ 		(*fn) (MSG_NoCertify, host);
+ 		break;
+ 



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