diff options
author | David Robillard <d@drobilla.net> | 2014-01-04 04:37:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-01-04 04:37:14 +0000 |
commit | 39fd0894a1402f23ce4b5243ec595764aa11625c (patch) | |
tree | cb08507d5cf0193d907d0514dbd407b297d866ad /wscript | |
parent | bcc0b2d27797d07bf48de1b3a03dea7f878cb2b6 (diff) | |
download | ingen-39fd0894a1402f23ce4b5243ec595764aa11625c.tar.gz ingen-39fd0894a1402f23ce4b5243ec595764aa11625c.tar.bz2 ingen-39fd0894a1402f23ce4b5243ec595764aa11625c.zip |
Fix documentation pane.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5256 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -23,6 +23,8 @@ def options(opt): help='Ingen module install directory [Default: PREFIX/lib/ingen]') opt.add_option('--no-gui', action='store_true', dest='no_gui', help='Do not build GUI') + opt.add_option('--no-webkit', action='store_true', dest='no_webkit', + help='Do not use webkit to display plugin documentation') opt.add_option('--no-jack-session', action='store_true', default=False, dest='no_jack_session', help='Do not build JACK session support') @@ -56,7 +58,7 @@ def configure(conf): autowaf.check_pkg(conf, 'jack', uselib_store='JACK', atleast_version='0.120.0', mandatory=False) autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV', - atleast_version='0.16.1', mandatory=True) + atleast_version='0.17.0', mandatory=True) autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL', atleast_version='0.2.0', mandatory=True) autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM', @@ -72,10 +74,11 @@ def configure(conf): atleast_version='2.12.0', mandatory=False) autowaf.check_pkg(conf, 'gtkmm-2.4', uselib_store='NEW_GTKMM', atleast_version='2.14.0', mandatory=False) - autowaf.check_pkg(conf, 'webkit-1.0', uselib_store='WEBKIT', - atleast_version='1.4.0', mandatory=False) autowaf.check_pkg(conf, 'ganv-1', uselib_store='GANV', atleast_version='1.2.1', mandatory=False) + if not Options.options.no_webkit: + autowaf.check_pkg(conf, 'webkit-1.0', uselib_store='WEBKIT', + atleast_version='1.4.0', mandatory=False) if not Options.options.no_socket: conf.check_cc(function_name='socket', header_name='sys/socket.h', |