diff options
author | Christopher James Halse Rogers <[email protected]> | 2010-06-11 20:33:44 +1000 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-07-23 23:38:07 +0100 |
commit | 1874cb7e82a566079219a571d6a30a74581c611e (patch) | |
tree | 82d2d49f1df1b82493c594ec0db009bd2ca82eac /src/gallium/Makefile.template | |
parent | cf864fd58b2a4780482a108cd3ff86779e8fa965 (diff) |
gallium: Fix build with llvm installed in non-standard location
The es1, es2 and gl state trackers include draw_pipe.h, which includes
the llvm headers if MESA_LLVM is true, so we also need to add the
llvm seachpaths.
Similarly, gallivm and other gallium drivers need LLVM_CFLAGS to build when enabled.
Also fix xorg drivers, they didn't include LDFLAGS.
Diffstat (limited to 'src/gallium/Makefile.template')
-rw-r--r-- | src/gallium/Makefile.template | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/Makefile.template b/src/gallium/Makefile.template index 43203b1756e..bff399ec64f 100644 --- a/src/gallium/Makefile.template +++ b/src/gallium/Makefile.template @@ -23,6 +23,10 @@ INCLUDES = \ -I$(TOP)/src/gallium/drivers \ $(LIBRARY_INCLUDES) +ifeq ($(MESA_LLVM),1) +LIBRARY_DEFINES += $(LLVM_CFLAGS) +endif + ##### TARGETS ##### |