From 6d02219044cbafc072c0eed93ce65eddc17b0961 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 21 Mar 2012 05:35:43 +0000 Subject: Implement resize extension automatically at the wrapper level. git-svn-id: http://svn.drobilla.net/lad/trunk/suil@4095 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index 21cbb1f..75f52ec 100644 --- a/wscript +++ b/wscript @@ -43,6 +43,11 @@ def configure(conf): conf.env.append_unique('CFLAGS', '-std=c99') autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-extensions-ui', uselib_store='LV2_UI') + autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-ui-resize', + uselib_store='LV2_UI_RESIZE', mandatory=False) + + if conf.env['HAVE_LV2_UI_RESIZE']: + autowaf.define(conf, 'HAVE_LV2_UI_RESIZE', 1) autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2', atleast_version='2.18.0', mandatory=False) -- cgit v1.2.1