From e420c36860732e5ea105187b758ccb737ec30936 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Wed, 19 Oct 2011 09:01:28 +0200 Subject: [PATCH] Enable Vala debug symbols and disable deprecations --- wscript | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index c7b616b2..8d66022b 100644 --- a/wscript +++ b/wscript @@ -301,9 +301,12 @@ def configure (conf): '-DGTK_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED ' '-DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE'.split ()) if debug_level == 'full': - conf.env.append_value ('VALAFLAGS', '--enable-checking'.split ()) + conf.env.append_value ('VALAFLAGS', '--debug --enable-checking'.split ()) + elif debug_level == 'debug': + conf.env.append_value ('VALAFLAGS', '--debug'.split ()) elif debug_level == 'none': conf.env.append_value ('VALAFLAGS', '--disable-assert') + conf.env.append_value ('VALAFLAGS', '--enable-deprecated') print (''' Localization: %(nls)s (intltool) Icon optimizations: %(icons)s (rsvg-convert)