summaryrefslogtreecommitdiff
path: root/src/mesa/sources.mak
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-05-05 10:59:44 +0800
committerChia-I Wu <olv@lunarg.com>2010-05-05 11:57:46 +0800
commita6ec153830ea25958f8cb5f5b5ae7a3433d61bbc (patch)
treed7a97f7581cb6e9c5232c1a17ff1452eb4614dbb /src/mesa/sources.mak
parentb29b27c118f2f813b07475e0c470b338ed5987aa (diff)
mesa: Fix build of ES overlay.
ES overlay is built with FEATURE_ES1 or FEATURE_ES2, and is built without FEATURE_GL. Fix the build by always building OpenGL ES sources, but test for FEATURE_ES1 or FEATURE_ES2. Also, define symbols that are missing because FEATURE_GL is not defined.
Diffstat (limited to 'src/mesa/sources.mak')
-rw-r--r--src/mesa/sources.mak9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mesa/sources.mak b/src/mesa/sources.mak
index be859e4325..02f65cb9c2 100644
--- a/src/mesa/sources.mak
+++ b/src/mesa/sources.mak
@@ -1,11 +1,10 @@
### Lists of source files, included by Makefiles
-ES1_SOURCES = \
+# this is part of MAIN_SOURCES
+MAIN_ES_SOURCES = \
main/api_exec_es1.c \
- main/get_es1.c
-
-ES2_SOURCES = \
main/api_exec_es2.c \
+ main/get_es1.c \
main/get_es2.c
MAIN_SOURCES = \
@@ -96,7 +95,7 @@ MAIN_SOURCES = \
main/version.c \
main/viewport.c \
main/vtxfmt.c \
- $(ES_SOURCES)
+ $(MAIN_ES_SOURCES)
GLAPI_SOURCES = \
glapi/glapi.c \