Skip to content

Commit

Permalink
aravis: Disable macOS builds due to System Integrity Protection issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
sh0 committed Jan 4, 2022
1 parent 198d2ef commit 7eed890
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipes/aravis/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ def validate(self):
raise ConanInvalidConfiguration("Static MT/MTd runtime is not supported on Windows due to GLib issues")
if not self.options["glib"].shared and self.options.shared:
raise ConanInvalidConfiguration("Shared Aravis cannot link to static GLib")
if self.settings.os == "Macos":
raise ConanInvalidConfiguration("macOS builds are disabled until conan-io/conan#7324 gets merged to fix macOS SIP issue #8443")

def build_requirements(self):
self.build_requires("meson/0.60.2")
Expand Down

0 comments on commit 7eed890

Please sign in to comment.