Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 64645ce

Browse files
ceyusaxhaihao
authored andcommitted
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.
1 parent 2312d2c commit 64645ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ if get_option('with_x11') != 'no'
6969
version : libva_version,
7070
required : get_option('with_x11') == 'yes')
7171

72-
HAVE_X11 = libva_x11_dep.found()
72+
WITH_X11 = libva_x11_dep.found()
7373
endif
7474

7575
WITH_WAYLAND = false

0 commit comments

Comments
 (0)