diff options
author | Marek Olšák <marek.olsak@amd.com> | 2019-01-23 19:48:26 -0500 |
---|---|---|
committer | Marek Olšák <marek.olsak@amd.com> | 2019-02-03 18:39:57 -0500 |
commit | 1e85cfb91a08565f28f51cc19573324722765823 (patch) | |
tree | 2e6715e77439bcbfac9c3da678b675dfdeed50e6 /meson.build | |
parent | 808bf59cac793bc6c7de04eee4e23e6921a8a7b5 (diff) |
meson: drop the xcb-xrandr version requirement
autotools doesn't have any requirement. This fixes meson on Ubuntu 16.04.
Cc: 18.3 19.0 <mesa-stable@lists.freedesktop.org>
Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index d975b0dbf4be..bfff862c3c8a 100644 --- a/meson.build +++ b/meson.build @@ -1400,7 +1400,7 @@ if with_platform_x11 dep_xcb_xfixes = dependency('xcb-xfixes') endif if with_xlib_lease - dep_xcb_xrandr = dependency('xcb-randr', version : '>= 1.12') + dep_xcb_xrandr = dependency('xcb-randr') dep_xlib_xrandr = dependency('xrandr', version : '>= 1.3') endif endif |