this repo has no description
1
fork

Configure Feed

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

Add JavaScriptCore to build

+14 -4
+1 -1
kernel-include/libkern/i386/_OSByteOrder.h
··· 47 47 __uint16_t _data 48 48 ) 49 49 { 50 - return ((_data << 8) | (_data >> 8)); 50 + return (__uint16_t)((_data << 8) | (_data >> 8)); 51 51 } 52 52 53 53 __DARWIN_OS_INLINE
+4
kernel-include/sys/kdebug.h
··· 99 99 #define DBG_APPS 33 100 100 #define DBG_LAUNCHD 34 101 101 #define DBG_PERF 37 102 + #define DBG_ARIADNE 43 102 103 #define DBG_MIG 255 103 104 104 105 /* **** The Kernel Debug Sub Classes for Mach (DBG_MACH) **** */ ··· 337 338 #define QTDBG_CODE(SubClass,code) KDBG_CODE(DBG_QT, SubClass, code) 338 339 #define APPSDBG_CODE(SubClass,code) KDBG_CODE(DBG_APPS, SubClass, code) 339 340 #define CPUPM_CODE(code) IOKDBG_CODE(DBG_IOCPUPM, code) 341 + #define ARIADNEDBG_CODE(SubClass, code) KDBG_CODE(DBG_ARIADNE, SubClass, code) 340 342 341 343 #define KMEM_ALLOC_CODE MACHDBG_CODE(DBG_MACH_LEAKS, 0) 342 344 #define KMEM_ALLOC_CODE_2 MACHDBG_CODE(DBG_MACH_LEAKS, 1) ··· 728 730 729 731 #endif /* __APPLE_API_PRIVATE */ 730 732 #endif /* PRIVATE */ 733 + 734 + int kdebug_trace(int code, int arg1, int arg2, int arg3, int arg4); 731 735 732 736 #endif /* !BSD_SYS_KDEBUG_H */
+5 -1
src/CMakeLists.txt
··· 237 237 add_subdirectory(dyld) 238 238 add_subdirectory(external/objc4/runtime) 239 239 add_subdirectory(external/syslog) 240 - add_subdirectory(external/libdispatch) 241 240 add_subdirectory(external/zlib) 242 241 add_subdirectory(external/bzip2) 243 242 add_subdirectory(external/libxml2) ··· 395 394 396 395 add_subdirectory(external/libcxxabi) 397 396 add_subdirectory(external/libcxx) 397 + 398 + add_subdirectory(external/libdispatch) 399 + 398 400 # Requires a newer Security version 399 401 #add_subdirectory(external/SmartCardServices) 400 402 add_subdirectory(external/security) ··· 413 415 add_subdirectory(external/cocotron/CoreData) 414 416 add_subdirectory(external/cocotron/Cocoa) 415 417 add_subdirectory(external/cocotron/QuartzCore) 418 + 419 + add_subdirectory(external/JavaScriptCore)
+4 -2
src/PlugInKit/include/PlugInKit/PlugInKit.h
··· 29 29 void* pkFindProtocol(void); 30 30 void* pkFindProtocols(void); 31 31 void* pkIssueSandboxExtension(void); 32 - void* xpc_dictionary_get_array(void); 33 - void* xpc_dictionary_get_dictionary(void); 32 + 33 + // Moved to libxpc 34 + //void* xpc_dictionary_get_array(void); 35 + //void* xpc_dictionary_get_dictionary(void); 34 36 35 37 #import <PlugInKit/PKHostPlugIn.h> 36 38 #import <PlugInKit/PKDiscoveryDriver.h>