[Mesa-dev] [PATCH] meson: don't build gallium dri target if gallium is disabled

Lyude Paul lyude at redhat.com
Thu Oct 19 20:42:23 UTC 2017


Reviewed-by: Lyude Paul <lyude at redhat.com>

On Thu, 2017-10-19 at 10:32 -0700, Dylan Baker wrote:
> Otherwise -Dgallium-drivers= will cause libmesa_gallium to be built and
> the megadriver install script to attempt to install drivers without any
> actual drivers being built.
> 
> fixes: 66f97f6640f5316b36177fd1053f0027eb6ec6cc ("meson: build radeonsi")
> Reported-by: Rafael Antognolli <rafael.antognolli at intel.com>
> Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
> ---
>  src/gallium/meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/gallium/meson.build b/src/gallium/meson.build
> index a65b32c658e..97347819d60 100644
> --- a/src/gallium/meson.build
> +++ b/src/gallium/meson.build
> @@ -67,7 +67,7 @@ subdir('state_trackers/dri')
>  # TODO: virgl
>  # TODO: winsys/sw/xlib
>  # TODO: clover
> -if with_dri
> +if with_dri and with_gallium
>    subdir('targets/dri')
>  endif
>  # TODO: xlib-glx


More information about the mesa-dev mailing list