summaryrefslogtreecommitdiff
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Update ronnjs (fix rendering of html self-closing tags)Jérémy Lal2010-07-142-17/+19
|
* lib/node, not lib/nodejs !Jérémy Lal2010-07-121-1/+1
|
* Use ronnjs 0.2 to generate docs. Small cosmetic change.Jérémy Lal2010-07-128-0/+2251
|
* Environment variables NODE_PREFIX, NODE_PATH in node-wafJérémy Lal2010-07-121-9/+33
| | | | | | | | | | | | Those variables have following defaults : - NODE_PREFIX is relative to the current path of the node_addon.py file It is used as the base path of node include files. - NODE_PATH is ~/.node_libraries It's where modules are installed when calling `node-waf install` Note .js files must be explicitely installed by the module's wscript. Usage : NODE_PREFIX=/usr/local NODE_PATH=~/.node_libraries node-waf configure
* Remove a bunch of useless waf filesRyan Dahl2010-07-0423-4204/+0
|
* Add my awk script to update AUTHORS fileRyan Dahl2010-07-011-0/+13
|
* Execute message tests by defaultRyan Dahl2010-06-191-1/+1
|
* Make addon building work for Cygwin.Brian McKenna2010-06-111-0/+3
|
* addons should have debugging symbolsRyan Dahl2010-05-291-0/+4
|
* Upgrade Waf to 1.5.16Ryan Dahl2010-04-1824-74/+748
|
* Upgrade to WAF 1.5.15Ryan Dahl2010-04-0422-95/+192
|
* Include lib/ directory in node executable. Compile on demand.Ryan Dahl2010-03-151-3/+16
| | | | | | | | | | | | | | 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.
* Upgrade waf to 1.5.14aRyan Dahl2010-03-081-1/+3
|
* Upgrade WAF to 1.5.14Ryan Dahl2010-03-0836-454/+1045
|
* Split tests.arlolra2010-02-251-1/+1
|
* Use Google's jsmin.py so that Node can be used for evilRyan Dahl2010-02-082-219/+3
|
* Revert "Adding output of Platform information into the test runner"Ryan Dahl2010-02-031-1/+0
| | | | | | Broken on at least one platform http://pastie.org/808217 This reverts commit 704f394c6671af5b981900fc3666f1b97ef580a9.
* Adding output of Platform information into the test runnerMicheil Smith2010-01-291-0/+1
|
* Adding OS X .dmg build scripts.Standa Opichal2010-01-272-0/+88
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simply place this into the root of your nodejs git working copy and run ./tools/osx-dist.sh. It will create an dist-osx folder which will comprise of the resulting .dmg file (install path is /usr/local/nodejs with symlinks added to /usr/local/bin) along with other files used during its construction. $ ls -1 dist-osx/ nodejs-v0.1.26-11-gcd6397c nodejs-v0.1.26-11-gcd6397c.dmg nodejs-v0.1.26-11-gcd6397c.pkg nodejs-v0.1.26-11-gcd6397c.plist The resulting installed package is going to be visible using the OS X 'pkgutil --packages' command. You can even safely uninstall sudoing 'pkgutil --unlink org.nodejs.NodeJS-...' and subsequently let the system forget about the package being ever seen by 'pkgutil --forget org.nodejs.NodeJS-...'. Here is the current package ID I have installed: $ pkgutil --pkgs | grep node org.nodejs.NodeJS-v0.1.26-11-gcd6397c Use this patch freely without hesitation. Signed-off-by: Standa Opichal <opichals@gmail.com>
* Initial Solaris supportRyan Dahl2010-01-191-1/+1
|
* Upgrade waf to 1.5.10Ryan Dahl2009-12-0945-385/+623
|
* Use bundle flags for osx in node-wafRyan Dahl2009-10-121-0/+4
|
* Fix build.Ryan Dahl2009-10-072-51/+245
| | | | | - Add -f flag to rm on make clean. - Use old jsmin - the new one seems to be broken.
* Upgrade v8 to 1.3.14Ryan Dahl2009-10-071-27/+50
|
* Modify node_addon configure apiRyan Dahl2009-10-041-8/+12
|
* Add node-waf to help with building addons.Ryan Dahl2009-10-041-0/+34
|
* Use waf-light instead of wafRyan Dahl2009-10-0263-0/+15736
| | | | | This way there won't be strange tools/.waf-12343 directories hanging about. All that waf needs to run is inside the tools/wafadmin directory.
* Update test script to use new debug build's name: node_gRyan2009-08-311-1/+1
|
* Fix bug waf problem with HAVE_CLOCK_SYSCALLRyan2009-06-221-0/+0
|
* Use v8's test runnerRyan2009-06-224-218/+1346
|
* Create tools directoryRyan2009-06-22185-0/+47854
Users will need to "make distclean" to recompile from scratch since I've moved a lot of the core build tools around.