diff options
author | David Robillard <d@drobilla.net> | 2022-05-26 10:02:39 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-26 10:02:39 -0400 |
commit | 13eec9c0e2372e4e01b636e9a3d557da927552f6 (patch) | |
tree | c363198015f4a936c7be5d4a080eae3a3a19157b | |
parent | 6e556e0818d096befb969e5f8c49f52437a2cece (diff) | |
download | suil-13eec9c0e2372e4e01b636e9a3d557da927552f6.tar.gz suil-13eec9c0e2372e4e01b636e9a3d557da927552f6.tar.bz2 suil-13eec9c0e2372e4e01b636e9a3d557da927552f6.zip |
Only build Qt5 in Gtk3 wrapper if Gtk3 X11 support is available
GtkSocket depends on X11.
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -177,7 +177,7 @@ def configure(conf): if conf.env.HAVE_GTK3 and conf.env.HAVE_GTK3_X11: enable_module('SUIL_WITH_X11_IN_GTK3') - if conf.env.HAVE_GTK3 and conf.env.HAVE_QT5: + if conf.env.HAVE_GTK3 and conf.env.HAVE_GTK3_X11 and conf.env.HAVE_QT5: enable_module('SUIL_WITH_QT5_IN_GTK3') if conf.env.HAVE_GTK2 and conf.env.HAVE_GTK2_QUARTZ: |