File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,23 @@ class Csound < Formula
2121 url "https://github.com/csound/csound/commit/2a071ae8ca89bc21b5c80037f8c95a01bb670ac9.patch?full_index=1"
2222 sha256 "c7026330b5c89ab399e74aff17019067705011b7e35b9c75f9ed1a5878f53b4b"
2323 end
24+
25+ # Fix build failure due to incorrect member name on macOS 15+
26+ patch <<~DIFF
27+ diff --git a/include/plugin.h b/include/plugin.h
28+ index dcf011e6b..55e8055bf 100644
29+ --- a/include/plugin.h
30+ +++ b/include/plugin.h
31+ @@ -1002,7 +1002,7 @@ template <std::size_t N> struct InPlug : OPDS {
32+ /** check if this opcode runs at perf time
33+ */
34+ bool is_perf() {
35+ - return this->opaddr ? true : false;
36+ + return this->opadr ? true : false;
37+ }
38+
39+ };
40+ DIFF
2441 end
2542
2643 livecheck do
You can’t perform that action at this time.
0 commit comments