configure gearman php extension fail on MacOS - error: unknown type name 'zend_object_value'

configure gearman php extension fail on MacOS - error: unknown type name 'zend_object_value'

我尝试使用此说明在 MacOS 上安装 Gearman PHP php 7.4 扩展:

tar xzf gearman-X.Y.tgz
cd gearman-X.Y
phpize
./configure
make
make install

并在 ./configure

处出现错误
dev/gearman/gearman-1.1.2/php_gearman.c:1011:2: error: unknown type name 'zend_object_value'

看来需要使用原版php-configure。 对于我的情况:

./configure --with-php-config=/usr/local/Cellar/php/7.4.10/bin/php-config

解决问题