]> git.ipfire.org Git - thirdparty/systemd.git/commit
tar-util: allow to build without acl support (#39965)
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 10 Dec 2025 08:42:50 +0000 (09:42 +0100)
committerGitHub <noreply@github.com>
Wed, 10 Dec 2025 08:42:50 +0000 (09:42 +0100)
commit13a74f350e0629bedb9e3dbcb53cbcff365af699
tree12ffee6987a3cf01d8827dae77755e86e0770ab0
parenta07b184e8ccbecafc1fce5a0cfffe87c6a497134
parentcbe34b4e7353df4c1051f377dff4e036c5f8085a
tar-util: allow to build without acl support (#39965)

This adds minimal definitions provided by libacl to make tar-util built
without libacl support.
Fixes the following compile error:
```
../src/shared/tar-util.c:62:9: error: unknown type name 'acl_t'
   62 |         acl_t acl_access, acl_default;
      |         ^~~~~
```

Follow-up for 4ded7f7a434c59534f65a0f9d391c55961eb110d.
Fixes #39928.
Replaces #39954.