svn commit: r483951 - head/www/edbrowse/files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Nov 3 22:53:39 UTC 2018


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;
+ 


More information about the svn-ports-all mailing list