Bump libuv to 1.45.0

This commit is contained in:
Robert Schulze 2024-09-06 18:26:50 +00:00
parent fb3de3451c
commit cc2467542b
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A
2 changed files with 3 additions and 5 deletions

2
contrib/libuv vendored

@ -1 +1 @@
Subproject commit 04cc9419e4976c2ea33108f206b50f5922c2bbfe Subproject commit 3dd84dd6aed6d2f726d2720d12ec240ff240bc00

View File

@ -10,6 +10,7 @@ set(uv_sources
src/random.c src/random.c
src/strscpy.c src/strscpy.c
src/strtok.c src/strtok.c
src/thread-common.c
src/threadpool.c src/threadpool.c
src/timer.c src/timer.c
src/uv-common.c src/uv-common.c
@ -70,10 +71,7 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
list(APPEND uv_defines _GNU_SOURCE _POSIX_C_SOURCE=200112) list(APPEND uv_defines _GNU_SOURCE _POSIX_C_SOURCE=200112)
list(APPEND uv_libraries rt) list(APPEND uv_libraries rt)
list(APPEND uv_sources list(APPEND uv_sources
src/unix/epoll.c src/unix/linux.c
src/unix/linux-core.c
src/unix/linux-inotify.c
src/unix/linux-syscalls.c
src/unix/procfs-exepath.c src/unix/procfs-exepath.c
src/unix/random-getrandom.c src/unix/random-getrandom.c
src/unix/random-sysctl-linux.c) src/unix/random-sysctl-linux.c)