summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-12-23 04:22:27 +0000
committerDavid Robillard <d@drobilla.net>2012-12-23 04:22:27 +0000
commitca059b52527d3860321c91d221cfc701ace93079 (patch)
tree2927e8d4de8e34f805780bc8dc1c16f9ac3b09b5 /wscript
parentf56bacfc6ebc8c678d36c5f06d2c953d38b101ff (diff)
downloadsuil-ca059b52527d3860321c91d221cfc701ace93079.tar.gz
suil-ca059b52527d3860321c91d221cfc701ace93079.tar.bz2
suil-ca059b52527d3860321c91d221cfc701ace93079.zip
Suil 0.6.10v0.6.10
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@4894 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/wscript b/wscript
index 47a2cd5..14a68ec 100644
--- a/wscript
+++ b/wscript
@@ -9,7 +9,7 @@ import waflib.extras.autowaf as autowaf
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
-SUIL_VERSION = '0.6.8'
+SUIL_VERSION = '0.6.10'
SUIL_MAJOR_VERSION = '0'
# Mandatory waf variables
@@ -55,11 +55,11 @@ def configure(conf):
autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2',
atleast_version='2.18.0', mandatory=False)
- if not conf.env.HAVE_GTK2:
+ if not conf.is_defined('HAVE_GTK2'):
autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2',
atleast_version='2.0.0', mandatory=False)
- if conf.env.HAVE_GTK:
- autowaf.define('SUIL_OLD_GTK', 1)
+ if conf.is_defined('HAVE_GTK2'):
+ autowaf.define(conf, 'SUIL_OLD_GTK', 1)
autowaf.check_pkg(conf, 'gtk+-x11-2.0', uselib_store='GTK2_X11',
atleast_version='2.0.0', mandatory=False)