Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #306960 from reckenrode/system_cmds-fix

darwin.system_cmds: fix build without CoreFoundation hook

authored by toonn and committed by GitHub 473eaafe 7d53398b

+5 -4
+5 -4
pkgs/os-specific/darwin/apple-source-releases/system_cmds/meson.build
··· 88 88 executable( 89 89 'arch', 90 90 build_by_default : sdk_version.version_compare('>=11'), 91 + dependencies : [ core_foundation ], 91 92 install : sdk_version.version_compare('>=11'), 92 93 sources : 'arch/arch.c' 93 94 ) ··· 145 146 146 147 executable( 147 148 'chpass', 148 - dependencies : [ cfopen_directory, directory_service, open_directory ], 149 + dependencies : [ core_foundation, cfopen_directory, directory_service, open_directory ], 149 150 install : true, 150 151 sources : [ 151 152 'chpass/chpass.c', ··· 358 359 executable( 359 360 'nvram', 360 361 c_args : '-DTARGET_OS_BRIDGE=0', 361 - dependencies : [ iokit, libc_private, xnu_private ], 362 + dependencies : [ core_foundation, iokit, libc_private, xnu_private ], 362 363 install : true, 363 364 sources : 'nvram/nvram.c' 364 365 ) ··· 377 378 378 379 executable( 379 380 'passwd', 380 - dependencies : [ cfopen_directory, directory_service, open_directory, pam ], 381 + dependencies : [ core_foundation, cfopen_directory, directory_service, open_directory, pam ], 381 382 install : true, 382 383 sources : [ 383 384 'passwd/file_passwd.c', ··· 521 522 'zlog', 522 523 build_by_default : sdk_version.version_compare('>=11'), 523 524 c_args : '-DKERN_NOT_FOUND=56', 524 - dependencies : core_symbolication, 525 + dependencies : [ core_foundation, core_symbolication ], 525 526 install : sdk_version.version_compare('>=11'), 526 527 sources : [ 527 528 'zlog/SymbolicationHelper.c',