this repo has no description
1
fork

Configure Feed

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

Build QuartzCore

+7 -1
+3
.gitmodules
··· 178 178 [submodule "src/external/coregraphics"] 179 179 path = src/external/coregraphics 180 180 url = ../darling-coregraphics.git 181 + [submodule "src/external/coreanimation"] 182 + path = src/external/coreanimation 183 + url = ../darling-coreanimation.git
+3
etc/dylib.conf
··· 106 106 [AppKit.framework] 107 107 C=libAppKit.so 108 108 109 + [QuartzCore.framework] 110 + A=libQuartzCore.so 111 + 109 112 [SystemConfiguration.framework] 110 113 A=libSystemConfiguration.so 111 114
+1 -1
src/setup-ld-so.sh
··· 3 3 # This runs as root, 4 4 # with the current directory set to ${CMAKE_INSTALL_PREFIX}/libexec/darling 5 5 6 - for file in /etc/ld.so.conf $(find /etc/ld.so.conf.d/ -type f); do 6 + for file in /etc/ld.so.conf $(find /etc/ld.so.conf.d/ -type f -o -type l); do 7 7 # Copy lines from e.g. /etc/ld.so.conf into ./etc/ld.so.conf, 8 8 # prepending "/Volumes/SystemRoot" to each line that starts with a slash 9 9 awk '/^\// { print "/Volumes/SystemRoot" $0 }; /^[^\/]/' $file > .$file