From: Marek Olšák Date: Mon, 12 Jan 2015 22:13:48 +0000 (+0100) Subject: r600g: fix build failure when building the driver without LLVM X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bed6f20f28af8bf531c14e3cab12a00354a313fc;p=mesa.git r600g: fix build failure when building the driver without LLVM --- diff --git a/src/gallium/drivers/radeon/r600_pipe_common.c b/src/gallium/drivers/radeon/r600_pipe_common.c index 04fc9c59c73..f91772e6207 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.c +++ b/src/gallium/drivers/radeon/r600_pipe_common.c @@ -36,6 +36,10 @@ #include "radeon/radeon_video.h" #include +#ifndef HAVE_LLVM +#define HAVE_LLVM 0 +#endif + /* * pipe_context */