this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'master' into feature/coreaudio-impl

+4 -1
+3
CMakeLists.txt
··· 67 67 68 68 FindDsymutil() 69 69 70 + # Missing CMakeLists.txt must trigger an error 71 + cmake_policy(SET CMP0014 NEW) 72 + 70 73 add_subdirectory(src) 71 74 72 75 install(DIRECTORY DESTINATION libexec/darling/private)
+1 -1
src/kernel/emulation/linux/mach/audit_session_self.c
··· 5 5 mach_port_name_t sys_audit_session_self(void) 6 6 { 7 7 printf("audit_session_self STUB\n"); 8 - return ENOTSUP; 8 + return MACH_PORT_NULL; 9 9 }