Browse Source

meson: don't build gallium dri target if gallium is disabled

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: 66f97f6640 ("meson: build radeonsi")
Reported-by: Rafael Antognolli <rafael.antognolli@intel.com>
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Tested-by: Rafael Antognolli <rafael.antognolli@intel.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
tags/17.3-branchpoint
Dylan Baker 8 years ago
parent
commit
a447f9fe7b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/gallium/meson.build

+ 1
- 1
src/gallium/meson.build View File

# TODO: virgl # TODO: virgl
# TODO: winsys/sw/xlib # TODO: winsys/sw/xlib
# TODO: clover # TODO: clover
if with_dri
if with_dri and with_gallium
subdir('targets/dri') subdir('targets/dri')
endif endif
# TODO: xlib-glx # TODO: xlib-glx

Loading…
Cancel
Save