From: Ian Romanick Date: Wed, 1 Aug 2012 21:51:37 +0000 (-0700) Subject: Make shared-glapi the default X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9f7b3d171306ed2ae588e1a4145c5a364cf986ff;p=mesa.git Make shared-glapi the default 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 Reviewed-by: Chad Versace --- diff --git a/configure.ac b/configure.ac index ce5714bbd6d..89686b47fcf 100644 --- a/configure.ac +++ b/configure.ac @@ -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