summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2015-02-11 14:18:50 -0800
committerEric Anholt <[email protected]>2015-02-20 11:36:34 -0800
commite8c5cbfd921680c4a68755b66889338a6268debb (patch)
tree7572f6675d9ca68fd9cb9244b93ab24e74dd9bc0 /src/util
parentf5ac5e20b16d17b0adda6d856829dd0cf997f7dc (diff)
mesa: Add gallium include dirs to more parts of the tree.
v2: Try to patch up the scons bits. Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/util')
-rw-r--r--src/util/Makefile.am2
-rw-r--r--src/util/SConscript2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/util/Makefile.am b/src/util/Makefile.am
index 7512138a892..9af233059bb 100644
--- a/src/util/Makefile.am
+++ b/src/util/Makefile.am
@@ -31,6 +31,8 @@ libmesautil_la_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/mapi \
-I$(top_srcdir)/src/mesa \
+ -I$(top_srcdir)/src/gallium/include \
+ -I$(top_srcdir)/src/gallium/auxiliary \
$(SHA1_CFLAGS) \
$(VISIBILITY_CFLAGS)
diff --git a/src/util/SConscript b/src/util/SConscript
index 28fedd80cdd..84bd7a1e1c4 100644
--- a/src/util/SConscript
+++ b/src/util/SConscript
@@ -11,6 +11,8 @@ env.Prepend(CPPPATH = [
'#src',
'#src/mapi',
'#src/mesa',
+ '#src/gallium/include',
+ '#src/gallium/auxiliary',
'#src/util',
])