b13941cf | 12-Jul-2013 |
Timothy J Fontaine |
build: dtrace shouldn't break out of tree builds Fixes #848. |
4ce3a312 | 25-Jul-2013 |
Ben Noordhuis |
test: fix signed/unsigned comparison warnings |
c021ee07 | 24-Jul-2013 |
Brian White |
unix, windows: remove unused variables |
d779eb53 | 23-Jul-2013 |
Ben Noordhuis |
unix, windows: fix uv_fs_chown() function prototype Before this commit, uv_fs_chown() and uv_fs_fchown() took the uid and gid as signed integers which is wrong because uid_t and gid_t ar
unix, windows: fix uv_fs_chown() function prototype Before this commit, uv_fs_chown() and uv_fs_fchown() took the uid and gid as signed integers which is wrong because uid_t and gid_t are unsigned on most all platforms and IDs that don't fit in a signed integer do exist. This is not an ABI change because the size of the uid and gid arguments do not change, only their sign. On Windows, uv_uid_t and uv_gid_t are typedef'd as unsigned char for reasons that are unclear. It doesn't matter: they get cast to ints when used as function arguments. The arguments themselves are unused. Partial fix for joyent/node#5890.
show more ...
|
7e68e6d8 | 20-Jul-2013 |
Ben Noordhuis |
Now working on v0.11.7 |
6645b932 | 20-Jul-2013 |
Ben Noordhuis |
2013.07.21, Version 0.11.6 (Unstable) Changes since version 0.11.5: * test: open stdout fd in write-only mode (Ben Noordhuis) * windows: uv_spawn shouldn't reject reparse p
2013.07.21, Version 0.11.6 (Unstable) Changes since version 0.11.5: * test: open stdout fd in write-only mode (Ben Noordhuis) * windows: uv_spawn shouldn't reject reparse points (Bert Belder) * windows: use WSAGetLastError(), not errno (Ben Noordhuis) * build: darwin: disable -fstrict-aliasing warnings (Ben Noordhuis) * test: fix signed/unsigned compiler warning (Ben Noordhuis) * test: add 'start timer from check handle' test (Ben Noordhuis) * build: `all` now builds static and dynamic lib (Ben Noordhuis) * unix, windows: add extra fields to uv_stat_t (Saúl Ibarra Corretgé) * build: add install target to the makefile (Navaneeth Kedaram Nambiathan) * build: switch to autotools (Ben Noordhuis) * build: use AM_PROG_AR conditionally (Ben Noordhuis) * test: fix fs_fstat test on sunos (Ben Noordhuis) * test: fix fs_chown when running as root (Ben Noordhuis) * test: fix spawn_setgid_fails and spawn_setuid_fails (Ben Noordhuis) * build: use AM_SILENT_RULES conditionally (Ben Noordhuis) * build: add DTrace detection for autotools (Timothy J. Fontaine) * linux,darwin,win: link-local IPv6 addresses (Miroslav Bajtoš) * unix: fix build when !defined(PTHREAD_MUTEX_ERRORCHECK) (Ben Noordhuis) * unix, windows: return error codes directly (Ben Noordhuis)
show more ...
|
3b4e0a21 | 09-Jul-2013 |
isaacs |
Now working on v0.10.13 |
58a46221 | 09-Jul-2013 |
isaacs |
2013.07.10, Version 0.10.12 (Stable) Changes since version 0.10.11: * linux: add support for MIPS (Andrei Sedoi) * windows: uv_spawn shouldn't reject reparse points (Bert B
2013.07.10, Version 0.10.12 (Stable) Changes since version 0.10.11: * linux: add support for MIPS (Andrei Sedoi) * windows: uv_spawn shouldn't reject reparse points (Bert Belder) * windows: use WSAGetLastError(), not errno (Ben Noordhuis) * build: darwin: disable -fstrict-aliasing warnings (Ben Noordhuis) * build: `all` now builds static and dynamic lib (Ben Noordhuis) * unix: fix build when !defined(PTHREAD_MUTEX_ERRORCHECK) (Ben Noordhuis)
show more ...
|
3ee4d3f1 | 06-Jun-2013 |
Ben Noordhuis |
unix, windows: return error codes directly This commit changes the libuv API to return error codes directly rather than storing them in a loop-global field. A code snippet like
unix, windows: return error codes directly This commit changes the libuv API to return error codes directly rather than storing them in a loop-global field. A code snippet like this one: if (uv_foo(loop) < 0) { uv_err_t err = uv_last_error(loop); fprintf(stderr, "%s\n", uv_strerror(err)); } Should be rewritten like this: int err = uv_foo(loop); if (err < 0) fprintf(stderr, "%s\n", uv_strerror(err)); The rationale for this change is that it should make creating bindings for other languages a lot easier: dealing with struct return values is painful with most FFIs and often downright buggy.
show more ...
|
13f73fad | 05-Jul-2013 |
Ben Noordhuis |
Merge remote-tracking branch 'origin/v0.10'
|
37d0209c | 05-Jul-2013 |
Ben Noordhuis |
unix: fix build when !defined(PTHREAD_MUTEX_ERRORCHECK) Ancient versions of glibc (<= 2.3.1) don't have error-checking mutexes. |
fd45f876 | 14-Mar-2013 |
Miroslav Bajtoš |
linux,darwin,win: link-local IPv6 addresses Modified uv_ip6_addr() to fill sin6_scope_id for link-local addresses. Fixes #271 Conflicts: build.mk |
2f3124a8 | 03-Jul-2013 |
Timothy J Fontaine |
build: add DTrace detection for autotools |
3b9cfe22 | 02-Jul-2013 |
Ben Noordhuis |
build: use AM_SILENT_RULES conditionally It's not supported by older automake versions. |
5a3b8f9f | 02-Jul-2013 |
Ben Noordhuis |
test: fix spawn_setgid_fails and spawn_setuid_fails Don't try to set a bogus UID or GID and expect to get a meaningful error. The test expected EPERM but SunOS returns EINVAL because the
test: fix spawn_setgid_fails and spawn_setuid_fails Don't try to set a bogus UID or GID and expect to get a meaningful error. The test expected EPERM but SunOS returns EINVAL because the id is outside of the range of valid user/group ids. Try to switch to UID/GID 0. Give up privileges first if we're root, else the setuid/setgid system call will succeed when it's expected to fail.
show more ...
|
d0be852c | 02-Jul-2013 |
Ben Noordhuis |
test: fix fs_chown when running as root chown(2) to root is expected to fail - unless you're root, of course. |
d4f61653 | 02-Jul-2013 |
Ben Noordhuis |
test: fix fs_fstat test on sunos The tests are no longer compiled with -D_XOPEN_SOURCE=500 when building with autotools. Tell the test explicitly that SunOS systems are expected to h
test: fix fs_fstat test on sunos The tests are no longer compiled with -D_XOPEN_SOURCE=500 when building with autotools. Tell the test explicitly that SunOS systems are expected to have nanosecond fstat(2) granularity.
show more ...
|
d2f67b92 | 02-Jul-2013 |
Ben Noordhuis |
build: use AM_PROG_AR conditionally AM_PROG_AR does not exist in automake v0.11 but without it, you can't build libuv with automake v0.12+ on Darwin. |
ddd7e04f | 27-Jun-2013 |
Ben Noordhuis |
build: switch to autotools Switch to the build tool everyone loves to hate. The Makefile has served us well over the years but it's been acquiring more and more features that autoto
build: switch to autotools Switch to the build tool everyone loves to hate. The Makefile has served us well over the years but it's been acquiring more and more features that autotools gives us for free, like easy static+shared library building, sane install targets, and so on. This commit drops MinGW support. If there is demand for it, we'll re-add it.
show more ...
|
624be53e | 27-Jun-2013 |
Navaneeth Kedaram Nambiathan |
build: add install target to the makefile Before this commit, there was no way to install libuv other than manually copying required files to the path. This commit introduces an inst
build: add install target to the makefile Before this commit, there was no way to install libuv other than manually copying required files to the path. This commit introduces an install target which installs the libuv.a, libuv.so and header files to the install prefix. `` make make install `` The above will use the default prefix `/usr/local` `` make make install PREFIX=/usr `` The above will install to `/usr`
show more ...
|
f9e6029b | 27-Jun-2013 |
Saúl Ibarra Corretgé |
unix, windows: add extra fields to uv_stat_t |
ce2458c0 | 26-Jun-2013 |
Ben Noordhuis |
Merge remote-tracking branch 'origin/v0.10' Conflicts: test/test-fs.c test/test-list.h
|
652d5c9e | 26-Jun-2013 |
isaacs |
Now working on v0.11.6 |
e3c63ff1 | 26-Jun-2013 |
isaacs |
2013.06.27, Version 0.11.5 (Unstable) Changes since version 0.11.4: * build: remove CSTDFLAG, use only CFLAGS (Ben Noordhuis) * unix: support for android builds (Linus Mårt
2013.06.27, Version 0.11.5 (Unstable) Changes since version 0.11.4: * build: remove CSTDFLAG, use only CFLAGS (Ben Noordhuis) * unix: support for android builds (Linus Mårtensson) * unix: avoid extra read, short-circuit on POLLHUP (Ben Noordhuis) * uv: support android libuv standalone build (Linus Mårtensson) * src: make queue.h c++ compatible (Ben Noordhuis) * unix: s/ngx-queue.h/queue.h/ in checksparse.sh (Ben Noordhuis) * unix: unconditionally stop handle on close (Ben Noordhuis) * freebsd: don't enable dtrace if it's not available (Brian White) * build: make HAVE_DTRACE=0 should disable dtrace (Timothy J. Fontaine) * unix: remove overzealous assert (Ben Noordhuis) * unix: remove unused function uv_fatal_error() (Ben Noordhuis) * unix, windows: clean up uv_thread_create() (Ben Noordhuis) * queue: fix pointer truncation on LLP64 platforms (Bert Belder) * build: set OS=="android" for android builds (Linus Mårtensson) * windows: don't use uppercase in include filename (Ben Noordhuis) * stream: add an API to make streams do blocking writes (Henry Rawas) * windows: use WSAGetLastError(), not errno (Ben Noordhuis)
show more ...
|
88a2c7ff | 26-Jun-2013 |
Ben Noordhuis |
build: `all` now builds static and dynamic lib The `make all` target now builds both libuv.a and libuv.{so,dylib} rather than just libuv.a. |