Merge commit 'e6b87005c1da22a0d354619eebca53c6e2639cdd' into main

This commit is contained in:
Sam Lantinga 2021-03-22 19:16:18 -07:00
commit f83ce7c5fb
1 changed files with 8 additions and 0 deletions

View File

@ -80,7 +80,15 @@ case "$host" in
ISUNIX="true" ISUNIX="true"
EXE="" EXE=""
MATHLIB="-lm" MATHLIB="-lm"
dnl Use the new libOpenGL if present.
have_glvnd=no
AC_CHECK_LIB(OpenGL, glBegin,
[
dnl have_glvnd=yes
SYS_GL_LIBS="-lOpenGL"
],[
SYS_GL_LIBS="-lGL" SYS_GL_LIBS="-lGL"
])
;; ;;
esac esac
AC_SUBST(EXE) AC_SUBST(EXE)