mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-18 17:57:08 +02:00
15 lines
307 B
Diff
15 lines
307 B
Diff
mesa-dev provides libGL.so, not libOpenGL.so
|
|
|
|
diff --git a/SConstruct b/SConstruct
|
|
index 3e0ae61..6443a13 100644
|
|
--- a/SConstruct
|
|
+++ b/SConstruct
|
|
@@ -126,7 +126,7 @@ elif is_windows_host:
|
|
])
|
|
else:
|
|
env.Append(LIBS = [
|
|
- "GL" if 'steamrt_scout' in chroot_name else "OpenGL",
|
|
+ "GL",
|
|
"GLEW",
|
|
])
|
|
|