mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
020240dc47
abseil-cpp builds with the default SDK, which can break dependent packages that require a different SDK version to build. Don’t propagate the CoreFoundation framework path and rely on nixpkgs to provide it instead. The line can’t be dropped because otherwise abseil-cpp will fail to build (due to missing symbols).
13 lines
358 B
Diff
13 lines
358 B
Diff
diff -ur a/absl/time/CMakeLists.txt b/absl/time/CMakeLists.txt
|
|
--- a/absl/time/CMakeLists.txt 1969-12-31 19:00:01.000000000 -0500
|
|
+++ b/absl/time/CMakeLists.txt 2023-10-30 21:50:32.639061785 -0400
|
|
@@ -55,7 +55,7 @@
|
|
)
|
|
|
|
if(APPLE)
|
|
- find_library(CoreFoundation CoreFoundation)
|
|
+ set(CoreFoundation "-framework CoreFoundation")
|
|
endif()
|
|
|
|
absl_cc_library(
|