From ecebfdb35fd8af72dc918ff34ae3f3366521925d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 15 Aug 2022 17:12:06 -0400 Subject: Fix MacOS build when Gtk3 and Qt5 are present without X11 --- NEWS | 6 ++++++ meson.build | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 8d46888..9b200d6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +suil (0.10.17) unstable; urgency=medium + + * Fix MacOS build when Gtk3 and Qt5 are present without X11 + + -- David Robillard Mon, 15 Aug 2022 21:09:19 +0000 + suil (0.10.16) stable; urgency=medium * Fix wrapper module installation path diff --git a/meson.build b/meson.build index b3d4a8c..a33859a 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('suil', ['c', 'cpp'], - version: '0.10.16', + version: '0.10.17', license: 'ISC', meson_version: '>= 0.56.0', default_options: [ @@ -249,7 +249,7 @@ if gtk3_dep.found() and gtk3_x11_dep.found() and x11_dep.found() ) endif -if gtk3_dep.found() and qt5_dep.found() +if gtk3_dep.found() and gtk3_x11_dep.found() and qt5_dep.found() shared_module( 'suil_qt5_in_gtk3', files('src/qt5_in_gtk.cpp'), -- cgit v1.2.1