Merge branch 'v0.10'
This commit is contained in:
commit
aa23eea5cf
1
.mailmap
1
.mailmap
@ -2,6 +2,7 @@ Alan Gutierrez <alan@prettyrobots.com> <alan@blogometer.com>
|
||||
Bert Belder <bertbelder@gmail.com> <info@2bs.nl>
|
||||
Bert Belder <bertbelder@gmail.com> <user@ChrUbuntu.(none)>
|
||||
Brandon Philips <brandon.philips@rackspace.com> <brandon@ifup.org>
|
||||
Brian White <mscdex@mscdex.net>
|
||||
Brian White <mscdex@mscdex.net> <mscdex@gmail.com>
|
||||
Frank Denis <github@pureftpd.org>
|
||||
Isaac Z. Schlueter <i@izs.me>
|
||||
|
||||
35
ChangeLog
35
ChangeLog
@ -36,6 +36,41 @@ Changes since Node.js v0.11.0:
|
||||
* build: add support for Visual Studio 2012 (Nicholas Vavilov)
|
||||
|
||||
|
||||
2013.04.12, Version 0.10.4 (Stable), 85827e26403ac6dfa331af8ec9916ea7e27bd833
|
||||
|
||||
Changes since version 0.10.3:
|
||||
|
||||
* include: update uv_backend_fd() documentation (Ben Noordhuis)
|
||||
|
||||
* unix: include uv.h in src/version.c (Ben Noordhuis)
|
||||
|
||||
* unix: don't write more than IOV_MAX iovecs (Fedor Indutny)
|
||||
|
||||
* mingw-w64: don't call _set_invalid_parameter_handler (Nils Maier)
|
||||
|
||||
* build: gyp disable thin archives (Timothy J. Fontaine)
|
||||
|
||||
* sunos: re-export entire library when static (Timothy J. Fontaine)
|
||||
|
||||
* unix: dtrace probes for tick-start and tick-stop (Timothy J. Fontaine)
|
||||
|
||||
* windows: fix memory leak in fs__sendfile (Shannen Saez)
|
||||
|
||||
* windows: remove double initialization in uv_tty_init (Shannen Saez)
|
||||
|
||||
* build: fix dtrace-enabled out of tree build (Ben Noordhuis)
|
||||
|
||||
* build: squelch -Wdollar-in-identifier-extension warnings (Ben Noordhuis)
|
||||
|
||||
* inet: snprintf returns int, not size_t (Brian White)
|
||||
|
||||
* win: refactor uv_cpu_info (Bert Belder)
|
||||
|
||||
* build: add support for Visual Studio 2012 (Nicholas Vavilov)
|
||||
|
||||
* build: -Wno-dollar-in-identifier-extension is clang only (Ben Noordhuis)
|
||||
|
||||
|
||||
2013.02.04, Version 0.10.3 (Stable), 31ebe23973dd98fd8a24c042b606f37a794e99d0
|
||||
|
||||
Changes since version 0.10.2:
|
||||
|
||||
@ -80,8 +80,12 @@ endif
|
||||
|
||||
ifeq (darwin,$(PLATFORM))
|
||||
HAVE_DTRACE=1
|
||||
# dtrace(1) probes contain dollar signs.
|
||||
# dtrace(1) probes contain dollar signs on OS X. Mute the warnings they
|
||||
# generate but only when CC=clang, -Wno-dollar-in-identifier-extension
|
||||
# is a clang extension.
|
||||
ifeq (__clang__,$(shell sh -c "$(CC) -dM -E - </dev/null | grep -ow __clang__"))
|
||||
CFLAGS += -Wno-dollar-in-identifier-extension
|
||||
endif
|
||||
CPPFLAGS += -D_DARWIN_USE_64_BIT_INODE=1
|
||||
LDFLAGS += -framework Foundation \
|
||||
-framework CoreServices \
|
||||
|
||||
@ -55,8 +55,6 @@ void uv_loadavg(double avg[3]) {
|
||||
|
||||
|
||||
int uv_exepath(char* buffer, size_t* size) {
|
||||
uint32_t usize;
|
||||
|
||||
if (!buffer || !size) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user