X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmeson.build;h=ed0a3091d6dfd4f3ed662c9ca654175491717019;hb=4d18e71fea908ca64b23ee28d36fec780970e9b2;hp=b16717193e9b9da0911f360ebf71924b87542d7f;hpb=932f51d593418c95bf8f56ac9335d5f6c52c1285;p=mesa.git diff --git a/src/meson.build b/src/meson.build index b16717193e9..ed0a3091d6d 100644 --- a/src/meson.build +++ b/src/meson.build @@ -85,6 +85,9 @@ endif if with_gallium_panfrost or with_gallium_lima subdir('panfrost') endif +if with_gallium_virgl + subdir('virtio') +endif if with_dri_i965 or with_intel_vk or with_gallium_iris subdir('intel') endif @@ -123,6 +126,6 @@ if with_glx != 'disabled' and not with_glvnd libraries : libgl, libraries_private : gl_priv_libs, requires_private : gl_priv_reqs, - variables : ['glx_tls=yes'], + variables : ['glx_tls=@0@'.format(use_elf_tls ? 'yes' : 'no')], ) endif