logo

blog

My little blog can’t be this cute! git clone https://hacktivis.me/git/blog.git
commit: 24c9694ded8fad4f69e0e570f50d20b6f18012d4
parent db7905dea12ce4bcc9b59022583c0602de5058fb
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:

Mnotes/pure-wayland.shtml2+-
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>