this repo has no description
1
fork

Configure Feed

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

Add _CSCheckFix() into CoreServices, required by Security.framework

+22
+1
src/CoreServices/CMakeLists.txt
··· 48 48 LaunchServices.cpp 49 49 OpenTransport.cpp 50 50 Timer.cpp 51 + CoreServicesPriv.cpp 51 52 ../external/libcxx/src/dso_handle.c 52 53 ) 53 54
+10
src/CoreServices/CoreServicesPriv.cpp
··· 1 + #include "CoreServicesPriv.h" 2 + 3 + // TODO: Security.framework expects this symbol to be available in 4 + // /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 5 + 6 + Boolean _CSCheckFix(CFStringRef str) 7 + { 8 + return 0; 9 + } 10 +
+11
src/CoreServices/CoreServicesPriv.h
··· 1 + #ifndef CORESERVICESPRIV_H_ 2 + #define CORESERVICESPRIV_H_ 3 + #include <CoreFoundation/CFString.h> 4 + 5 + CF_EXTERN_C_BEGIN 6 + 7 + Boolean _CSCheckFix(CFStringRef str); 8 + 9 + CF_EXTERN_C_END 10 + 11 + #endif