| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 583f8d9 commit 02ca5d7
58 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,5 @@ | |||
| 1 | 1 | A. Hauptmann <andreashauptmann@t-online.de> | |
| 2 | + AJ Heller <aj@drfloob.com> <hork@google.com> | ||
| 2 | 3 | Aaron Bieber <qbit@deftly.net> <deftly@gmail.com> | |
| 3 | 4 | Alan Gutierrez <alan@prettyrobots.com> <alan@blogometer.com> | |
| 4 | 5 | Andrius Bentkus <andrius.bentkus@gmail.com> <toxedvirus@gmail.com> | |
@@ -12,6 +13,7 @@ Brian White <mscdex@mscdex.net> <mscdex@gmail.com> | |||
| 12 | 13 | Caleb James DeLisle <cjd@hyperboria.ca> <cjd@cjdns.fr> | |
| 13 | 14 | Christoph Iserlohn <christoph.iserlohn@innoq.com> | |
| 14 | 15 | Darshan Sen <raisinten@gmail.com> | |
| 16 | + Darshan Sen <raisinten@gmail.com> <darshan.sen@postman.com> | ||
| 15 | 17 | David Carlier <devnexen@gmail.com> | |
| 16 | 18 | Devchandra Meetei Leishangthem <dlmeetei@gmail.com> | |
| 17 | 19 | Fedor Indutny <fedor.indutny@gmail.com> <fedor@indutny.com> | |
@@ -21,6 +23,7 @@ Isaac Z. Schlueter <i@izs.me> | |||
| 21 | 23 | Jason Williams <necmon@yahoo.com> | |
| 22 | 24 | Jesse Gorzinski <jgorzinski@gmail.com> | |
| 23 | 25 | Jesse Gorzinski <jgorzinski@gmail.com> <jgorzins@us.ibm.com> | |
| 26 | + Juan José Arboleda <soyjuanarbol@gmail.com> | ||
| 24 | 27 | Justin Venus <justin.venus@gmail.com> <justin.venus@orbitz.com> | |
| 25 | 28 | Keno Fischer <kenof@stanford.edu> <kfischer+github@college.harvard.edu> | |
| 26 | 29 | Keno Fischer <kenof@stanford.edu> <kfischer@college.harvard.edu> | |
@@ -46,6 +49,7 @@ Santiago Gimeno <santiago.gimeno@quantion.es> <santiago.gimeno@gmail.com> | |||
| 46 | 49 | Saúl Ibarra Corretgé <saghul@gmail.com> | |
| 47 | 50 | Saúl Ibarra Corretgé <saghul@gmail.com> <s@saghul.net> | |
| 48 | 51 | Shigeki Ohtsu <ohtsu@iij.ad.jp> <ohtsu@ohtsu.org> | |
| 52 | + Shuowang (Wayne) Zhang <shuowang.zhang@ibm.com> | ||
| 49 | 53 | TK-one <tk5641@naver.com> | |
| 50 | 54 | Timothy J. Fontaine <tjfontaine@gmail.com> | |
| 51 | 55 | Yasuhiro Matsumoto <mattn.jp@gmail.com> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -479,3 +479,20 @@ Joshua M. Clulow <josh@sysmgr.org> | |||
| 479 | 479 | Guilherme Íscaro <cabelitostos@gmail.com> | |
| 480 | 480 | Martin Storsjö <martin@martin.st> | |
| 481 | 481 | Claes Nästén <pekdon@gmail.com> | |
| 482 | + Mohamed Edrah <43171151+MSE99@users.noreply.github.com> | ||
| 483 | + Supragya Raj <supragyaraj@gmail.com> | ||
| 484 | + Ikko Ashimine <eltociear@gmail.com> | ||
| 485 | + Sylvain Corlay <sylvain.corlay@gmail.com> | ||
| 486 | + earnal <etienne.arnal@gmail.com> | ||
| 487 | + YAKSH BARIYA <yakshbari4@gmail.com> | ||
| 488 | + Ofek Lev <ofekmeister@gmail.com> | ||
| 489 | + ~locpyl-tidnyd <81016946+locpyl-tidnyd@users.noreply.github.com> | ||
| 490 | + Evan Miller <emmiller@gmail.com> | ||
| 491 | + Petr Menšík <pemensik@redhat.com> | ||
| 492 | + Nicolas Noble <nicolasnoble@users.noreply.github.com> | ||
| 493 | + AJ Heller <aj@drfloob.com> | ||
| 494 | + Stacey Marshall <stacey.marshall@gmail.com> | ||
| 495 | + Jesper Storm Bache <jsbache@users.noreply.github.com> | ||
| 496 | + Campbell He <duskmoon314@users.noreply.github.com> | ||
| 497 | + Andrey Hohutkin <andrey.hohutkin@gmail.com> | ||
| 498 | + deal <halx99@live.com> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -31,13 +31,26 @@ if(QEMU) | |||
| 31 | 31 | endif() | |
| 32 | 32 | ||
| 33 | 33 | option(ASAN "Enable AddressSanitizer (ASan)" OFF) | |
| 34 | - if(ASAN AND CMAKE_C_COMPILER_ID MATCHES "AppleClang|GNU|Clang") | ||
| 34 | + option(TSAN "Enable ThreadSanitizer (TSan)" OFF) | ||
| 35 | + | ||
| 36 | + if((ASAN OR TSAN) AND NOT (CMAKE_C_COMPILER_ID MATCHES "AppleClang|GNU|Clang")) | ||
| 37 | + message(SEND_ERROR "Sanitizer support requires clang or gcc. Try again with -DCMAKE_C_COMPILER.") | ||
| 38 | + endif() | ||
| 39 | + | ||
| 40 | + if(ASAN) | ||
| 35 | 41 | add_definitions(-D__ASAN__=1) | |
| 36 | - set (CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address") | ||
| 37 | - set (CMAKE_SHARED_LINKER_FLAGS_DEBUG "${CMAKE_SHARED_LINKER_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address") | ||
| 42 | + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-omit-frame-pointer -fsanitize=address") | ||
| 43 | + set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fno-omit-frame-pointer -fsanitize=address") | ||
| 38 | 44 | set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fno-omit-frame-pointer -fsanitize=address") | |
| 39 | 45 | endif() | |
| 40 | 46 | ||
| 47 | + if(TSAN) | ||
| 48 | + add_definitions(-D__TSAN__=1) | ||
| 49 | + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-omit-frame-pointer -fsanitize=thread") | ||
| 50 | + set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fno-omit-frame-pointer -fsanitize=thread") | ||
| 51 | + set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fno-omit-frame-pointer -fsanitize=thread") | ||
| 52 | + endif() | ||
| 53 | + | ||
| 41 | 54 | # Compiler check | |
| 42 | 55 | string(CONCAT is-msvc $<OR: | |
| 43 | 56 | $<C_COMPILER_ID:MSVC>, | |
@@ -418,7 +431,6 @@ if(LIBUV_BUILD_TESTS) | |||
| 418 | 431 | test/benchmark-thread.c | |
| 419 | 432 | test/benchmark-udp-pummel.c | |
| 420 | 433 | test/blackhole-server.c | |
| 421 | - test/dns-server.c | ||
| 422 | 434 | test/echo-server.c | |
| 423 | 435 | test/run-benchmarks.c | |
| 424 | 436 | test/runner.c) | |
@@ -477,6 +489,7 @@ if(LIBUV_BUILD_TESTS) | |||
| 477 | 489 | test/test-idna.c | |
| 478 | 490 | test/test-ip4-addr.c | |
| 479 | 491 | test/test-ip6-addr.c | |
| 492 | + test/test-ip-name.c | ||
| 480 | 493 | test/test-ipc-heavy-traffic-deadlock-bug.c | |
| 481 | 494 | test/test-ipc-send-recv.c | |
| 482 | 495 | test/test-ipc.c | |
@@ -490,7 +503,6 @@ if(LIBUV_BUILD_TESTS) | |||
| 490 | 503 | test/test-multiple-listen.c | |
| 491 | 504 | test/test-mutexes.c | |
| 492 | 505 | test/test-not-readable-nor-writable-on-read-error.c | |
| 493 | - test/test-not-readable-on-eof.c | ||
| 494 | 506 | test/test-not-writable-after-shutdown.c | |
| 495 | 507 | test/test-osx-select.c | |
| 496 | 508 | test/test-pass-always.c | |
@@ -518,6 +530,7 @@ if(LIBUV_BUILD_TESTS) | |||
| 518 | 530 | test/test-process-title.c | |
| 519 | 531 | test/test-queue-foreach-delete.c | |
| 520 | 532 | test/test-random.c | |
| 533 | + test/test-readable-on-eof.c | ||
| 521 | 534 | test/test-ref.c | |
| 522 | 535 | test/test-run-nowait.c | |
| 523 | 536 | test/test-run-once.c | |
@@ -574,6 +587,7 @@ if(LIBUV_BUILD_TESTS) | |||
| 574 | 587 | test/test-udp-alloc-cb-fail.c | |
| 575 | 588 | test/test-udp-bind.c | |
| 576 | 589 | test/test-udp-connect.c | |
| 590 | + test/test-udp-connect6.c | ||
| 577 | 591 | test/test-udp-create-socket-early.c | |
| 578 | 592 | test/test-udp-dgram-too-big.c | |
| 579 | 593 | test/test-udp-ipv6.c | |
@@ -625,46 +639,43 @@ if(LIBUV_BUILD_TESTS) | |||
| 625 | 639 | endif() | |
| 626 | 640 | endif() | |
| 627 | 641 | ||
| 628 | - if(UNIX OR MINGW) | ||
| 629 | - # Now for some gibbering horrors from beyond the stars... | ||
| 630 | - foreach(lib IN LISTS uv_libraries) | ||
| 631 | - list(APPEND LIBS "-l${lib}") | ||
| 632 | - endforeach() | ||
| 633 | - string(REPLACE ";" " " LIBS "${LIBS}") | ||
| 634 | - # Consider setting project version via project() call? | ||
| 635 | - file(STRINGS configure.ac configure_ac REGEX ^AC_INIT) | ||
| 636 | - string(REGEX MATCH "([0-9]+)[.][0-9]+[.][0-9]+" PACKAGE_VERSION "${configure_ac}") | ||
| 637 | - set(UV_VERSION_MAJOR "${CMAKE_MATCH_1}") | ||
| 638 | - # The version in the filename is mirroring the behaviour of autotools. | ||
| 639 | - set_target_properties(uv PROPERTIES | ||
| 640 | - VERSION ${UV_VERSION_MAJOR}.0.0 | ||
| 641 | - SOVERSION ${UV_VERSION_MAJOR}) | ||
| 642 | - set(includedir ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR}) | ||
| 643 | - set(libdir ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}) | ||
| 644 | - set(prefix ${CMAKE_INSTALL_PREFIX}) | ||
| 645 | - configure_file(libuv.pc.in libuv.pc @ONLY) | ||
| 646 | - configure_file(libuv-static.pc.in libuv-static.pc @ONLY) | ||
| 647 | - | ||
| 648 | - install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) | ||
| 649 | - install(FILES LICENSE DESTINATION ${CMAKE_INSTALL_DOCDIR}) | ||
| 650 | - install(FILES ${PROJECT_BINARY_DIR}/libuv.pc ${PROJECT_BINARY_DIR}/libuv-static.pc | ||
| 651 | - DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) | ||
| 652 | - install(TARGETS uv LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) | ||
| 653 | - install(TARGETS uv_a ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) | ||
| 654 | - endif() | ||
| 642 | + # Now for some gibbering horrors from beyond the stars... | ||
| 643 | + foreach(lib IN LISTS uv_libraries) | ||
| 644 | + list(APPEND LIBS "-l${lib}") | ||
| 645 | + endforeach() | ||
| 646 | + string(REPLACE ";" " " LIBS "${LIBS}") | ||
| 647 | + # Consider setting project version via project() call? | ||
| 648 | + file(STRINGS configure.ac configure_ac REGEX ^AC_INIT) | ||
| 649 | + string(REGEX MATCH "([0-9]+)[.][0-9]+[.][0-9]+" PACKAGE_VERSION "${configure_ac}") | ||
| 650 | + set(UV_VERSION_MAJOR "${CMAKE_MATCH_1}") | ||
| 651 | + # The version in the filename is mirroring the behaviour of autotools. | ||
| 652 | + set_target_properties(uv PROPERTIES | ||
| 653 | + VERSION ${UV_VERSION_MAJOR}.0.0 | ||
| 654 | + SOVERSION ${UV_VERSION_MAJOR}) | ||
| 655 | + set(includedir ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR}) | ||
| 656 | + set(libdir ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}) | ||
| 657 | + set(prefix ${CMAKE_INSTALL_PREFIX}) | ||
| 658 | + configure_file(libuv.pc.in libuv.pc @ONLY) | ||
| 659 | + configure_file(libuv-static.pc.in libuv-static.pc @ONLY) | ||
| 660 | + | ||
| 661 | + install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) | ||
| 662 | + install(FILES LICENSE DESTINATION ${CMAKE_INSTALL_DOCDIR}) | ||
| 663 | + install(FILES ${PROJECT_BINARY_DIR}/libuv.pc ${PROJECT_BINARY_DIR}/libuv-static.pc | ||
| 664 | + DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) | ||
| 665 | + install(TARGETS uv EXPORT libuvConfig | ||
| 666 | + RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
| 667 | + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) | ||
| 668 | + install(TARGETS uv_a ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) | ||
| 669 | + install(EXPORT libuvConfig DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/libuv) | ||
| 655 | 670 | ||
| 656 | 671 | if(MSVC) | |
| 657 | - install(DIRECTORY include/ DESTINATION include) | ||
| 658 | - install(FILES LICENSE DESTINATION .) | ||
| 659 | - install(TARGETS uv uv_a | ||
| 660 | - RUNTIME DESTINATION lib/$<CONFIG> | ||
| 661 | - ARCHIVE DESTINATION lib/$<CONFIG>) | ||
| 672 | + set(CMAKE_DEBUG_POSTFIX d) | ||
| 662 | 673 | endif() | |
| 663 | 674 | ||
| 664 | 675 | message(STATUS "summary of build options: | |
| 665 | 676 | Install prefix: ${CMAKE_INSTALL_PREFIX} | |
| 666 | 677 | Target system: ${CMAKE_SYSTEM_NAME} | |
| 667 | 678 | Compiler: | |
| 668 | - C compiler: ${CMAKE_C_COMPILER} | ||
| 679 | + C compiler: ${CMAKE_C_COMPILER} (${CMAKE_C_COMPILER_ID}) | ||
| 669 | 680 | CFLAGS: ${CMAKE_C_FLAGS_${_build_type}} ${CMAKE_C_FLAGS} | |
| 670 | 681 | ") | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,93 @@ | |||
| 1 | - 2021.07.21, Version 1.42.0 (Stable) | ||
| 1 | + 2022.01.05, Version 1.43.0 (Stable), 988f2bfc4defb9a85a536a3e645834c161143ee0 | ||
| 2 | + | ||
| 3 | + Changes since version 1.42.0: | ||
| 4 | + | ||
| 5 | + * run test named ip6_sin6_len (Jameson Nash) | ||
| 6 | + | ||
| 7 | + * docs: fix wrong information about scheduling (Mohamed Edrah) | ||
| 8 | + | ||
| 9 | + * unix: protect fork in uv_spawn from signals (Jameson Nash) | ||
| 10 | + | ||
| 11 | + * drop only successfully sent packets post sendmmsg (Supragya Raj) | ||
| 12 | + | ||
| 13 | + * test: fix typo in test-tty-escape-sequence-processing.c (Ikko Ashimine) | ||
| 14 | + | ||
| 15 | + * cmake: use standard installation layout always (Sylvain Corlay) | ||
| 16 | + | ||
| 17 | + * win,spawn: allow UNC path with forward slash (earnal) | ||
| 18 | + | ||
| 19 | + * win,fsevent: fix uv_fs_event_stop() assert (Ben Noordhuis) | ||
| 20 | + | ||
| 21 | + * unix: remove redundant include in unix.h ( | ||
| 22 | + | ||
| 23 | + * doc: mark SmartOS as Tier 3 support ( | ||
| 24 | + | ||
| 25 | + * doc: fix broken links for netbsd's sysctl manpage ( | ||
| 26 | + | ||
| 27 | + * misc: adjust stalebot deadline ( | ||
| 28 | + | ||
| 29 | + * test: remove `dns-server.c` as it is not used anywhere ( | ||
| 30 | + | ||
| 31 | + * build: fix non-cmake android builds ( | ||
| 32 | + | ||
| 33 | + * doc: replace pyuv with uvloop ( | ||
| 34 | + | ||
| 35 | + * asan: fix some tests ( | ||
| 36 | + | ||
| 37 | + * build: add experimental TSAN configuration ( | ||
| 38 | + | ||
| 39 | + * pipe: remove useless assertion ( | ||
| 40 | + | ||
| 41 | + * bsd: destroy mutex in uv__process_title_cleanup() ( | ||
| 42 | + | ||
| 43 | + * build: add windows build to CI ( | ||
| 44 | + | ||
| 45 | + * win,fs: fix error code in uv_fs_read() and uv_fs_write() ( Sen) | ||
| 46 | + | ||
| 47 | + * build: add macos-latest to ci matrix ( | ||
| 48 | + | ||
| 49 | + * udp: fix &/&& typo in macro condition ( | ||
| 50 | + | ||
| 51 | + * build: install cmake package module (Petr Menšík) | ||
| 52 | + | ||
| 53 | + * win: fix build for mingw32 ( | ||
| 54 | + | ||
| 55 | + * build: fix build failures with MinGW new headers (erw7) | ||
| 56 | + | ||
| 57 | + * build: fix win build with cmake versions before v3.14 ( | ||
| 58 | + | ||
| 59 | + * unix: support aarch64 in uv_cpu_info() ( | ||
| 60 | + | ||
| 61 | + * linux: work around CIFS EPERM bug ( | ||
| 62 | + | ||
| 63 | + * sunos: Oracle Developer Studio support ( | ||
| 64 | + | ||
| 65 | + * Revert "sunos: Oracle Developer Studio support ( | ||
| 66 | + | ||
| 67 | + * sunos: Oracle Developer Studio support ( | ||
| 68 | + | ||
| 69 | + * stream: permit read after seeing EOF ( | ||
| 70 | + | ||
| 71 | + * thread: initialize uv_thread_self for all threads ( | ||
| 72 | + | ||
| 73 | + * kqueue: ignore write-end closed notifications ( | ||
| 74 | + | ||
| 75 | + * macos: fix the cfdata length in uv__get_cpu_speed ( Bache) | ||
| 76 | + | ||
| 77 | + * unix,win: add uv_ip_name to get name from sockaddr ( | ||
| 78 | + | ||
| 79 | + * win,test: fix a few typos (AJ Heller) | ||
| 80 | + | ||
| 81 | + * zos: use destructor for uv__threadpool_cleanup() ( Zhang) | ||
| 82 | + | ||
| 83 | + * linux: use MemAvailable instead of MemFree ( | ||
| 84 | + | ||
| 85 | + * freebsd: call dlerror() only if necessary ( | ||
| 86 | + | ||
| 87 | + * bsd,windows,zos: fix udp disconnect EINVAL ( | ||
| 88 | + | ||
| 89 | + | ||
| 90 | + 2021.07.21, Version 1.42.0 (Stable), 6ce14710da7079eb248868171f6343bc409ea3a4 | ||
| 2 | 91 | ||
| 3 | 92 | Changes since version 1.41.0: | |
| 4 | 93 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -141,7 +141,6 @@ endif | |||
| 141 | 141 | ||
| 142 | 142 | test_run_tests_LDFLAGS = | |
| 143 | 143 | test_run_tests_SOURCES = test/blackhole-server.c \ | |
| 144 | - test/dns-server.c \ | ||
| 145 | 144 | test/echo-server.c \ | |
| 146 | 145 | test/run-tests.c \ | |
| 147 | 146 | test/runner.c \ | |
@@ -193,6 +192,7 @@ test_run_tests_SOURCES = test/blackhole-server.c \ | |||
| 193 | 192 | test/test-idna.c \ | |
| 194 | 193 | test/test-ip4-addr.c \ | |
| 195 | 194 | test/test-ip6-addr.c \ | |
| 195 | + test/test-ip-name.c \ | ||
| 196 | 196 | test/test-ipc-heavy-traffic-deadlock-bug.c \ | |
| 197 | 197 | test/test-ipc-send-recv.c \ | |
| 198 | 198 | test/test-ipc.c \ | |
@@ -207,7 +207,6 @@ test_run_tests_SOURCES = test/blackhole-server.c \ | |||
| 207 | 207 | test/test-multiple-listen.c \ | |
| 208 | 208 | test/test-mutexes.c \ | |
| 209 | 209 | test/test-not-readable-nor-writable-on-read-error.c \ | |
| 210 | - test/test-not-readable-on-eof.c \ | ||
| 211 | 210 | test/test-not-writable-after-shutdown.c \ | |
| 212 | 211 | test/test-osx-select.c \ | |
| 213 | 212 | test/test-pass-always.c \ | |
@@ -235,6 +234,7 @@ test_run_tests_SOURCES = test/blackhole-server.c \ | |||
| 235 | 234 | test/test-process-title-threadsafe.c \ | |
| 236 | 235 | test/test-queue-foreach-delete.c \ | |
| 237 | 236 | test/test-random.c \ | |
| 237 | + test/test-readable-on-eof.c \ | ||
| 238 | 238 | test/test-ref.c \ | |
| 239 | 239 | test/test-run-nowait.c \ | |
| 240 | 240 | test/test-run-once.c \ | |
@@ -291,6 +291,7 @@ test_run_tests_SOURCES = test/blackhole-server.c \ | |||
| 291 | 291 | test/test-udp-alloc-cb-fail.c \ | |
| 292 | 292 | test/test-udp-bind.c \ | |
| 293 | 293 | test/test-udp-connect.c \ | |
| 294 | + test/test-udp-connect6.c \ | ||
| 294 | 295 | test/test-udp-create-socket-early.c \ | |
| 295 | 296 | test/test-udp-dgram-too-big.c \ | |
| 296 | 297 | test/test-udp-ipv6.c \ | |
@@ -390,10 +391,7 @@ if ANDROID | |||
| 390 | 391 | uvinclude_HEADERS += include/uv/android-ifaddrs.h | |
| 391 | 392 | libuv_la_CFLAGS += -D_GNU_SOURCE | |
| 392 | 393 | libuv_la_SOURCES += src/unix/android-ifaddrs.c \ | |
| 393 | - src/unix/pthread-fixes.c \ | ||
| 394 | - src/unix/random-getrandom.c \ | ||
| 395 | - src/unix/random-sysctl-linux.c \ | ||
| 396 | - src/unix/epoll.c | ||
| 394 | + src/unix/pthread-fixes.c | ||
| 397 | 395 | endif | |
| 398 | 396 | ||
| 399 | 397 | if CYGWIN | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,7 +5,7 @@ | |||
| 5 | 5 | libuv is a multi-platform support library with a focus on asynchronous I/O. It | |
| 6 | 6 | was primarily developed for use by [Node.js][], but it's also | |
| 7 | 7 | used by [Luvit](http://luvit.io/), [Julia](http://julialang.org/), | |
| 8 | - [pyuv](https://github.com/saghul/pyuv), and [others](https://github.com/libuv/libuv/blob/v1.x/LINKS.md). | ||
| 8 | + [uvloop](https://github.com/MagicStack/uvloop), and [others](https://github.com/libuv/libuv/blob/v1.x/LINKS.md). | ||
| 9 | 9 | ||
| 10 | 10 | ## Feature highlights | |
| 11 | 11 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -10,7 +10,7 @@ | |||
| 10 | 10 | | IBM i | Tier 2 | >= IBM i 7.2 | Maintainers: @libuv/ibmi | | |
| 11 | 11 | | z/OS | Tier 2 | >= V2R2 | Maintainers: @libuv/zos | | |
| 12 | 12 | | Linux with musl | Tier 2 | musl >= 1.0 | | | |
| 13 | - | SmartOS | Tier 2 | >= 14.4 | Maintainers: @libuv/smartos | | ||
| 13 | + | SmartOS | Tier 3 | >= 14.4 | | | ||
| 14 | 14 | | Android | Tier 3 | NDK >= r15b | | | |
| 15 | 15 | | MinGW | Tier 3 | MinGW32 and MinGW-w64 | | | |
| 16 | 16 | | SunOS | Tier 3 | Solaris 121 and later | | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,7 +13,7 @@ | |||
| 13 | 13 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
| 14 | 14 | ||
| 15 | 15 | AC_PREREQ(2.57) | |
| 16 | - AC_INIT([libuv], [1.42.0], [https://github.com/libuv/libuv/issues]) | ||
| 16 | + AC_INIT([libuv], [1.43.0], [https://github.com/libuv/libuv/issues]) | ||
| 17 | 17 | AC_CONFIG_MACRO_DIR([m4]) | |
| 18 | 18 | m4_include([m4/libuv-extra-automake-flags.m4]) | |
| 19 | 19 | m4_include([m4/as_case.m4]) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,7 +7,7 @@ Overview | |||
| 7 | 7 | ||
| 8 | 8 | libuv is a multi-platform support library with a focus on asynchronous I/O. It | |
| 9 | 9 | was primarily developed for use by `Node.js`_, but it's also used by `Luvit`_, | |
| 10 | - `Julia`_, `pyuv`_, and `others`_. | ||
| 10 | + `Julia`_, `uvloop`_, and `others`_. | ||
| 11 | 11 | ||
| 12 | 12 | .. note:: | |
| 13 | 13 | In case you find errors in this documentation you can help by sending | |
@@ -16,7 +16,7 @@ was primarily developed for use by `Node.js`_, but it's also used by `Luvit`_, | |||
| 16 | 16 | .. _Node.js: https://nodejs.org | |
| 17 | 17 | .. _Luvit: https://luvit.io | |
| 18 | 18 | .. _Julia: https://julialang.org | |
| 19 | - .. _pyuv: https://github.com/saghul/pyuv | ||
| 19 | + .. _uvloop: https://github.com/MagicStack/uvloop | ||
| 20 | 20 | .. _others: https://github.com/libuv/libuv/blob/v1.x/LINKS.md | |
| 21 | 21 | ||
| 22 | 22 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments