From: Paolo Bonzini Date: Wed, 13 Dec 2023 10:33:41 +0000 (+0100) Subject: meson: use version_compare() to compare version X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7b47b13ea1672de7a0877156ed82b4a84c8a5c64;p=qemu.git meson: use version_compare() to compare version While a simple lexicographic comparison usually works, it is less robust than a more specific algorithm designed to compare versions. Signed-off-by: Paolo Bonzini --- diff --git a/qga/meson.build b/qga/meson.build index ff7a8496e4..a6af614891 100644 --- a/qga/meson.build +++ b/qga/meson.build @@ -140,7 +140,7 @@ if targetos == 'windows' qemu_ga_msi_vss = ['-D', 'InstallVss'] deps += qga_vss endif - if glib.version() < '2.73.2' + if glib.version().version_compare('<2.73.2') libpcre = 'libpcre1' else libpcre = 'libpcre2'