apple-gl: remove compiler requirement after change in compiler model (#49760)

This commit is contained in:
Paul Gessinger 2025-03-30 11:12:42 +02:00 committed by GitHub
parent 6c78d9cab2
commit 0f4bfda2a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 8 deletions

View File

@ -38,7 +38,4 @@ class AppleGl(AppleGlBase):
provides("gl@4.1")
requires(
"platform=darwin %apple-clang",
msg="Apple-GL is only available on Darwin, when using Apple Clang",
)
requires("platform=darwin", msg="Apple-GL is only available on Darwin")

View File

@ -12,7 +12,4 @@ class AppleGlu(AppleGlBase):
provides("glu@1.3")
requires(
"platform=darwin %apple-clang",
msg="Apple-GLU is only available on Darwin, when using Apple Clang",
)
requires("platform=darwin", msg="Apple-GL is only available on Darwin")