summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-03-20 09:06:37 +0100
committerDavid Robillard <d@drobilla.net>2017-03-20 09:06:37 +0100
commit86c1666b1de5d291661549a4e9c49ec0314fd4fb (patch)
tree9116a8815162af72e2c69c65fb2b394cb630ca3e
parent43a25ed63a9144afe32a4fea520412770394822c (diff)
downloadsuil-86c1666b1de5d291661549a4e9c49ec0314fd4fb.tar.gz
suil-86c1666b1de5d291661549a4e9c49ec0314fd4fb.tar.bz2
suil-86c1666b1de5d291661549a4e9c49ec0314fd4fb.zip
Fix build without X11
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 7f67d44..5141cbe 100644
--- a/wscript
+++ b/wscript
@@ -65,7 +65,7 @@ def configure(conf):
conf.env.NODELETE_FLAGS = ['-Wl,-z,nodelete']
autowaf.check_pkg(conf, 'lv2', atleast_version='1.12.0', uselib_store='LV2')
- autowaf.check_pkg(conf, 'x11', uselib_store='X11')
+ autowaf.check_pkg(conf, 'x11', uselib_store='X11', mandatory=False)
if not Options.options.no_gtk:
autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2',