1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-13 22:12:43 +01:00

Merge pull request #12779 from NixOS/mergify/bp/2.26-maintenance/pr-12773

Unexpose config headers (low hanging fruit only) (backport #12773)
This commit is contained in:
mergify[bot] 2025-03-28 18:43:43 +00:00 committed by GitHub
commit e393b2c844
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 25 additions and 82 deletions

View file

@ -67,6 +67,7 @@ endforeach
has_acl_support = cxx.has_header('sys/xattr.h') \
and cxx.has_function('llistxattr') \
and cxx.has_function('lremovexattr')
# TODO: used in header - make proper public header and make sure it's included. Affects ABI!
configdata.set('HAVE_ACL_SUPPORT', has_acl_support.to_int())
if host_machine.system() == 'darwin'