Browse Source

Let's disable EGL, GLES and GLES2 on Windows, for now.

rdb 15 years ago
parent
commit
a6e6303bef
1 changed files with 3 additions and 0 deletions
  1. 3 0
      makepanda/makepanda.py

+ 3 - 0
makepanda/makepanda.py

@@ -353,6 +353,9 @@ if (COMPILER=="MSVC"):
     PkgDisable("X11")
     PkgDisable("XRANDR")
     PkgDisable("XF86DGA")
+    PkgDisable("GLES")
+    PkgDisable("GLES2")
+    PkgDisable("EGL")
     if (PkgSkip("PYTHON")==0):
         IncDirectory("ALWAYS", SDK["PYTHON"] + "/include")
         LibDirectory("ALWAYS", SDK["PYTHON"] + "/libs")