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
AgeCommit message (Collapse)Author
2011-01-03Merge remote branch 'origin/master'Bert Belder
Conflicts: src/node_net.cc src/node_os.cc
2010-12-22Add more functionality to the os moduleBrian White
2010-12-21Add toolchain=gcc to V8 build for SunRyan Dahl
2010-12-21After building overwrite existing ./node(_g)?.exeBert Belder
2010-12-21Make select work on >64 FDs on windowsBert Belder
2010-12-21Fix whitespace errors introduced by porting effortsBert Belder
2010-12-21wscript: use "node.exe" and avoid symlinks on windowsBert Belder
2010-12-21On windows, link with Winsock and WinMMBert Belder
2010-12-21Backslashes in paths wreak havocBert Belder
2010-12-21No -rdynamic and -pthread flags when building with mingwBert Belder
2010-12-21Always use statically linked c-ares on windows; fix buildBert Belder
On win32 CARES is always static, so we can call internal functions like ares_inet_pton et al. CARES_STATICLIB must be defined or gcc will try to make DLL stub calls
2010-12-21Dynamically link with pthreads-w32Bert Belder
Adds some explanation what would need to be done to link pthreads statically
2010-12-21V8: Don't attempt to build w/ snapshot, doesn't seem to work on mingw32Bert Belder
2010-12-17Bump version to v0.3.2v0.3.2Ryan Dahl
2010-12-17Fix compilation on OpenBSD and FreeBSDBrian White
While it compiles fine on FreeBSD, at least on amd64 node dies with: "CALL_AND_RETRY_0 allocation failed - process out of memory"
2010-12-17Patch V8 to compile on solarisRyan Dahl
2010-12-14Make oprofile workRyan Dahl
2010-12-11Add os module and getHostnameBrian White
2010-12-03Introduce require('tty')Ryan Dahl
You may need to reconfigure after this commit due to the new library.
2010-12-03Add configure flag for oprofileRyan Dahl
2010-11-30win: Define __POSIX__ constant when the platform is POSIX-yBert Belder
2010-11-30Put tools/ into PYTHON_PATHRyan Dahl
2010-11-22Use sys.executable to call pythonNikhil Marathe
2010-11-22Compile with `-Wno-unused-parameter -D_FORTIFY_SOURCE=2`Ben Noordhuis
2010-11-19Fix OpenSSL SSL_library_init function check on OpenBSD.Brian White
2010-11-16Print warning when using platform_none.ccRyan Dahl
2010-11-15Fix configure on x86Ryan Dahl
2010-11-14Add --profile flag to configure script, enables gprof profiling.Ben Noordhuis
2010-11-14Added support for cross compilation and also fixed DEST_CPU to represent the ↵Rasmus Andersson
canonical symbols dictated by v8
2010-11-03Install node-wafRyan Dahl
2010-11-02Back to WAFRyan Dahl
Too much instability right now. Hopefully we can revisit autoconf soon.
2010-10-25Replace WAF with make/autoconfRyan Dahl
2010-10-18./wscript: allow for cross-compiling of all three supported architecturesAJ ONeal
2010-10-13Preliminary pkg-config support.Ben Noordhuis
2010-10-12Dynamically load native scriptsRyan Dahl
2010-10-10Fix a few compiler warnings...Ryan Dahl
2010-09-28Put preprocessor defines into CPPFLAGS not compile flags...Ryan Dahl
2010-09-21Don't choose jobs based on processorRyan Dahl
Leads to lots of builds with out-of-memory.
2010-09-20More explicit openssl configure warningRyan Dahl
2010-09-20Fatal error out if OpenSSL was not explicitly disabled, we just couldn't ↵Paul Querna
autodetect it.
2010-09-20Add node::Start()Ryan Dahl
first step towards building a libnode.a
2010-09-13- fix AttributeError on "use_openssl" when doing ./configure --without-ssl - ↵Tony Metzidis
error was: AttributeError: Values instance has no attribute 'use_openssl'
2010-08-27Only check for execinfo lib in freebsdRyan Dahl
OpenEmbedded doesn't like it when you look in /usr/lib
2010-08-19Fix process.platformRyan Dahl
2010-08-16Add --without-snapshot configure optionRyan Dahl
2010-08-13added read and write support for process.title DarwinRasmus Andersson
This will only manipulate the OS X-level process name, not the title shown in e.g. ps.
2010-08-11Stub out process.titleRyan Dahl
2010-08-05Print warning when OpenSSL not foundRyan Dahl
2010-08-04Add node_version.h to installSamuel Shull
2010-07-14Register builtin extensions via a macro, rather than a manual strcmpPaul Querna
Set the stage for making the builtin modules more dynamic. Note: this only converts crypto and net, I will add more extensions in a later commit. * node.h: Add utility macro for converting macro values to strings. * node.h: Include the actual module name inside the module structure, not just the file it was built from. * node.h: New Macro, NODE_MODULE_DECL, for declaring an external reference to a module structure. * node_extensions.cc: New File, implements get_builtin_module, which iterates over the module structures that are compiled into node. * node.cc(node::Binding): Use the new module lookup function to find modules. * node_{net,crypto}.c: Add NODE_MODULEs to generate the module structure.