meson: Fix build with x11 dependency is disabled
authorNirbheek Chauhan <nirbheek@centricular.com>
Tue, 31 Jul 2018 18:02:42 +0000 (23:32 +0530)
committerNirbheek Chauhan <nirbheek@centricular.com>
Tue, 31 Jul 2018 18:02:42 +0000 (23:32 +0530)
gtk_x11_dep is used unconditionally in tests/icles/meson.build

meson.build

index 4393440..9198b6d 100644 (file)
@@ -222,6 +222,8 @@ gtk_dep = dependency('gtk+-3.0', version : '>= 3.10', required : get_option('exa
 # TODO: https://github.com/mesonbuild/meson/issues/3941
 if not get_option('x11').disabled()
   gtk_x11_dep = dependency('gtk+-x11-3.0', version : '>= 3.10', required : get_option('examples'))
+else
+  gtk_x11_dep = dependency('', required : false)
 endif
 # gtk+ quartz backend is only available on macOS
 if host_system == 'darwin'