mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-06 08:15:39 +08:00
Forward-port #1095
This commit is contained in:
29
src/Package/Extension/decimal.php
Normal file
29
src/Package/Extension/decimal.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Package\Extension;
|
||||
|
||||
use Package\Target\php;
|
||||
use StaticPHP\Attribute\Package\BeforeStage;
|
||||
use StaticPHP\Attribute\Package\Extension;
|
||||
use StaticPHP\Attribute\PatchDescription;
|
||||
use StaticPHP\Package\PhpExtensionPackage;
|
||||
use StaticPHP\Util\FileSystem;
|
||||
|
||||
#[Extension('decimal')]
|
||||
class decimal extends PhpExtensionPackage
|
||||
{
|
||||
// TODO: remove this when https://github.com/php-decimal/ext-decimal/issues/92 is merged
|
||||
#[BeforeStage('php', [php::class, 'buildconfForUnix'], 'ext-decimal')]
|
||||
#[BeforeStage('php', [php::class, 'buildconfForWindows'], 'ext-decimal')]
|
||||
#[PatchDescription('Fix decimal extension module entry symbol name conflict')]
|
||||
public function patchBeforeBuildconf(): void
|
||||
{
|
||||
FileSystem::replaceFileStr(
|
||||
$this->getSourceDir() . '/php_decimal.c',
|
||||
'zend_module_entry decimal_module_entry',
|
||||
'zend_module_entry php_decimal_module_entry'
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user