From c57cd129407c904f8c2f752a59d0183df7b01a5e Mon Sep 17 00:00:00 2001 From: Steve Chaplin <> Date: Sat, 22 Dec 2012 12:15:28 +0800 Subject: Update waf to 1.7.8 --- waf | Bin 87674 -> 90242 bytes wscript | 18 ++++++++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/waf b/waf index e1e34d4..59c7e9c 100755 Binary files a/waf and b/waf differ diff --git a/wscript b/wscript index cb55348..02c2e41 100644 --- a/wscript +++ b/wscript @@ -14,18 +14,24 @@ xpyb_version_required = '1.3' # optional def options(ctx): print(' %s/options()' %d) - ctx.tool_options('gnu_dirs') - ctx.tool_options('compiler_cc') - ctx.tool_options('python') # options for disabling pyc or pyo compilation +# ctx.tool_options('gnu_dirs') +# ctx.tool_options('compiler_cc') +# ctx.tool_options('python') # options for disabling pyc or pyo compilation + ctx.load('gnu_dirs') + ctx.load('compiler_cc') + ctx.load('python') # options for disabling pyc or pyo compilation def configure(ctx): print(' %s/configure()' %d) env = ctx.env - ctx.check_tool('gnu_dirs') - ctx.check_tool('compiler_cc') - ctx.check_tool('python') +# ctx.check_tool('gnu_dirs') +# ctx.check_tool('compiler_cc') +# ctx.check_tool('python') + ctx.load('gnu_dirs') + ctx.load('compiler_cc') + ctx.load('python') ctx.check_python_version((3,1,0)) ctx.check_python_headers() -- cgit v1.2.1