Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
AgeCommit message (Collapse)Author
2010-11-24Upgrade V8 to 2.5.8Ryan Dahl
2010-11-24cmake cleanupDaniel Gröber
* Removed useless include_directories * Print ssl library path in build summary * ExternalProject also exists on 2.8.0 * include pummel tests when testing with ctest * Moved tests.cmake to test/CMakeList.txt * Removed inconsistent, unnecessary condition in else
2010-11-23Add cmake build support.Tom Hughes
Squashed commit of ca128f7dcd28cbcfba154c8577ed54d4aa71dd02 with contributions from Mark Constable (markc@renta.net) and Daniel Gröber (darklord@darkboxed.org).
2010-11-22Upgrade http-parserRyan Dahl
2010-11-22Fix c-ares bug: reply to a CNAME queryBen Noordhuis
doesn't contain addresses, causing ares_parse_a_reply() to bail out with ARES_ENODATA.
2010-11-22Apple's threaded write()s bugJorge Chamorro Bieling
fixes test/simple/test-fs-sir-writes-alot.js on mac
2010-11-19Upgrade V8 to 2.5.7Ryan Dahl
2010-11-18Simplify next tick logic by looping around ev_loopRyan Dahl
This is also in preparation for the writev patch, which needs to dump remaining data after ev_loop ends.
2010-11-17Revert "Upgrade V8 to 2.5.6"Ryan Dahl
This reverts commit 564a48643bd3edc6da845e458277a54c8068d0e2. Breaks cygwin
2010-11-14Fix V8 build on CygwinBert Belder
2010-11-14Added support for cross compilation and also fixed DEST_CPU to represent the ↵Rasmus Andersson
canonical symbols dictated by v8
2010-11-12Upgrade V8 to 2.5.6Ryan Dahl
2010-11-11Upgrade http-parser againRyan Dahl
2010-11-10Upgrade http-parserRyan Dahl
2010-11-02Back to WAFRyan Dahl
Too much instability right now. Hopefully we can revisit autoconf soon.
2010-11-02Upgrade V8 to 2.5.3Ryan Dahl
2010-10-30Upgrade V8 to 2.5.2Ryan Dahl
2010-10-28Build system improvements: (cross compilation, libnode, etc)Rasmus Andersson
- utilizing autoconf configure.guess to output canonical $target_{cpu,vendor,os} - normalizing $target_cpu --> $arch according to v8 naming scheme - normalizing $target_os --> $platform according to v8 naming scheme - renamed c-ares platform-arch directories to represent v8 canonical names - new targets in Makefile: libnode-{static,dynamic}[-debug] - scons is symbolized as SCONS in Makefile for portability/flexibility. - LINKFLAGS inherith from LDFLAGS ("magic" variable exported by autoconf and configure). - When building on OS X, CFLAGS and LDFLAGS will contain appropriate -arch flag, set up by configure (instead of the Makefile). - libv8.a make targets cleaned up with unison libv8_flags set of flags. - the clean make target now cleans up libraries (libv8, libnode, etc). - added config.guess, config.sub and install-sh (utilized by autoconf/configure)
2010-10-25Replace WAF with make/autoconfRyan Dahl
2010-10-22Upgrade libev to 4.00Ryan Dahl
2010-10-22Upgrade V8 to 2.5.1Ryan Dahl
2010-10-19Upgrade V8 to 2.5.0Ryan Dahl
2010-10-18Install ev.h and eio.hRyan Dahl
2010-10-13Upgrade http-parser with a fix for spaces in headersNathan Rajlich
2010-10-09Add missing v8 file...Ryan Dahl
2010-10-09Add config.h for cygwin for libev and libeioRyan Dahl
2010-10-06#define HAVE_FDATASYNC 0 for darwin; 10.5 is missing itRyan Dahl
2010-10-06Upgrade V8 to 2.4.8Ryan Dahl
2010-10-03libev, libeio config.h files don't depend on archRyan Dahl
2010-10-02libev libeio: added freebsd-x86 config headersDavid Siegel
2010-10-02Simpler libev and libeio configRyan Dahl
2010-10-02Upgrade V8 to 2.4.7Ryan Dahl
2010-09-28Disable a few more libev featuresRyan Dahl
2010-09-23Revert "Upgrade V8 to 2.4.5"Ryan Dahl
This reverts commit e2274412488ab310decb8494ab41009342b3c2f6. Build fails on mac
2010-09-22Upgrade V8 to 2.4.5Ryan Dahl
2010-09-17Upgrade V8 to 2.4.4Ryan Dahl
2010-09-14Upgrade libeioRyan Dahl
2010-09-09V8 Cygwin patchRyan Dahl
2010-09-09Upgrade V8 to 2.4.2Ryan Dahl
2010-08-19Fix V8 build for old gccRyan Dahl
also sent upstream: http://codereview.chromium.org/3130033/show
2010-08-17Upgrade V8 to 2.3.8Ryan Dahl
2010-08-13Revert "Upgrade V8 to 2.3.7"Ryan Dahl
This reverts commit 083ee0f8b7a8d98d51bf2debf47d68117f13087f. V8 build broken on cygwin: ./deps/v8/src/handles.h:62: instantiated from `T* v8::internal::Handle<T>::operator->() const [with T = v8::internal::Code]' ./deps/v8/src/accessors.cc:396: instantiated from here ./deps/v8/src/handles-inl.h:50: error: call of overloaded `BitCast(v8::internal::Code** const&)' is ambiguous ./deps/v8/src/utils.h:732: note: candidates are: Dest v8::internal::BitCast(const Source&) [with Dest = v8::internal::Code**, Source = v8::internal::Code**] ./deps/v8/src/utils.h:743: note: Dest v8::internal::BitCast(Source* const&) [with Dest = v8::internal::Code**, Source = v8::internal::Code*] scons: *** [obj/release/accessors.o] Error 1
2010-08-12Upgrade V8 to 2.3.7Ryan Dahl
2010-08-11Remove -Werror from v8 SConstructRyan Dahl
2010-08-10Upgrade V8 to 2.3.6Ryan Dahl
2010-08-04Upgrade V8 to 2.3.5Ryan Dahl
2010-08-03Upgrade V8 to 2.3.4Ryan Dahl
2010-08-01Upgrade http-parser for clang compatRyan Dahl
2010-07-30[v8] Remove global.print from v8natives.js (fixes issue 791)Ryan Dahl
Review URL: http://codereview.chromium.org/3045016
2010-07-27Upgrade http-parserRyan Dahl
support for - long messages - spaces in header fields