add libacl and attr to macos, not sure if they build

This commit is contained in:
Marc Henderkes 2025-03-10 07:50:11 +01:00
parent 53f82d286c
commit 77bbc7fcaa
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace SPC\builder\macos\library;
class attr extends MacOSLibraryBase
{
use \SPC\builder\unix\library\attr;
public const NAME = 'attr';
}

View File

@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace SPC\builder\macos\library;
class libacl extends MacOSLibraryBase
{
use \SPC\builder\unix\library\libacl;
public const NAME = 'libacl';
}