diff options
author | David Robillard <d@drobilla.net> | 2011-06-01 19:14:25 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-06-01 19:14:25 +0000 |
commit | b4241912379b321a1a2ec0d192faff12f8db2101 (patch) | |
tree | 9f9bb51ca2aefbcf0f3499f9388a5048773c7d62 /wscript | |
parent | 02fe4df201838c381d4106ec92849cbb5b959ccb (diff) | |
download | suil-b4241912379b321a1a2ec0d192faff12f8db2101.tar.gz suil-b4241912379b321a1a2ec0d192faff12f8db2101.tar.bz2 suil-b4241912379b321a1a2ec0d192faff12f8db2101.zip |
Fix GtkBuilder using (and likely other) Gtk UIs in Qt4 hosts that do not link to Gtk (fix ticket #696).
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@3345 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -7,7 +7,7 @@ from waflib.extras import autowaf as autowaf import waflib.Logs as Logs, waflib.Options as Options # Version of this package (even if built as a child) -SUIL_VERSION = '0.4.2' +SUIL_VERSION = '0.4.3' SUIL_MAJOR_VERSION = '0' # Library version (UNIX style major, minor, micro) @@ -27,6 +27,9 @@ out = 'build' def options(opt): autowaf.set_options(opt) + opt.add_option('--gtk2-lib-name', type='string', dest='gtk2_lib_name', + default="libgtk-x11-2.0.so", + help="Gtk2 library name [Default: libgtk-x11-2.0.so]") def configure(conf): conf.line_just = 56 @@ -54,13 +57,18 @@ def configure(conf): conf.env['LIBDIR'] + '/suil-' + SUIL_MAJOR_VERSION) autowaf.define(conf, 'SUIL_DIR_SEP', '/') autowaf.define(conf, 'SUIL_MODULE_EXT', '.so') + autowaf.define(conf, 'SUIL_GTK2_LIB_NAME', Options.options.gtk2_lib_name); conf.env['LIB_SUIL'] = ['suil-%s' % SUIL_MAJOR_VERSION] conf.write_config_header('suil-config.h', remove=False) - autowaf.display_msg(conf, "Gtk2 Support", conf.is_defined('HAVE_GTK2')) - autowaf.display_msg(conf, "Qt4 Support", conf.is_defined('HAVE_QT4')) + autowaf.display_msg(conf, "Gtk2 Support", + conf.is_defined('HAVE_GTK2')) + autowaf.display_msg(conf, "Gtk2 Library Name", + conf.env['SUIL_GTK2_LIB_NAME']) + autowaf.display_msg(conf, "Qt4 Support", + conf.is_defined('HAVE_QT4')) print('') def build(bld): |