Procházet zdrojové kódy

Fix tests configuration and building when only GLVND full OpenGL implementation is present.

Vanfanel před 4 roky
rodič
revize
e6b87005c1
1 změnil soubory, kde provedl 8 přidání a 0 odebrání
  1. 8 0
      test/configure.ac

+ 8 - 0
test/configure.ac

@@ -80,7 +80,15 @@ case "$host" in
         ISUNIX="true"
         EXE=""
         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"
+        ])  
         ;;
 esac
 AC_SUBST(EXE)