projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
859fd56
)
glsl2/Makefile: Append to DEFINES rather than replacing them.
author
Kenneth Graunke
<kenneth@whitecape.org>
Wed, 28 Jul 2010 23:44:56 +0000
(16:44 -0700)
committer
Kenneth Graunke
<kenneth@whitecape.org>
Wed, 28 Jul 2010 23:48:04 +0000
(16:48 -0700)
Otherwise, we lose DEBUG, which causes mtypes.h to set NDEBUG, which
causes assertions to not happen, which is no fun for anyone.
src/glsl/Makefile
patch
|
blob
|
history
diff --git
a/src/glsl/Makefile
b/src/glsl/Makefile
index 4c85af8906d0a1df4425d79c8d8881a651113667..cbdd0f9a7a3fbbbfedf64274c14d8da72fb6ac96 100644
(file)
--- a/
src/glsl/Makefile
+++ b/
src/glsl/Makefile
@@
-82,7
+82,7
@@
GLSL2_OBJECTS = \
### Basic defines ###
-DEFINES = \
+DEFINES
+
= \
$(LIBRARY_DEFINES) \
$(API_DEFINES)