[vlc-devel] [PATCH] configure: disable opengl on OS/2

KO Myung-Hun komh78 at gmail.com
Tue Nov 12 15:55:57 CET 2013


---
 configure.ac |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index 59352b8..054a8a1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2965,7 +2965,11 @@ PKG_CHECK_MODULES([GL], [gl], [
       ])
       GL_LIBS="-lopengl32"
     ], [
-      GL_LIBS="-lGL"
+      AS_IF([test "${SYS}" = "os2"], [
+        have_gl="no"
+      ], [
+        GL_LIBS="-lGL"
+      ])
     ])
   ], [
     have_gl="no"
-- 
1.7.3.2




More information about the vlc-devel mailing list