We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea4905c commit 4cbe4eaCopy full SHA for 4cbe4ea
src/SPC/builder/macos/MacOSBuilder.php
@@ -98,7 +98,8 @@ public function buildPHP(int $build_target = BUILD_TARGET_NONE): void
98
$this->emitPatchPoint('before-php-configure');
99
SourcePatcher::patchBeforeConfigure($this);
100
101
- $json_74 = $this->getPHPVersionID() < 80000 ? '--enable-json ' : '';
+ $phpVersionID = $this->getPHPVersionID();
102
+ $json_74 = $phpVersionID < 80000 ? '--enable-json ' : '';
103
$zts = $this->getOption('enable-zts', false) ? '--enable-zts --disable-zend-signals ' : '';
104
105
$opcache_jit = !$this->getOption('disable-opcache-jit', false);
0 commit comments