summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Chaplin <>2012-12-22 12:15:28 +0800
committerSteve Chaplin <>2012-12-22 12:15:28 +0800
commitc57cd129407c904f8c2f752a59d0183df7b01a5e (patch)
tree3e59e4d32a1fee8d2bb2095c7a6b8f2a1aeaafa1
parent75e82a1b3f495a3abbc78e50a5c66356d320fb15 (diff)
Update waf to 1.7.8
-rwxr-xr-xwafbin87674 -> 90242 bytes
-rw-r--r--wscript18
2 files changed, 12 insertions, 6 deletions
diff --git a/waf b/waf
index e1e34d4..59c7e9c 100755
--- a/waf
+++ b/waf
Binary files 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()