summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-02-22 21:22:01 +0000
committerDavid Robillard <d@drobilla.net>2013-02-22 21:22:01 +0000
commit28cf00ed548bd658039b2ee52e35829b1e6dc821 (patch)
tree32fd1c70198a57b8d1218f70c633945038b99a3f /wscript
parent61a8166c4fda5e3486ae9d19ff102e36a14bfcb0 (diff)
downloadsuil-28cf00ed548bd658039b2ee52e35829b1e6dc821.tar.gz
suil-28cf00ed548bd658039b2ee52e35829b1e6dc821.tar.bz2
suil-28cf00ed548bd658039b2ee52e35829b1e6dc821.zip
Fix key events for X11 in Gtk.
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5064 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript7
1 files changed, 0 insertions, 7 deletions
diff --git a/wscript b/wscript
index 9a64f3f..00313e2 100644
--- a/wscript
+++ b/wscript
@@ -26,8 +26,6 @@ def options(opt):
help="Build static library")
opt.add_option('--no-shared', action='store_true', dest='no_shared',
help='Do not build shared library')
- opt.add_option('--no-forward-keys', action='store_true', dest='no_forward_keys',
- help='Do not explicitly forward key events for X11 in Gtk')
opt.add_option('--gtk2-lib-name', type='string', dest='gtk2_lib_name',
default="libgtk-x11-2.0.so.0",
help="Gtk2 library name [Default: libgtk-x11-2.0.so.0]")
@@ -92,9 +90,6 @@ def configure(conf):
autowaf.define(conf, 'SUIL_MODULE_PREFIX', module_prefix)
autowaf.define(conf, 'SUIL_MODULE_EXT', module_ext)
- if not Options.options.no_forward_keys:
- autowaf.define(conf, 'SUIL_FORWARD_KEYS', 1)
-
autowaf.set_lib_env(conf, 'suil', SUIL_VERSION)
conf.write_config_header('suil_config.h', remove=False)
@@ -102,8 +97,6 @@ def configure(conf):
conf.is_defined('HAVE_GTK2'))
autowaf.display_msg(conf, "Gtk2 Library Name",
conf.env.SUIL_GTK2_LIB_NAME)
- autowaf.display_msg(conf, "Forward Gtk keys to X11 UI",
- conf.is_defined('SUIL_FORWARD_KEYS'))
autowaf.display_msg(conf, "Qt4 Support",
conf.is_defined('HAVE_QT4'))
print('')