summaryrefslogtreecommitdiff
path: root/node.gyp
AgeCommit message (Collapse)AuthorFilesLines
2012-08-29build: set `process.platform` to "sunos" on SunOSNathan Rajlich1-0/+8
gyp sets it to "solaris" by default, but versions of node v0.6.x and older would report "sunos". Let's keep things consistent. Fixes #3944.
2012-07-27always link sunos builds with libumemTrent Mick1-0/+1
2012-07-19build: link with -rdynamic, not -Wl,--export-dynamicBen Noordhuis1-1/+0
The system linker on SunOS doesn't understand --export-dynamic.
2012-07-13build: fix add-on loading on freebsdBen Noordhuis1-2/+3
Link with -Wl,--export-dynamic, makes symbols from the node binary visible to binary add-ons. Fixes "undefined symbol: _ZN2v811HandleScopeC1Ev" errors when loading add-ons on FreeBSD and likely other BSDs. Fixes #3623.
2012-06-27build: fix --shared-v8 optionBen Noordhuis1-6/+1
2012-06-21fs: make fs.watchFile() work on windowsBen Noordhuis1-1/+1
2012-06-20Rename GYP variable node_use_system_openssl to be consistentRyan Dahl1-2/+2
2012-06-13Windows: Enable ETW events.Igor Zinkovsky1-3/+31
This commit enables ETW events to be fired on Windows for existing DTrace probes. ETW instrumentation is enabled by default. It is possible to build node.exe without ETW instrumentation by using --without-etw option with configure script.
2012-06-13Move resource files to src/res.Bert Belder1-1/+1
tools/msvs/res is not an appropriate place.
2012-06-01child_process: new stdio API for .spawn() methodFedor Indutny1-0/+3
2012-05-15process: add _getActiveHandles(), _getActiveRequests()Ben Noordhuis1-0/+1
* process._getActiveHandles() returns a list containing all active handles (timers, sockets, etc.) that have not been unref'd. * process._getActiveRequests() returns a list of active requests (in-flight actions like connecting to a remote host, writing data to a socket, etc.).
2012-04-17Fix 64-bit SmartOS buildDave Pacheco1-1/+1
2012-04-17Domain featureisaacs1-0/+1
This is a squashed commit of the main work done on the domains-wip branch. The original commit messages are preserved for posterity: * Implicitly add EventEmitters to active domain * Implicitly add timers to active domain * domain: add members, remove ctor cb * Don't hijack bound callbacks for Domain error events * Add dispose method * Add domain.remove(ee) method * A test of multiple domains in process at once * Put the active domain on the process object * Only intercept error arg if explicitly requested * Typo * Don't auto-add new domains to the current domain While an automatic parent/child relationship is sort of neat, and leads to some nice error-bubbling characteristics, it also results in keeping a reference to every EE and timer created, unless domains are explicitly disposed of. * Explicitly adding one domain to another is still fine, of course. * Don't allow circular domain->domain memberships * Disposing of a domain removes it from its parent * Domain disposal turns functions into no-ops * More documentation of domains * More thorough dispose() semantics * An example using domains in an HTTP server * Don't handle errors on a disposed domain * Need to push, even if the same domain is entered multiple times * Array.push is too slow for the EE Ctor * lint domain * domain: docs * Also call abort and destroySoon to clean up event emitters * domain: Wrap destroy methods in a try/catch * Attach tick callbacks to active domain * domain: Only implicitly bind timers, not explicitly * domain: Don't fire timers when disposed. * domain: Simplify naming so that MakeCallback works on Timers * Add setInterval and nextTick to domain test * domain: Make stack private
2012-04-01build: add support for DTrace and postmortemDave Pacheco1-6/+95
* fixes #2110 * includes V8 postmortem metadata in Solaris builds * adds GYP support for DTrace probes and ustack helper * ustack helper derives constants dynamically from libv8_base.a * build with DTrace support by default on SunOS
2012-03-30core: add reusable slab allocatorBen Noordhuis1-0/+2
2012-03-15node.gyp: include the config.gypi file in the js2c inputs listNathan Rajlich1-3/+3
2012-03-05build: remove unnecessary link flags from node.gypBen Noordhuis1-6/+0
2012-02-27build: support shared zlibT.C. Hollingsworth1-1/+5
2012-02-26build: use else instead of node_shared_v8==falseT.C. Hollingsworth1-3/+1
2012-02-23Default node_shared_v8 to false.Nathan Rajlich1-0/+1
Fixes #2818.
2012-02-23Revert "Revert "build: support shared V8 properly""isaacs1-3/+15
This reverts commit a9130222bd36ac2c5dd7ae560f02bb99569749a7.
2012-02-23Revert "build: support shared V8 properly"isaacs1-15/+3
This reverts commit 3d1b67064085ef486a69c2fc69d195dc35f4f50c. Breaks build on windows. https://gist.github.com/1895279
2012-02-22build: support shared V8 properlyT.C. Hollingsworth1-3/+15
-don't pull in bundled v8 as a dependency when node_shared_v8==true -use node_shared_v8_includes for v8.h and v8-debug.h
2012-02-18Merge remote-tracking branch 'ry/v0.6' into v0.6-mergeisaacs1-0/+1
Conflicts: AUTHORS ChangeLog Makefile doc/about/index.html doc/api/tls.markdown doc/community/index.html doc/index.html doc/logos/index.html doc/template.html lib/http.js lib/tls.js src/node_version.h src/platform_win32.cc test/simple/test-tls-connect-given-socket.js
2012-02-16Windows: another attempt to support unicode argvBert Belder1-0/+1
2012-02-12Merge remote-tracking branch 'origin/v0.6'Ben Noordhuis1-1/+0
Conflicts: common.gypi
2012-02-07enable x64 windows buildIgor Zinkovsky1-1/+0
use "vcbuild x64" to do x64 build of node.exe
2012-02-06Revert support for isolates.Ben Noordhuis1-12/+0
It was decided that the performance benefits that isolates offer (faster spin-up times for worker processes, faster inter-worker communication, possibly a lower memory footprint) are not actual bottlenecks for most people and do not outweigh the potential stability issues and intrusive changes to the code base that first-class support for isolates requires. Hence, this commit backs out all isolates-related changes. Good bye, isolates. We hardly knew ye.
2012-01-16fix windows buildIgor Zinkovsky1-0/+2
2012-01-12build: remove the old -DPLATFORM="mac" defineNathan Rajlich1-0/+3
To prevent redefinition warnings.
2012-01-12build: set `process.platform` to "darwin" on OS XNathan Rajlich1-0/+4
This is consistent with the old waf build system, and doesn't break old scripts that are expecting the value to be "darwin". Fixes #2518.
2012-01-09Merge remote branch 'origin/v0.6'Ryan Dahl1-1/+1
Conflicts: Makefile configure src/node_version.h
2012-01-06support nosnapshot in vcbuild.batRyan Dahl1-1/+1
2011-12-29build: move internals to separate header fileBen Noordhuis1-0/+1
2011-12-29build: add --without-isolates configure switchBen Noordhuis1-0/+6
2011-12-29isolates: isolate-ify the main loopBen Noordhuis1-0/+2
2011-12-20Remove unnecessary stuff from node.gypRyan Dahl1-3/+0
2011-12-15Remove platform files, and use uv platform apiIgor Zinkovsky1-8/+0
2011-12-07Begin moving static vars into struct for isolates.Ryan Dahl1-0/+2
Only node.cc, stream_wrap.cc, and tcp_wrap.cc have been done. The rest still need work.
2011-11-30build: always compile with large file supportBen Noordhuis1-2/+0
Fixes a nasty sizeof(struct stat) mismatch bug that caused random crashes and silent memory corruption.
2011-11-17build: remove v8-node.gypBen Noordhuis1-1/+1
2011-11-10Add node.rc with a version resourceIgor Zinkovsky1-0/+1
Fixes #2059
2011-10-29Add common.gypi to gyp outputBert Belder1-0/+2
2011-10-28Revert "remove node_io_watcher"Igor Zinkovsky1-0/+1
This reverts commit cc2ac1ccc7724b920cbc7bbb777f057ac062028c.
2011-10-27remove node_io_watcherIgor Zinkovsky1-1/+0
2011-10-26Don't compile in node_dtrace.cc when not supportedRyan Dahl1-3/+5
2011-10-26build: fix sunos gyp build, include platform fileBen Noordhuis1-0/+6
2011-10-12Add cluster.js to node.gypRyan Dahl1-0/+1
2011-10-11Fix windows buildRyan Dahl1-1/+0
2011-10-11Remove tty_legacyRyan Dahl1-7/+1