From 7d1ca9fd6b14937284e38cb801b0cb0219bf9c14 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Mon, 26 Sep 2022 16:19:05 +0200 Subject: [PATCH] Hardcode last protobuf version (#636) See https://github.com/protocolbuffers/protobuf/issues/10619 --- install-php-extensions | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install-php-extensions b/install-php-extensions index aec98dc..b43e6e2 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -2957,6 +2957,9 @@ installRemoteModule() { if test -z "$installRemoteModule_version"; then if test $PHP_MAJMIN_VERSION -le 506; then installRemoteModule_version=3.12.4 + else + # see https://github.com/protocolbuffers/protobuf/issues/10619 + installRemoteModule_version=3.21.6 fi fi ;;