From: Colin Clark Date: Sat, 27 May 2023 10:00:44 +0000 (+0100) Subject: Include check for existence of xvfb in meson.build X-Git-Tag: v2.1~41 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=ab3321550c3a42c77e291bc503625e2fd093f25b Include check for existence of xvfb in meson.build --- diff --git a/meson.build b/meson.build index 49e10dc0..660aa623 100644 --- a/meson.build +++ b/meson.build @@ -632,5 +632,11 @@ i18n.merge_file( configure_file(input: 'geeqie.spec.in', output: 'geeqie.spec', configuration: conf_data) # Basic test of the executable -xvfb = find_program('xvfb-run') -test('Basic test', xvfb, args: ['--auto-servernum', geeqie_exe, '--version'], timeout: 100) +xvfb = find_program('xvfb-run', required : false) +if xvfb.found() + test('Basic test', xvfb, args: ['--auto-servernum', geeqie_exe, '--version'], timeout: 100) + summary({'xvfb' : ['Test runs:', true]}, section : 'Debugging', bool_yn : true) +else + summary({'xvfb' : ['Test runs:', false]}, section : 'Debugging', bool_yn : true) + +endif