Index: head/devel/pecl-grpc/Makefile =================================================================== --- head/devel/pecl-grpc/Makefile (revision 553951) +++ head/devel/pecl-grpc/Makefile (revision 553952) @@ -1,25 +1,25 @@ # Created by: vanilla@ # $FreeBSD$ PORTNAME= grpc -PORTVERSION= 1.32.0 +PORTVERSION= 1.33.1 CATEGORIES= devel net MAINTAINER= vanilla@FreeBSD.org COMMENT= High performance, general RPC framework LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE 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 USES= compiler:c++11-lang 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 553951) +++ head/devel/pecl-grpc/distinfo (revision 553952) @@ -1,3 +1,3 @@ -TIMESTAMP = 1599894836 -SHA256 (PECL/grpc-1.32.0.tgz) = 9d6297e0b624584c4d43cad492325cf96095f70529ed21b618aab5142ec21c39 -SIZE (PECL/grpc-1.32.0.tgz) = 3953056 +TIMESTAMP = 1604381786 +SHA256 (PECL/grpc-1.33.1.tgz) = aa26eb1fb0d66216f709105d2605a8a72b20407076d1e9bb0bd7cb17a277582c +SIZE (PECL/grpc-1.33.1.tgz) = 3998366 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 553951) +++ head/devel/pecl-grpc/files/patch-src_core_tsi_ssl__transport__security.cc (revision 553952) @@ -1,10 +1,10 @@ ---- src/core/tsi/ssl_transport_security.cc.orig 2020-04-02 22:15:03 UTC +--- src/core/tsi/ssl_transport_security.cc.orig 2020-09-11 19:28:49 UTC +++ src/core/tsi/ssl_transport_security.cc -@@ -22,6 +22,7 @@ +@@ -20,6 +20,7 @@ #include "src/core/tsi/ssl_transport_security.h" +#include #include #include Index: head/devel/pecl-grpc/files/patch-src_php_ext_grpc_channel.c =================================================================== --- head/devel/pecl-grpc/files/patch-src_php_ext_grpc_channel.c (nonexistent) +++ head/devel/pecl-grpc/files/patch-src_php_ext_grpc_channel.c (revision 553952) @@ -0,0 +1,20 @@ +--- src/php/ext/grpc/channel.c.orig 2020-11-03 05:45:42 UTC ++++ src/php/ext/grpc/channel.c +@@ -793,13 +793,13 @@ GRPC_STARTUP_FUNCTION(channel) { + gpr_mu_init(&global_persistent_list_mu); + le_plink = zend_register_list_destructors_ex( + NULL, php_grpc_channel_plink_dtor, "Persistent Channel", module_number); +- zend_hash_init_ex(&grpc_persistent_list, 20, NULL, +- EG(persistent_list).pDestructor, 1, 0); ++ zend_hash_init(&grpc_persistent_list, 20, NULL, ++ EG(persistent_list).pDestructor, 1); + // Register the target->upper_bound map. + le_bound = zend_register_list_destructors_ex( + NULL, php_grpc_target_bound_dtor, "Target Bound", module_number); +- zend_hash_init_ex(&grpc_target_upper_bound_map, 20, NULL, +- EG(persistent_list).pDestructor, 1, 0); ++ zend_hash_init(&grpc_target_upper_bound_map, 20, NULL, ++ EG(persistent_list).pDestructor, 1); + + PHP_GRPC_INIT_HANDLER(wrapped_grpc_channel, channel_ce_handlers); + return SUCCESS; Property changes on: head/devel/pecl-grpc/files/patch-src_php_ext_grpc_channel.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/pecl-grpc/files/patch-src_php_ext_grpc_completion__queue.h =================================================================== --- head/devel/pecl-grpc/files/patch-src_php_ext_grpc_completion__queue.h (nonexistent) +++ head/devel/pecl-grpc/files/patch-src_php_ext_grpc_completion__queue.h (revision 553952) @@ -0,0 +1,13 @@ +--- src/php/ext/grpc/completion_queue.h.orig 2020-10-31 11:47:58 UTC ++++ src/php/ext/grpc/completion_queue.h +@@ -23,6 +23,10 @@ + + #include + ++#if PHP_MAJOR_VERSION >= 8 ++#define TSRMLS_D ++#endif ++ + /* The global completion queue for all operations */ + extern grpc_completion_queue *completion_queue; + Property changes on: head/devel/pecl-grpc/files/patch-src_php_ext_grpc_completion__queue.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/pecl-grpc/files/patch-src_php_ext_grpc_php__grpc.h =================================================================== --- head/devel/pecl-grpc/files/patch-src_php_ext_grpc_php__grpc.h (nonexistent) +++ head/devel/pecl-grpc/files/patch-src_php_ext_grpc_php__grpc.h (revision 553952) @@ -0,0 +1,17 @@ +--- src/php/ext/grpc/php_grpc.h.orig 2020-10-31 11:47:25 UTC ++++ src/php/ext/grpc/php_grpc.h +@@ -46,6 +46,14 @@ extern zend_module_entry grpc_module_entry; + #define PHP_GRPC_API + #endif + ++#if PHP_MAJOR_VERSION >= 8 ++#define TSRMLS_CC ++#define TSRMLS_C ++#define TSRMLS_DC ++#define TSRMLS_D ++#define TSRMLS_FETCH() ++#endif ++ + #ifdef ZTS + #include "TSRM.h" + #endif Property changes on: head/devel/pecl-grpc/files/patch-src_php_ext_grpc_php__grpc.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property