summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-03-14 17:45:15 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-03-14 17:45:15 -0700
commit247d88011349be8e8b47486b67b70842de09a43c (patch)
tree36f5339ef3ba5931f27ff33ae2dce44c1f6d9b84 /wscript
parent2c185a9dfd3be8e718858b946333c433c375c295 (diff)
parent55048cdf79f3c607ab986c35d0422e591e7f6448 (diff)
downloadandroid-node-v8-247d88011349be8e8b47486b67b70842de09a43c.tar.gz
android-node-v8-247d88011349be8e8b47486b67b70842de09a43c.tar.bz2
android-node-v8-247d88011349be8e8b47486b67b70842de09a43c.zip
Merge branch 'v0.4'
Conflicts: src/node_version.h
Diffstat (limited to 'wscript')
-rw-r--r--wscript25
1 files changed, 24 insertions, 1 deletions
diff --git a/wscript b/wscript
index 526195456d..e0f1748fad 100644
--- a/wscript
+++ b/wscript
@@ -1,4 +1,26 @@
#!/usr/bin/env python
+
+# Copyright Joyent, Inc. and other Node contributors.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to permit
+# persons to whom the Software is furnished to do so, subject to the
+# following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+# USE OR OTHER DEALINGS IN THE SOFTWARE.
+
import re
import Options
import sys, os, shutil, glob
@@ -818,6 +840,7 @@ def build(bld):
src/node_script.cc
src/node_os.cc
src/node_dtrace.cc
+ src/node_string.cc
"""
if sys.platform.startswith("win32"):
@@ -860,7 +883,7 @@ def build(bld):
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
, 'PREFIX' : safe_path(program.env["PREFIX"])
- , 'VERSION' : '0.4.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
+ , 'VERSION' : '0.4.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
}
return x