Module: Mesa Branch: master Commit: ead4db420e9e5408f41c70768a290592a384aedb URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ead4db420e9e5408f41c70768a290592a384aedb
Author: Tom Stellard <[email protected]> Date: Tue Apr 23 10:57:54 2013 -0400 gallivm: Fix build with LLVM >= r180063 --- src/gallium/auxiliary/gallivm/lp_bld_debug.cpp | 4 ++++ src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 4 ++++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp index ac8e10b..86617d4 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp @@ -56,6 +56,10 @@ #include <llvm/MC/MCRegisterInfo.h> #endif /* HAVE_LLVM >= 0x0301 */ +#if HAVE_LLVM >= 0x0303 +#include <llvm/ADT/OwningPtr.h> +#endif + #include "util/u_math.h" #include "util/u_debug.h" diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp index 024819e..717afa7 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp @@ -67,6 +67,10 @@ #include <llvm/Target/TargetSelect.h> #endif /* HAVE_LLVM < 0x0300 */ +#if HAVE_LLVM >= 0x0303 +#include <llvm/Wrap.h> +#endif + #include "pipe/p_config.h" #include "util/u_debug.h" #include "util/u_cpu_detect.h" _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
