summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS7
-rwxr-xr-xwafbin80004 -> 95133 bytes
-rw-r--r--wscript8
3 files changed, 11 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 88322d2..a3e5e1b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+suil (0.6.10) stable;
+
+ * Downgrade to waf 1.7.5, previous version does not build modules due to
+ package check breakage in waf 1.7.6
+
+ -- David Robillard <d@drobilla.net> Sat, 22 Dec 2012 23:08:06 -0500
+
suil (0.6.8) stable;
* Fix crash in x11_in_gtk2 when event_filter fires before widget is realized
diff --git a/waf b/waf
index 3945ced..62bc9d1 100755
--- a/waf
+++ b/waf
Binary files differ
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)