summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2011-02-16 13:37:57 +0000
committerChia-I Wu <olv@lunarg.com>2011-02-20 12:53:42 -0700
commitaa6a5cf1d5625ecb5efff3a43233ed972ab29cad (patch)
tree26a84ce00bbcc517b6a9426e47342ebe07980ae3 /configure.ac
parentbf0c56522e21bd45ad3385e3115ef7eb71a7b8bf (diff)
Fix --enable-shared-glapi configure option
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>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 46d351648b..e1702ba200 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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"
;;