Skip to content

Commit

Permalink
fltk: Use the mesa-glu Conan package
Browse files Browse the repository at this point in the history
This is done the same way as for the FreeGLUT package in conan-io#22428.
Fixes conan-io#22944.
  • Loading branch information
jwillikers committed Mar 2, 2024
1 parent 1c888e8 commit 9b527af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion recipes/fltk/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ def requirements(self):
if self.settings.os in ["Linux", "FreeBSD"]:
if self.options.with_gl:
self.requires("opengl/system")
self.requires("glu/system")
if is_apple_os(self) or self.settings.os == "Windows":
self.requires("glu/system")
else:
self.requires("mesa-glu/9.0.3")
self.requires("fontconfig/2.15.0")
self.requires("xorg/system")
if self.options.with_xft:
Expand Down

0 comments on commit 9b527af

Please sign in to comment.