From e9dc4e252f85e84038639f9e080e72e1effb50db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Wed, 23 Jan 2019 19:48:26 -0500 Subject: [PATCH] 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 Reviewed-by: Erik Faye-Lund (cherry picked from commit 1e85cfb91a08565f28f51cc19573324722765823) --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index d975b0dbf4b..bfff862c3c8 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