[Mesa-dev] [PATCH (9.0)] configure.ac: Allow OpenGL ES1 and ES2 only with enabled OpenGL

Andreas Boll andreas.boll.dev at gmail.com
Fri Feb 1 04:39:42 PST 2013


Building OpenGL ES1 and/or ES2 without OpenGL is not supported on mesa
9.0.x
---
 configure.ac |   11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/configure.ac b/configure.ac
index 682e0a5..4634594 100644
--- a/configure.ac
+++ b/configure.ac
@@ -671,6 +671,17 @@ if test "x$enable_opengl" = xno -a \
     AC_MSG_ERROR([at least one API should be enabled])
 fi
 
+# Building OpenGL ES1 and/or ES2 without OpenGL is not supported on mesa 9.0.x
+if test "x$enable_opengl" = xno -a \
+        "x$enable_gles1" = xyes; then
+    AC_MSG_ERROR([Building OpenGL ES1 without OpenGL is not supported])
+fi
+
+if test "x$enable_opengl" = xno -a \
+        "x$enable_gles2" = xyes; then
+    AC_MSG_ERROR([Building OpenGL ES2 without OpenGL is not supported])
+fi
+
 API_DEFINES=""
 if test "x$enable_opengl" = xno; then
     API_DEFINES="$API_DEFINES -DFEATURE_GL=0"
-- 
1.7.10.4



More information about the mesa-dev mailing list