getSourceDir()}/config.m4", 'CFLAGS="$CFLAGS -Werror -Wall -O3 -pthread -std=gnu90"', 'CFLAGS="$CFLAGS -pthread"' ); FileSystem::replaceFileStr( "{$this->getSourceDir()}/src/php_spx.h", "extern zend_module_entry spx_module_entry;\n", "extern zend_module_entry spx_module_entry;;\n#define phpext_spx_ptr &spx_module_entry\n" ); FileSystem::copy("{$this->getSourceDir()}/src/php_spx.h", "{$this->getSourceDir()}/php_spx.h"); return true; } #[BeforeStage('php', [php::class, 'configureForUnix'], 'ext-spx')] #[PatchDescription('Fix spx extension compile error when configuring')] public function patchBeforeConfigure(): void { FileSystem::replaceFileStr( "{$this->getSourceDir()}/Makefile.frag", '@cp -r assets/web-ui/*', "@cp -r {$this->getSourceDir()}/assets/web-ui/*", ); } public function getSharedExtensionEnv(): array { $env = parent::getSharedExtensionEnv(); $env['SPX_SHARED_LIBADD'] = $env['LIBS']; return $env; } }