From 5757ab645cae1d844d6d457ab2dea4a12d21a4e7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 1 Oct 2011 04:40:15 +0000 Subject: Support inline display of HTML LV2 documentation via WebKit. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3515 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index 375b0597..489eb65e 100644 --- a/wscript +++ b/wscript @@ -63,6 +63,8 @@ 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, 'flowcanvas-1', uselib_store='FLOWCANVAS', atleast_version='1.0.0', mandatory=False) if not Options.options.no_http: @@ -117,6 +119,8 @@ def configure(conf): autowaf.display_msg(conf, "HTTP", conf.is_defined('HAVE_SOUP')) autowaf.display_msg(conf, "LV2", conf.is_defined('HAVE_LILV')) autowaf.display_msg(conf, "GUI", str(conf.env['INGEN_BUILD_GUI'] == 1)) + autowaf.display_msg(conf, "HTML plugin documentation support", + conf.is_defined('HAVE_WEBKIT')) print('') def build(bld): -- cgit v1.2.1