diff options
author | Chia-I Wu <olv@lunarg.com> | 2010-10-31 21:14:20 +0800 |
---|---|---|
committer | Chia-I Wu <olv@lunarg.com> | 2010-10-31 21:22:26 +0800 |
commit | 52ef148923ef53dfd2192273bcdac39f233da869 (patch) | |
tree | 2c736c6bbad60f7c393f540fe074d93f3c7b49d7 | |
parent | 1230050363cd30c457a64e51dac41f3471e87fc4 (diff) |
targets/egl: Fix a warning with --disable-opengl build.
API_DEFINES is the defines for libmesagallium.a. Append it to
egl_CPPFLAGS only when st_GL.so, which uses libmesagallium.a, is built.
-rw-r--r-- | src/gallium/targets/egl/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/targets/egl/Makefile b/src/gallium/targets/egl/Makefile index 57979c4e9d..63e9352144 100644 --- a/src/gallium/targets/egl/Makefile +++ b/src/gallium/targets/egl/Makefile @@ -54,9 +54,8 @@ egl_LIBS += $(TOP)/src/gallium/winsys/sw/fbdev/libfbdev.a endif # EGL_RENDERABLE_TYPE is a compile time attribute -egl_CPPFLAGS += $(API_DEFINES) ifneq ($(filter $(GL_LIB), $(EGL_CLIENT_APIS)),) -egl_CPPFLAGS += -DFEATURE_GL=1 +egl_CPPFLAGS += $(API_DEFINES) endif ifneq ($(filter $(GLESv1_CM_LIB), $(EGL_CLIENT_APIS)),) egl_CPPFLAGS += -DFEATURE_ES1=1 |