mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 12:54:52 +08:00
28 lines
673 B
PHP
28 lines
673 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder\extension;
|
|
|
|
use SPC\builder\Extension;
|
|
use SPC\exception\WrongUsageException;
|
|
use SPC\store\FileSystem;
|
|
use SPC\util\CustomExt;
|
|
|
|
#[CustomExt('parallel')]
|
|
class parallel extends Extension
|
|
{
|
|
public function validate(): void
|
|
{
|
|
if (!$this->builder->getOption('enable-zts')) {
|
|
throw new WrongUsageException('ext-parallel must be built with ZTS builds. Use "--enable-zts" option!');
|
|
}
|
|
}
|
|
|
|
public function patchBeforeBuildconf(): bool
|
|
{
|
|
FileSystem::replaceFileRegex(SOURCE_PATH . '/php-src/ext/parallel/config.m4', '/PHP_VERSION=.*/m', '');
|
|
return true;
|
|
}
|
|
}
|