commit: 584e0b400da94774e94d2686a5a7594b4e23d03e
parent 21f52e931c68d422dcb6aadcc3116628ea71de1e
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Thu, 6 May 2021 15:53:39 +0200
notes/pure-wayland: s;glBegin;glVertex3f;
glVertex3f isn't in OpenGL ES, this can avoid potential wrong detections
https://github.com/adoptware/pinball/commit/f1274eafaa6776bf8cded971475b5fbc92cce69b
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/notes/pure-wayland.shtml b/notes/pure-wayland.shtml
@@ -47,7 +47,7 @@
<p>Use something like the following:</p>
<pre><code>AC_CHECK_HEADER(
[GL/gl.h],
- AC_SEARCH_LIBS(glBegin, [opengl32 GL GL2 OpenGL], [test $ac_cv_search_glBegin = "none required" || GL_LIBS="$ac_cv_search_glBegin $GL_LIBS"], [AC_MSG_ERROR(*** OpenGL library not found on system!)]),
+ AC_SEARCH_LIBS(glVertex3f, [opengl32 GL GL2 OpenGL], [test $ac_cv_search_glVertex3f = "none required" || GL_LIBS="$ac_cv_search_glVertex3f $GL_LIBS"], [AC_MSG_ERROR(*** OpenGL library not found on system!)]),
[AC_MSG_ERROR(*** OpenGL headers not found on system!)]
)</code></pre>
<h3>meson</h3>