Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'master' into net2 | Ryan Dahl | 2010-03-19 | 1 | -2/+30 |
|\ | | | | | | | | | Conflicts: test/simple/test-event-emitter-modify-in-emit.js | ||||
| * | bump versionv0.1.33 | Ryan Dahl | 2010-03-19 | 1 | -1/+1 |
| | | |||||
| * | Eliminate debug(x) statements from src/node.js and lib/*.js for release build | Zoka | 2010-03-19 | 1 | -1/+29 |
| | | | | | | | | http://groups.google.com/group/nodejs/browse_thread/thread/8f20bcef6d6d96b7 | ||||
* | | Merge branch 'master' into net2 | Ryan Dahl | 2010-03-15 | 1 | -9/+7 |
|\ \ | |/ | | | | | | | Conflicts: src/node.cc | ||||
| * | Use uniform watcher names | Ryan Dahl | 2010-03-15 | 1 | -2/+2 |
| | | |||||
| * | Include lib/ directory in node executable. Compile on demand. | Ryan Dahl | 2010-03-15 | 1 | -5/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of installing the files in /usr/lib/node/libraries and loading them from the file system, the files are built-in to the node executable. However, they are only compiled on demand. The reasoning is: 1. Allow for more complex internal javascript. In particular, process.stdout and process.stdin can be js implemented streams. 2. Ease system installs. Loading from disk each time is unnecessary overhead. Note that there is no "system" path for modules anymore. Only $HOME/.node_libraries. | ||||
| * | small wscript error | Ryan Dahl | 2010-03-13 | 1 | -1/+1 |
| | | |||||
| * | bump versionv0.1.32 | Ryan Dahl | 2010-03-12 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into HEAD | Ryan Dahl | 2010-03-12 | 1 | -22/+55 |
|\ \ | |/ | | | | | | | | | Conflicts: lib/fs.js wscript | ||||
| * | Add --system option to configure, so make uses V8, EV, UDNS system libraries ↵ | Jérémy Lal | 2010-03-11 | 1 | -22/+55 |
| | | | | | | | | and headers. | ||||
* | | Merge branch 'master' into net2 | Ryan Dahl | 2010-03-05 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | bump versionv0.1.31 | Ryan Dahl | 2010-03-05 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into net2 | Ryan Dahl | 2010-03-02 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix shebang in wscript | Ryan Dahl | 2010-03-01 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into net2 | Ryan Dahl | 2010-02-22 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | bump versionv0.1.30 | Ryan Dahl | 2010-02-22 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into net2 | Ryan Dahl | 2010-02-17 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | bump versionv0.1.29 | Ryan Dahl | 2010-02-17 | 1 | -1/+1 |
| | | |||||
| * | Add /opt/local/lib as a search path for gpg-error | Ryan Dahl | 2010-02-17 | 1 | -1/+1 |
| | | | | | | | | Why doesn't WAF just search LD_LIBRARY_PATH? | ||||
* | | Merge branch 'master' into net2 | Ryan Dahl | 2010-02-10 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Build system: support spaces in directory names | masuidrive | 2010-02-10 | 1 | -3/+3 |
| | | |||||
| * | bump versionv0.1.28 | Ryan Dahl | 2010-02-09 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into net2 | Ryan Dahl | 2010-02-05 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | bump versionv0.1.27 | Ryan Dahl | 2010-02-03 | 1 | -1/+1 |
| | | |||||
* | | Reimplment Buffers | Ryan Dahl | 2010-01-27 | 1 | -1/+1 |
| | | |||||
* | | use efence again | Ryan Dahl | 2010-01-26 | 1 | -3/+3 |
| | | |||||
* | | Implement new http-parser binding using Buffer | Ryan Dahl | 2010-01-24 | 1 | -0/+1 |
| | | |||||
* | | Merge branch 'develop' into net2 | Ryan Dahl | 2010-01-20 | 1 | -7/+25 |
|\ \ | |/ | | | | | | | Conflicts: src/node.cc | ||||
| * | bump versionv0.1.26 | Ryan Dahl | 2010-01-20 | 1 | -1/+1 |
| | | |||||
| * | Initial Solaris support | Ryan Dahl | 2010-01-19 | 1 | -6/+23 |
| | | |||||
| * | Add process.IdleWatcher | Ryan Dahl | 2010-01-18 | 1 | -0/+1 |
| | | | | | | | | With priorities. Will be used for process.nextLoop(). | ||||
* | | Merge branch 'master' into net2 | Ryan Dahl | 2010-01-12 | 1 | -3/+8 |
|\ \ | |/ | |||||
| * | Make sure GNUTLS is first on uselib | Ryan Dahl | 2010-01-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | Why? Because I have two versions of GnuTLS installed - one is old 2.0.X in /usr and one is new 2.5.X in ~/local/gnutls. waf correctly finds that the newer version, but because GNUTLS was behind other libraries in the node.uselib -L/usr/lib was before -L/home/ryan/local/gnutls/lib in the actual gcc command - hence getting link errors. WAF SUCKS, really. I wish someone would invent a good build system that could avoid such problems. | ||||
| * | Error out when no compiler found | Ryan Dahl | 2010-01-11 | 1 | -0/+2 |
| | | |||||
| * | bump versionv0.1.25 | Ryan Dahl | 2010-01-09 | 1 | -1/+1 |
| | | |||||
| * | getmem for freebsd | Vanilla Hsu | 2010-01-06 | 1 | -2/+5 |
| | | |||||
| * | bump versionv0.1.24 | Ryan Dahl | 2009-12-31 | 1 | -1/+1 |
| | | |||||
* | | Back to 64kb stack size - enlarging it was a typo | Ryan Dahl | 2009-12-30 | 1 | -1/+1 |
| | | |||||
* | | implement getaddrinfo | Ryan Dahl | 2009-12-29 | 1 | -1/+1 |
| | | |||||
* | | Start on net2 | Ryan Dahl | 2009-12-29 | 1 | -0/+1 |
| | | |||||
* | | add io watcher | Ryan Dahl | 2009-12-29 | 1 | -0/+1 |
| | | |||||
* | | Rename blob to buffer. | Ryan Dahl | 2009-12-29 | 1 | -1/+1 |
| | | |||||
* | | initial blobs | Ryan Dahl | 2009-12-29 | 1 | -0/+1 |
|/ | |||||
* | bump versionv0.1.23 | Ryan Dahl | 2009-12-22 | 1 | -1/+1 |
| | |||||
* | bump versionv0.1.22 | Ryan Dahl | 2009-12-19 | 1 | -1/+1 |
| | |||||
* | note about why execinfo detection fails on Darwin even though it exists | Rasmus Andersson | 2009-12-18 | 1 | -0/+2 |
| | |||||
* | Use conf.fatal() instead of fatal() in order to abort the configure script | Simon Cornelius P. Umacob | 2009-12-09 | 1 | -3/+3 |
| | |||||
* | bump versionv0.1.21 | Ryan Dahl | 2009-12-06 | 1 | -1/+1 |
| | |||||
* | bump versionv0.1.20 | Ryan Dahl | 2009-11-28 | 1 | -1/+1 |
| | |||||
* | Add gnutls version to configure script | Ryan Dahl | 2009-11-28 | 1 | -0/+1 |
| |