From b86295c8b96f6b2e260718fee04f4ef0d598e3c8 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Thu, 25 Sep 2025 16:57:38 +0200 Subject: [PATCH] Fix build on macOS 26 by removing AGL framework link Previously, a link error occurred as we'd be trying to link against a nonexistent framework. AGL was removed in macOS Tahoe since the first beta. --- platform/osx/detect.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/platform/osx/detect.py b/platform/osx/detect.py index a36e5a9d78b..459d1632072 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -197,8 +197,6 @@ def configure(env): "-framework", "OpenGL", "-framework", - "AGL", - "-framework", "AudioUnit", "-framework", "CoreAudio",