diff options
author | Jon TURNEY <[email protected]> | 2014-07-31 16:30:37 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-08-01 01:31:58 +0100 |
commit | 095c37e47230125d7fdc4a6b148b8e5cdc2f7262 (patch) | |
tree | d47d542f347ab6a4f4a4eed67448a1501e9e9187 /src/gallium/auxiliary/target-helpers | |
parent | b1eb00cd4008e9529f3cbdf0ce8a58aa68e75793 (diff) |
target-helpers: Do not build kms_dri on libdrm-less platforms.
Fix build since 3b176c441b7ddc5f7d2f891da3f76cf3c1814ce1 for
dri_platform=none hosts.
Signed-off-by: Jon TURNEY <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/target-helpers')
-rw-r--r-- | src/gallium/auxiliary/target-helpers/inline_drm_helper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h index 751ceb1e70e..5d02da7290c 100644 --- a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h +++ b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h @@ -60,6 +60,7 @@ static char* driver_name = NULL; #if defined(GALLIUM_SOFTPIPE) #if defined(DRI_TARGET) +#if defined(HAVE_LIBDRM) const __DRIextension **__driDriverGetExtensions_kms_swrast(void); @@ -84,6 +85,7 @@ kms_swrast_create_screen(int fd) } #endif #endif +#endif #if defined(GALLIUM_I915) #if defined(DRI_TARGET) |