this repo has no description
1
fork

Configure Feed

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

Properly install CoreGraphics.framework & fix CoreAnimation

+6 -2
+3
etc/dylib.conf
··· 109 109 [QuartzCore.framework] 110 110 A=libQuartzCore.so 111 111 112 + [CoreGraphics.framework] 113 + A=libCoreGraphics.so 114 + 112 115 [SystemConfiguration.framework] 113 116 A=libSystemConfiguration.so 114 117
+2 -2
src/ApplicationServices/CMakeLists.txt
··· 10 10 SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) 11 11 SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) 12 12 13 - add_library(ApplicationServices SHARED $<TARGET_OBJECTS:coregraphics>) 14 - target_link_libraries(ApplicationServices system CoreServices lcms png gif tiff jpeg X11 Xext Xrender fontconfig cairo) 13 + add_library(ApplicationServices SHARED empty.c) 14 + target_link_libraries(ApplicationServices system CoreServices CoreGraphics) 15 15 16 16 install(TARGETS ApplicationServices DESTINATION "${CMAKE_INSTALL_LIBDIR}/darling") 17 17
src/ApplicationServices/empty.c

This is a binary file and will not be displayed.

+1
src/CMakeLists.txt
··· 121 121 add_subdirectory(external/openssl_certificates) 122 122 add_subdirectory(external/liblcms1) 123 123 add_subdirectory(external/coregraphics) 124 + add_subdirectory(external/coreanimation) 124 125 add_subdirectory(external/rik-theme) 125 126 126 127 if (NOT DARLING_NO_EXECUTABLES)