Ryan Dahl
72246d97a2
Complete GYP support for Python 2.5.2
2011-08-15 18:26:48 -07:00
Ryan Dahl
e57ed540e6
GYP Support python 2.5.2
2011-08-15 21:18:21 -04:00
Ryan Dahl
b433c42a56
gyp: Support Linux
2011-08-15 21:17:02 -04:00
Mikeal Rogers
584ae7b084
Remove http.cat. fixes #1447
2011-08-16 01:24:41 +02:00
Ryan Dahl
721f26520d
Upgrade GYP to r999
...
To fix osx/make build http://codereview.chromium.org/7618052
2011-08-15 15:47:18 -07:00
Ryan Dahl
66f77963a3
Upgrade GYP to r995
2011-08-15 13:49:15 -07:00
Ryan Dahl
25a5e90289
Fix GYP build on OSX
...
Broken due to DOS line endings.
./configure-gyp
make -f Makefile-gyp
2011-08-15 13:41:07 -07:00
Nathan Rajlich
54b409d650
util: isRegExp() should not call toString() on its argument
...
An overloaded toString() method may have side effects
so don't call it for a simple type check.
2011-08-15 17:22:48 +02:00
Bert Belder
9728723508
node_crypto: interface with libuv, not libev
2011-08-15 02:30:35 +02:00
Peter Bright
16788f461a
Rename gyp files to produce useful solution names.
...
Hoist common settings into common.gypi.
Restrict v8's common.gypi to v8 projects.
Ensure v8 doesn't use /MP in debug builds.
Add basic settings for other platforms.
Make uv import common.gypi properly.
Remove LTCG warning.
2011-08-13 19:57:42 -07:00
Thomas Shinnick
a5d90c435c
path.js: correct three harmless .length typos
...
lib/path.js routines normalizeArray() and resolve() have for loops that
count down from end of an array. The loop indexes are initialized using
"array.length" rather than "array.length-1". The initial array element
accessed is always beyond the end of array and the value is 'undefined'.
Strangely, code exists that acts to ignore undefined values so that the
typos are unnoticeable.
Existing tests emit no errors either before or after changing to "length-1".
Tests _do_ start failing at "length-2". (Actually it is node that starts
to fail at "length-2" - that's a valid enough test...)
2011-08-14 04:10:42 +02:00
Ben Noordhuis
bfc2982f10
uv: upgrade to 5899192
2011-08-14 03:15:12 +02:00
Ben Noordhuis
eaac88163a
module: fix pointer reference to out-of-scope variable
...
Reported by Tom Hughes.
2011-08-14 01:25:39 +02:00
Thomas Shinnick
59b815b097
test: add typed arrays to known globals list
2011-08-13 23:51:31 +02:00
Fedor Indutny
c0d8311f6b
small NPN doc fix
...
Fixes #1522 .
2011-08-14 02:51:35 +09:00
Artem Zaytsev
a38bda9fb2
platform: fix GetFreeMemory() on 64 bits freebsd
...
v_free_count is defined as u_int v_free_count (struct vmmeter sys/vmmeter.h:87)
but variable info defined as unsigned long, this cause error on 64-bits systems
because higher 32 bits remain uninitialized
2011-08-12 19:17:05 +02:00
Ben Noordhuis
97b0000c53
build: add src/v8_typed_array.cc to gyp sources list
2011-08-12 18:58:54 +02:00
Ben Noordhuis
cbea40eaf2
typed arrays: fix signed/unsigned compiler warnings
2011-08-12 18:52:06 +02:00
Ben Noordhuis
4726504663
typed arrays: preliminary benchmarks
2011-08-12 18:42:24 +02:00
Ben Noordhuis
efcbe3b21a
typed arrays: add Float64Array
2011-08-12 18:42:24 +02:00
Ben Noordhuis
83b211ecb2
typed arrays: alias method subarray() to slice()
2011-08-12 18:42:24 +02:00
Ben Noordhuis
7cab4d6870
typed arrays: integrate plask's typed array implementation
2011-08-12 18:42:24 +02:00
Glen Low
04122ad2d3
crypto: PBKDF2 function from OpenSSL
2011-08-12 16:23:11 +02:00
Ben Noordhuis
01b64fc36b
uv: upgrade to 7f82995
2011-08-12 16:14:58 +02:00
Brian White
b7c23ac3f5
Incorporate endianness into buffer.read* function names instead of passing in a boolean flag
2011-08-12 15:49:57 +02:00
Ben Noordhuis
a002f4f453
test: enable simple/test-http-dns-error for `make test-uv`
2011-08-12 15:46:44 +02:00
Ben Noordhuis
3cac57658f
test: add test for #1202 , uncatchable exception on bad host name
2011-08-12 15:23:29 +02:00
Ben Noordhuis
fa378ee4d8
net: defer DNS lookup error events to next tick
...
net.createConnection() creates a net.Socket object
and immediately calls net.Socket.connect() on it.
There are no event listeners registered yet so
defer the error event to the next tick.
Fixes #1202 .
2011-08-12 15:22:56 +02:00
Ryan Dahl
5b58473b40
Now working on v0.5.5
2011-08-12 02:15:19 -07:00
Ryan Dahl
cfba1f5922
Bump version to v0.5.4
2011-08-12 01:17:05 -07:00
Ryan Dahl
6c614fe585
Upgrade libuv to 65f71a2
2011-08-12 01:14:46 -07:00
Ryan Dahl
89bed19513
Upgrade V8 to v3.5.4
2011-08-11 23:59:21 -07:00
Ryan Dahl
fb7faefbf5
Upgrade libuv to d358738
2011-08-11 17:25:55 -07:00
Ryan Dahl
2c11718d79
Add some debug output to test-child-process-double-pipe
2011-08-11 17:25:55 -07:00
Ryan Dahl
3a219de586
net_uv: resume on closed net.Socket shouldn't crash
2011-08-11 17:25:54 -07:00
Ben Noordhuis
3cd694c9f3
build: .gitignore build/ directory
2011-08-12 01:10:41 +02:00
isaacs
ac4791393e
Fix #1497 querystring: Replace 'in' test with 'hasOwnProperty'
2011-08-11 15:36:02 -07:00
Ben Noordhuis
eb09b0644b
http: destroy socket on error
...
Needs further investigation, the test passed without `--use-uv`.
Fixes failing test:
test/simple/test-http-dns-fail.js
2011-08-11 23:39:38 +02:00
Ryan Dahl
3d4ae3ab4d
net_uv: pipes don't have getsockname
2011-08-11 10:44:20 -07:00
Ben Noordhuis
79f064f565
net: properly export remoteAddress to user land
...
Fixes failing test:
test/simple/test-net-remote-address-port.js
2011-08-11 17:51:03 +02:00
Ben Noordhuis
f52a8db280
test: fix logic error in test-net-remote-address-port.js
...
The test intended to register an 'at exit' listener
but called `process.exit()` instead.
2011-08-11 16:26:01 +02:00
Peter Bright
b9d777734d
Fix MSVS building.
2011-08-11 04:52:33 +02:00
Bert Belder
74e8fa2e57
Upgrade libuv to ca633920f564167158d0bb82989d842a47c27d56
2011-08-11 04:38:41 +02:00
Ben Noordhuis
fcf9cfa137
node: propagate --use-uv to child processes
2011-08-11 02:47:43 +02:00
Ben Noordhuis
ef496dc39d
uv: upgrade to e8497ae
2011-08-11 02:46:02 +02:00
Ryan Dahl
e6b06bc6c5
win: fix test-process-env
...
Remove support for setting process.env.TZ as it doesn't seem we can do it
x-platform without fixing V8.
2011-08-10 17:15:13 -07:00
Ben Noordhuis
e62cdd0488
uv: upgrade to b328e4c
2011-08-11 01:40:16 +02:00
Ben Noordhuis
c4549b8573
uv: upgrade to b6b97f3
2011-08-11 00:37:45 +02:00
Ben Noordhuis
460614125b
tcp: propagate libuv tcp accept() errors to net_uv.js
2011-08-11 00:36:58 +02:00
Ryan Dahl
46b0654347
Upgrade libuv to db190c7
2011-08-10 14:23:26 -07:00