diff options
author | David Robillard <d@drobilla.net> | 2017-03-20 09:06:37 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-03-20 09:06:37 +0100 |
commit | 86c1666b1de5d291661549a4e9c49ec0314fd4fb (patch) | |
tree | 9116a8815162af72e2c69c65fb2b394cb630ca3e /wscript | |
parent | 43a25ed63a9144afe32a4fea520412770394822c (diff) | |
download | suil-86c1666b1de5d291661549a4e9c49ec0314fd4fb.tar.gz suil-86c1666b1de5d291661549a4e9c49ec0314fd4fb.tar.bz2 suil-86c1666b1de5d291661549a4e9c49ec0314fd4fb.zip |
Fix build without X11
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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', |