Make shared-glapi the default
authorIan Romanick <ian.d.romanick@intel.com>
Wed, 1 Aug 2012 21:51:37 +0000 (14:51 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Wed, 8 Aug 2012 17:06:26 +0000 (10:06 -0700)
You can't practically have desktop OpenGL and OpenGL ES on the same system
without this.  The benefits of not having it (e.g., a more compact dispatch
table) are irrelevant.

v2: Don't mark shared-glapi as experimental.  Review suggestion by Chad.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
configure.ac

index ce5714bbd6d87d412a995b7debfbf293fbb8244f..89686b47fcfdadbe2601c3e62dc65a00a6292f69 100644 (file)
@@ -689,9 +689,9 @@ AC_SUBST([API_DEFINES])
 
 AC_ARG_ENABLE([shared-glapi],
     [AS_HELP_STRING([--enable-shared-glapi],
-        [EXPERIMENTAL.  Enable shared glapi for OpenGL @<:@default=no@:>@])],
+        [Enable shared glapi for OpenGL @<:@default=yes@:>@])],
     [enable_shared_glapi="$enableval"],
-    [enable_shared_glapi=no])
+    [enable_shared_glapi=yes])
 
 SHARED_GLAPI="0"
 if test "x$enable_shared_glapi" = xyes; then