85b92ad5 | 09-Aug-2013 |
Ben Noordhuis |
windows: fix uninitialized local variable warning Pass the user-returned buffer to the read calback. Fixes the following warning: src\win\tcp.c(439): warning C4700: uninitia
windows: fix uninitialized local variable warning Pass the user-returned buffer to the read calback. Fixes the following warning: src\win\tcp.c(439): warning C4700: uninitialized local variable 'buf'
show more ...
|
e4c1483b | 08-Aug-2013 |
Ben Noordhuis |
build: serial-tests was added in automake v1.12 Commit a97685e added a check that tries to ascertain whether the serial-tests option is supported by automake. It assumed that said op
build: serial-tests was added in automake v1.12 Commit a97685e added a check that tries to ascertain whether the serial-tests option is supported by automake. It assumed that said option was added in automake v1.11 but it turns out that's wrong, it wasn't added until v1.12. Update the check. Of course, none of this would have been necessary if the automake people had simply added a macro that tells you if serial-tests is supported or not.
show more ...
|
6837e480 | 08-Aug-2013 |
Ben Noordhuis |
unix: fix missing return value warning in stream.c |
d34fad73 | 06-Aug-2013 |
Ben Noordhuis |
Now working on v0.11.8 |
3cad361f | 06-Aug-2013 |
Ben Noordhuis |
2013.08.07, Version 0.11.7 (Unstable) Changes since version 0.11.6: * unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis) * unix, windows: remove unused var
2013.08.07, Version 0.11.7 (Unstable) Changes since version 0.11.6: * unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis) * unix, windows: remove unused variables (Brian White) * test: fix signed/unsigned comparison warnings (Ben Noordhuis) * build: dtrace shouldn't break out of tree builds (Timothy J. Fontaine) * unix, windows: don't read/recv if buf.len==0 (Ben Noordhuis) * build: add mingw makefile (Ben Noordhuis) * unix, windows: add MAC to uv_interface_addresses() (Brian White) * build: enable AM_INIT_AUTOMAKE([subdir-objects]) (Ben Noordhuis) * unix, windows: make buf arg to uv_fs_write const (Ben Noordhuis) * sunos: fix build breakage introduced in e3a657c (Ben Noordhuis) * aix: fix build breakage introduced in 3ee4d3f (Ben Noordhuis) * windows: fix mingw32 build, define JOB_OBJECT_XXX (Yasuhiro Matsumoto) * windows: fix mingw32 build, include limits.h (Yasuhiro Matsumoto) * test: replace sprintf() with snprintf() (Ben Noordhuis) * test: replace strcpy() with strncpy() (Ben Noordhuis) * openbsd: fix uv_ip6_addr() unused variable warnings (Ben Noordhuis) * openbsd: fix dlerror() const correctness warning (Ben Noordhuis) * openbsd: fix uv_fs_sendfile() unused variable warnings (Ben Noordhuis) * build: disable parallel automake tests (Ben Noordhuis) * test: add windows-only snprintf() function (Ben Noordhuis) * build: add automake serial-tests version check (Ben Noordhuis)
show more ...
|
a97685e7 | 05-Aug-2013 |
Ben Noordhuis |
build: add automake serial-tests version check The serial-tests directive was added in automake v0.11. Add an ad-hoc version check to find out if it's safe to enable. Fixes the autotools
build: add automake serial-tests version check The serial-tests directive was added in automake v0.11. Add an ad-hoc version check to find out if it's safe to enable. Fixes the autotools build with older versions of automake.
show more ...
|
fd082901 | 05-Aug-2013 |
Ben Noordhuis |
test: add windows-only snprintf() function Should fix the build after 96f32a2 inadvertently broke it. There is no snprintf() on Windows because, hey, it's a C99 addition and the
test: add windows-only snprintf() function Should fix the build after 96f32a2 inadvertently broke it. There is no snprintf() on Windows because, hey, it's a C99 addition and the people from Redmond, WA are still firmly stuck in 1989.
show more ...
|
35ea88cf | 04-Aug-2013 |
Ben Noordhuis |
build: disable parallel automake tests Our tests are not parallelizable and besides, they're one big test from the perspective of the automake test driver anyway. Turn on serial mode. |
fb2a6d4a | 05-Aug-2013 |
Ben Noordhuis |
openbsd: fix uv_fs_sendfile() unused variable warnings |
103969ac | 04-Aug-2013 |
Ben Noordhuis |
openbsd: fix dlerror() const correctness warning |
f7e46379 | 04-Aug-2013 |
Ben Noordhuis |
openbsd: fix uv_ip6_addr() unused variable warnings |
5af98d38 | 05-Aug-2013 |
Ben Noordhuis |
test: replace strcpy() with strncpy() |
96f32a20 | 04-Aug-2013 |
Ben Noordhuis |
test: replace sprintf() with snprintf() There is zero risk of overflowing the buffer, it's just a good habit. |
d7a1ba85 | 01-Aug-2013 |
Yasuhiro Matsumoto |
windows: fix mingw32 build, include limits.h src/win/process uses INT_MAX so include limits.h. |
bfa3e28b | 01-Aug-2013 |
Yasuhiro Matsumoto |
windows: fix mingw32 build, define JOB_OBJECT_XXX mingw32 doesn't have the JOB_OBJECT_XXX defines. Provide them ourselves when they are not already defined. This is possibly onl
windows: fix mingw32 build, define JOB_OBJECT_XXX mingw32 doesn't have the JOB_OBJECT_XXX defines. Provide them ourselves when they are not already defined. This is possibly only an issue with older versions of mingw32 because mingw-w64 2.0 _does_ export the defines.
show more ...
|
4bdb7d83 | 29-Jul-2013 |
Ben Noordhuis |
aix: fix build breakage introduced in 3ee4d3f Possibly, anyway - this change is untested. Without it, libuv definitely won't build on AIX though. |
167a8173 | 29-Jul-2013 |
Ben Noordhuis |
sunos: fix build breakage introduced in e3a657c |
0e7ba080 | 29-Jul-2013 |
Ben Noordhuis |
unix, windows: make buf arg to uv_fs_write const Change the uv_fs_write() prototype so the 'buf' argument is now `const void*` rather than `void*`. The argument is stored in a n
unix, windows: make buf arg to uv_fs_write const Change the uv_fs_write() prototype so the 'buf' argument is now `const void*` rather than `void*`. The argument is stored in a non-const field in the uv_fs_t but that's inconsequential because the memory it points to is not touched.
show more ...
|
c82cea1e | 28-Jul-2013 |
Ben Noordhuis |
build: enable AM_INIT_AUTOMAKE([subdir-objects]) Squelches (justified) warnings with automake 1.14. Object files are built in subdirectories now so fix up the dtrace postprocess
build: enable AM_INIT_AUTOMAKE([subdir-objects]) Squelches (justified) warnings with automake 1.14. Object files are built in subdirectories now so fix up the dtrace postprocessing step to scan for *.lo files in said subdirectories. Fixes #866.
show more ...
|
3d4099eb | 25-Jul-2013 |
Ben Noordhuis |
Merge remote-tracking branch 'origin/v0.10' Conflicts: AUTHORS ChangeLog src/version.c src/win/fs.c
|
2744e1e0 | 25-Jul-2013 |
Timothy J Fontaine |
Now working on v0.10.14 |
381312e1 | 25-Jul-2013 |
Timothy J Fontaine |
2013.07.26, Version 0.10.13 (Stable) Changes since version 0.10.12: * unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis) |
e3a657c6 | 20-Jul-2013 |
Brian White |
unix, windows: add MAC to uv_interface_addresses() Make uv_interface_addresses() return the MAC address as a 48 bits binary value in the phys_addr field of the uv_interface_address_t
unix, windows: add MAC to uv_interface_addresses() Make uv_interface_addresses() return the MAC address as a 48 bits binary value in the phys_addr field of the uv_interface_address_t struct.
show more ...
|
977e8337 | 25-Jul-2013 |
Ben Noordhuis |
build: add mingw makefile * add a very simple Makefile.mingw that builds libuv.a * apply a couple of fixes to src/win so it actually builds with mingw (mostly missing includes)
build: add mingw makefile * add a very simple Makefile.mingw that builds libuv.a * apply a couple of fixes to src/win so it actually builds with mingw (mostly missing includes) Fixes #847.
show more ...
|
1acbd768 | 26-Mar-2013 |
Ben Noordhuis |
unix, windows: don't read/recv if buf.len==0 Make it possible for the libuv user to handle out of memory conditions gracefully. When alloc_cb() returns a buffer with len==0, call the rea
unix, windows: don't read/recv if buf.len==0 Make it possible for the libuv user to handle out of memory conditions gracefully. When alloc_cb() returns a buffer with len==0, call the read or recv callback with nread=UV_ENOBUFS. It's up to the user to stop or close the handle. Fixes #752.
show more ...
|