diff options
author | Eric Engestrom <[email protected]> | 2019-08-27 23:56:55 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-09-06 22:19:01 +0100 |
commit | 28cb16b6f86718f16219218427b78981a9a4de65 (patch) | |
tree | 9a4856a4784d1d6ec207b8b1f8e96ca1400f0bc2 /src/gallium/auxiliary/draw/draw_context.h | |
parent | ef434fbc25c479863b612f67bee6a4f3ef65cd39 (diff) |
aux/draw: replace binary HAVE_LLVM checks with LLVM_AVAILABLE
Signed-off-by: Eric Engestrom <[email protected]>
Acked-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_context.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.h b/src/gallium/auxiliary/draw/draw_context.h index 69138690de7..fefda821338 100644 --- a/src/gallium/auxiliary/draw/draw_context.h +++ b/src/gallium/auxiliary/draw/draw_context.h @@ -65,7 +65,7 @@ struct draw_so_target { struct draw_context *draw_create( struct pipe_context *pipe ); -#if HAVE_LLVM +#ifdef LLVM_AVAILABLE struct draw_context *draw_create_with_llvm_context(struct pipe_context *pipe, void *context); #endif |