[Scummvm-git-logs] scummvm master -> 3d9ccee456ca29def1eb192823f20864be1d8338
bluegr
noreply at scummvm.org
Mon Jun 20 19:18:39 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
3d9ccee456 CONFIGURE: Remove special case for GLES2
Commit: 3d9ccee456ca29def1eb192823f20864be1d8338
https://github.com/scummvm/scummvm/commit/3d9ccee456ca29def1eb192823f20864be1d8338
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2022-06-20T22:18:35+03:00
Commit Message:
CONFIGURE: Remove special case for GLES2
Changed paths:
configure
diff --git a/configure b/configure
index aa9aff6d3f7..003e24c9482 100755
--- a/configure
+++ b/configure
@@ -5495,9 +5495,8 @@ EOF
_opengl_can_compile=no
# Try different library names
if test "$_opengl_mode" = "gles2" ; then
- # 1) GLESv2 This is generally used by nearly all platforms for OpenGL ES 2
- # 2) ogles2 This is used by AmigaOS4 for OpenGL ES 2
- for lib in "-lGLESv2" "-logles2"; do
+ # GLESv2 This is generally used by nearly all platforms for OpenGL ES 2
+ for lib in "-lGLESv2"; do
if cc_check_no_clean $DEFINES $OPENGL_CFLAGS $OPENGL_LIBS $lib; then
append_var OPENGL_LIBS "$lib"
_opengl_can_compile=yes
More information about the Scummvm-git-logs
mailing list