Index: head/devel/pecl-grpc/Makefile =================================================================== --- head/devel/pecl-grpc/Makefile (revision 467605) +++ head/devel/pecl-grpc/Makefile (revision 467606) @@ -1,27 +1,27 @@ # Created by: vanilla@ # $FreeBSD$ PORTNAME= grpc -PORTVERSION= 1.10.1 +PORTVERSION= 1.11.0 CATEGORIES= devel net MAINTAINER= vanilla@FreeBSD.org COMMENT= High performance, general RPC framework LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_aarch64= fails to compile: fatal error: sys/auxv.h file not found BROKEN_mips= fails to compile: fatal error: sys/auxv.h file not found BROKEN_mips64= fails to compile: fatal error: sys/auxv.h file not found BROKEN_powerpc64= fails to compile: cc1: error: unrecognized command line option "-Wno-parentheses-equality" USES= php:pecl .include .if ${FLAVOR} == php72 && ${ARCH} == i386 BROKEN= error: fastcall calling convention ignored on variadic function [-Werror,-Wignored-attributes] .endif .include Index: head/devel/pecl-grpc/distinfo =================================================================== --- head/devel/pecl-grpc/distinfo (revision 467605) +++ head/devel/pecl-grpc/distinfo (revision 467606) @@ -1,3 +1,3 @@ -TIMESTAMP = 1522998882 -SHA256 (PECL/grpc-1.10.1.tgz) = c50e18654ca1ec571429c9ed044370f2af7d2cfb5ca27a39d53dab64d96ab550 -SIZE (PECL/grpc-1.10.1.tgz) = 2351796 +TIMESTAMP = 1523970490 +SHA256 (PECL/grpc-1.11.0.tgz) = b4a04a613b6ec606b0588a2634b8f17a9f0ed8f99852e1e7a863c53631dd5ddb +SIZE (PECL/grpc-1.11.0.tgz) = 2454902 Index: head/devel/pecl-grpc/files/patch-src_core_lib_gpr_arena.cc =================================================================== --- head/devel/pecl-grpc/files/patch-src_core_lib_gpr_arena.cc (revision 467605) +++ head/devel/pecl-grpc/files/patch-src_core_lib_gpr_arena.cc (revision 467606) @@ -1,11 +1,11 @@ ---- src/core/lib/gpr/arena.cc.orig 2018-03-13 15:03:48 UTC +--- src/core/lib/gpr/arena.cc.orig 2018-04-16 17:48:12 UTC +++ src/core/lib/gpr/arena.cc -@@ -83,7 +83,7 @@ void* gpr_arena_alloc(gpr_arena* arena, +@@ -128,7 +128,7 @@ void* gpr_arena_alloc(gpr_arena* arena, size_t size) { ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(zone)) + next_z_size)); next_z->size_begin = z->size_end; next_z->size_end = z->size_end + next_z_size; - if (!gpr_atm_rel_cas(&z->next_atm, static_cast(NULL), + if (!gpr_atm_rel_cas(&z->next_atm, (gpr_atm)NULL, (gpr_atm)next_z)) { gpr_free_aligned(next_z); next_z = (zone*)gpr_atm_acq_load(&z->next_atm); Index: head/devel/pecl-grpc/files/patch-src_core_tsi_ssl__transport__security.cc =================================================================== --- head/devel/pecl-grpc/files/patch-src_core_tsi_ssl__transport__security.cc (revision 467605) +++ head/devel/pecl-grpc/files/patch-src_core_tsi_ssl__transport__security.cc (revision 467606) @@ -1,11 +1,10 @@ ---- src/core/tsi/ssl_transport_security.cc.orig 2017-12-15 14:58:10 UTC +--- src/core/tsi/ssl_transport_security.cc.orig 2018-04-16 17:48:12 UTC +++ src/core/tsi/ssl_transport_security.cc -@@ -19,7 +19,7 @@ +@@ -20,6 +20,7 @@ + #include "src/core/tsi/ssl_transport_security.h" - #include -- +#include #include #include