Module: Mesa Branch: master Commit: 723b78397fbad8987e14b7bb2376055529f40856 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=723b78397fbad8987e14b7bb2376055529f40856
Author: Andreas Boll <[email protected]> Date: Fri Feb 1 13:39:42 2013 +0100 configure.ac: Allow OpenGL ES1 and ES2 only with enabled OpenGL Building OpenGL ES1 and/or ES2 without OpenGL is not supported on mesa 9.0.x Reviewed-by: Chad Versace <[email protected]> --- configure.ac | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index 50e60f6..06d9fc9 100644 --- a/configure.ac +++ b/configure.ac @@ -676,6 +676,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" _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
