diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/juce/avoid-macos-15-deprecations.patch | |
Diffstat (limited to 'vcpkg/ports/juce/avoid-macos-15-deprecations.patch')
| -rw-r--r-- | vcpkg/ports/juce/avoid-macos-15-deprecations.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vcpkg/ports/juce/avoid-macos-15-deprecations.patch b/vcpkg/ports/juce/avoid-macos-15-deprecations.patch new file mode 100644 index 0000000..30cf3b9 --- /dev/null +++ b/vcpkg/ports/juce/avoid-macos-15-deprecations.patch @@ -0,0 +1,20 @@ +diff --git a/modules/juce_gui_basics/native/juce_PerScreenDisplayLinks_mac.h b/modules/juce_gui_basics/native/juce_PerScreenDisplayLinks_mac.h +index 4562abf..8b1883b 100644 +--- a/modules/juce_gui_basics/native/juce_PerScreenDisplayLinks_mac.h ++++ b/modules/juce_gui_basics/native/juce_PerScreenDisplayLinks_mac.h +@@ -23,6 +23,9 @@ + ==============================================================================
+ */
+
++#pragma clang diagnostic push
++#pragma clang diagnostic ignored "-Wdeprecated-declarations"
++
+ namespace juce
+ {
+
+@@ -302,3 +305,5 @@ private: + };
+
+ } // namespace juce
++
++#pragma clang diagnostic pop
|