1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-21 09:49:36 +01:00

packaging: Add darwin -lsandbox in meson

This commit is contained in:
Robert Hensing 2024-10-03 12:23:17 +02:00
parent d2c880b03f
commit f733553061
2 changed files with 7 additions and 0 deletions

View file

@ -69,6 +69,11 @@ has_acl_support = cxx.has_header('sys/xattr.h') \
and cxx.has_function('lremovexattr')
configdata.set('HAVE_ACL_SUPPORT', has_acl_support.to_int())
if host_machine.system() == 'darwin'
sandbox = cxx.find_library('sandbox')
deps_other += [sandbox]
endif
subdir('build-utils-meson/threads')
boost = dependency(