summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-05-26 10:02:39 -0400
committerDavid Robillard <d@drobilla.net>2022-05-26 10:02:39 -0400
commit13eec9c0e2372e4e01b636e9a3d557da927552f6 (patch)
treec363198015f4a936c7be5d4a080eae3a3a19157b
parent6e556e0818d096befb969e5f8c49f52437a2cece (diff)
downloadsuil-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--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index e95b2dc..10188de 100644
--- a/wscript
+++ b/wscript
@@ -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: