sockets doesn't install header?!

This commit is contained in:
henderkes
2025-05-17 22:40:30 +07:00
parent 05e9129a66
commit c1e91e1ccb
5 changed files with 44 additions and 2 deletions

View File

@@ -78,6 +78,15 @@ class SourcePatcher
}
}
public static function patchBeforeSharedBuild(BuilderBase $builder): void
{
foreach ($builder->getExts() as $ext) {
if ($ext->patchBeforeSharedBuild() === true) {
logger()->info('Extension [' . $ext->getName() . '] patched before shared build');
}
}
}
/**
* Source patcher runner before configure
*