summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2018-02-14 14:50:08 +0100
committerXiang, Haihao <haihao.xiang@intel.com>2018-03-13 09:50:15 +0800
commit64645ce04659a25832624eb7891acb401897c2b0 (patch)
tree5b08aa4d5eccc9504112382fb1226838618f8ba5 /meson.build
parent2312d2c49d3fca3e10463a156be252b12637a603 (diff)
downloadlibva-intel-driver-64645ce04659a25832624eb7891acb401897c2b0.tar.gz
build: fix meson build
When X11 is found, the variable assigned is HAVE_X11 but the used one is WITH_X11, failing to define it in the config header.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index d62e2393..0f186627 100644
--- a/meson.build
+++ b/meson.build
@@ -69,7 +69,7 @@ if get_option('with_x11') != 'no'
version : libva_version,
required : get_option('with_x11') == 'yes')
- HAVE_X11 = libva_x11_dep.found()
+ WITH_X11 = libva_x11_dep.found()
endif
WITH_WAYLAND = false