diff options
author | David Robillard <d@drobilla.net> | 2022-08-15 17:12:06 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-15 17:12:06 -0400 |
commit | ecebfdb35fd8af72dc918ff34ae3f3366521925d (patch) | |
tree | c0a1b8f6e85a2df04d206967881617f858be3b5f | |
parent | 78bf2c798ae304751ecda2f14e2b25b83fd5b6b5 (diff) | |
download | suil-ecebfdb35fd8af72dc918ff34ae3f3366521925d.tar.gz suil-ecebfdb35fd8af72dc918ff34ae3f3366521925d.tar.bz2 suil-ecebfdb35fd8af72dc918ff34ae3f3366521925d.zip |
Fix MacOS build when Gtk3 and Qt5 are present without X11
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | meson.build | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +suil (0.10.17) unstable; urgency=medium + + * Fix MacOS build when Gtk3 and Qt5 are present without X11 + + -- David Robillard <d@drobilla.net> 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'), |