Fix --enable-shared-glapi configure option
authorJon TURNEY <jon.turney@dronecode.org.uk>
Wed, 16 Feb 2011 13:37:57 +0000 (13:37 +0000)
committerChia-I Wu <olv@lunarg.com>
Sun, 20 Feb 2011 19:53:42 +0000 (12:53 -0700)
Fix a typo which meant that --enable-shared-glapi didn't actually cause a shared glapi to be built

Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
configure.ac

index 46d351648be3a4bb83a0fc81557a11367f679cbe..e1702ba2007ad4475bfb09bba9843aedc5b1326c 100644 (file)
@@ -614,7 +614,7 @@ GALLIUM_DRIVERS_DIRS="softpipe failover galahad trace rbug noop identity"
 GALLIUM_STATE_TRACKERS_DIRS=""
 
 # build shared-glapi if enabled for OpenGL or if OpenGL ES is enabled
-case "x$enabled_shared_glapi$enable_gles1$enable_gles2" in
+case "x$enable_shared_glapi$enable_gles1$enable_gles2" in
 x*yes*)
     CORE_DIRS="$CORE_DIRS mapi/shared-glapi"
     ;;