Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cjdns: fix build with latest xcode #167262

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Formula/c/cjdns.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ class Cjdns < Formula
depends_on "six" => :build

def install
# Work-around for build issue with Xcode 15.3
# upstream PR patch, https://github.com/cjdelisle/cjdns/pull/1263
ENV.append_to_cflags "-Wno-incompatible-function-pointer-types" if DevelopmentTools.clang_build_version >= 1500

# Libuv build fails on macOS with: env: python: No such file or directory
ENV.prepend_path "PATH", Formula["[email protected]"].opt_libexec/"bin" if OS.mac?

Expand Down
Loading