Remove -Werror from deps/v8/SConstruct
authorRyan Dahl <ry@tinyclouds.org>
Tue, 9 Mar 2010 02:04:54 +0000 (18:04 -0800)
committerRyan Dahl <ry@tinyclouds.org>
Tue, 9 Mar 2010 02:04:59 +0000 (18:04 -0800)
-_-

benchmark/http_simple.js
deps/v8/SConstruct

index b83c2c9..9025e5d 100644 (file)
@@ -3,8 +3,7 @@ path = require("path");
 libDir = path.join(path.dirname(__filename), "../lib");
 require.paths.unshift(libDir);
 
-var sys = (require("sys"));
-for (var i in sys) global[i] = sys[i];
+var puts = require("sys").puts;
 http = require("http");
 
 fixed = ""
index 0b03803..5483663 100644 (file)
@@ -267,7 +267,6 @@ V8_EXTRA_FLAGS = {
   'gcc': {
     'all': {
       'WARNINGFLAGS': ['-Wall',
-                       '-Werror',
                        '-W',
                        '-Wno-unused-parameter',
                        '-Wnon-virtual-dtor']