Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ if(UVW_USE_CLANG_TIDY)
endif()

# Required minimal libuv version
set(UVW_LIBUV_VERSION 1.50.0)
set(UVW_LIBUV_VERSION 1.51.0)

function(fetch_libuv)
if (UVW_FETCH_LIBUV)
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class UVWConan(ConanFile):
exports = "LICENSE"
exports_sources = "src/*"
no_copy_source = True
requires = "libuv/1.50.0@bincrafters/stable"
requires = "libuv/1.51.0@bincrafters/stable"

def package(self):
self.copy(pattern="LICENSE", dst="licenses")
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ project(
default_options: ['cpp_std=c++17'],
)

libuv_dep = dependency('libuv', version: '1.48.0', required: true)
libuv_dep = dependency('libuv', version: '1.51.0', required: true)

sources = [
'src/uvw/async.cpp',
Expand Down
1 change: 1 addition & 0 deletions src/uvw/tcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ namespace details {

enum class uvw_tcp_flags : std::underlying_type_t<uv_tcp_flags> {
IPV6ONLY = UV_TCP_IPV6ONLY,
TCP_REUSEPORT = UV_TCP_REUSEPORT,
UVW_ENUM = 0
};

Expand Down
1 change: 1 addition & 0 deletions src/uvw/udp.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ enum class uvw_udp_flags : std::underlying_type_t<uv_udp_flags> {
UDP_MMSG_CHUNK = UV_UDP_MMSG_CHUNK,
UDP_MMSG_FREE = UV_UDP_MMSG_FREE,
UDP_LINUX_RECVERR = UV_UDP_LINUX_RECVERR,
UDP_REUSEPORT = UV_UDP_REUSEPORT,
UDP_RECVMMSG = UV_UDP_RECVMMSG,
UVW_ENUM = 0
};
Expand Down
18 changes: 9 additions & 9 deletions subprojects/libuv.wrap
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[wrap-file]
directory = libuv-v1.48.0
source_url = https://dist.libuv.org/dist/v1.48.0/libuv-v1.48.0.tar.gz
source_filename = libuv-v1.48.0.tar.gz
source_hash = 7f1db8ac368d89d1baf163bac1ea5fe5120697a73910c8ae6b2fffb3551d59fb
patch_filename = libuv_1.48.0-1_patch.zip
patch_url = https://wrapdb.mesonbuild.com/v2/libuv_1.48.0-1/get_patch
patch_hash = 27b18917c914a5d6dfb459073710e9bfb6b2962d69d4e0bad5bc7b1173482be7
source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/libuv_1.48.0-1/libuv-v1.48.0.tar.gz
wrapdb_version = 1.48.0-1
directory = libuv-v1.51.0
source_url = https://dist.libuv.org/dist/v1.51.0/libuv-v1.51.0.tar.gz
source_filename = libuv-v1.51.0.tar.gz
source_hash = 5f0557b90b1106de71951a3c3931de5e0430d78da1d9a10287ebc7a3f78ef8eb
patch_filename = libuv_1.51.0-1_patch.zip
patch_url = https://wrapdb.mesonbuild.com/v2/libuv_1.51.0-1/get_patch
patch_hash = 0fb123dee5e74621a767a8f2a29dde7219c65a01a5fe63e3c8ffeed675a2d820
source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/libuv_1.51.0-1/libuv-v1.51.0.tar.gz
wrapdb_version = 1.51.0-1

[provide]
libuv = libuv_dep