mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
Update Asio to 1.28.2
This commit is contained in:
@@ -24,6 +24,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
|
|
||||||
- This release includes a workaround to make bitsery compile with GCC 13 due to
|
- This release includes a workaround to make bitsery compile with GCC 13 due to
|
||||||
changes in transitive header includes.
|
changes in transitive header includes.
|
||||||
|
- The asio dependency has been updated to target version 1.28.2.
|
||||||
- The tomlplusplus dependency has been updated to target version 3.4.0.
|
- The tomlplusplus dependency has been updated to target version 3.4.0.
|
||||||
|
|
||||||
## [5.0.5] - 2023-05-07
|
## [5.0.5] - 2023-05-07
|
||||||
|
|||||||
+3
-3
@@ -243,14 +243,14 @@ if with_system_asio
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
asio_version = meson.get_compiler('cpp', native : true).get_define('ASIO_VERSION', prefix : '#include <asio.hpp>')
|
asio_version = meson.get_compiler('cpp', native : true).get_define('ASIO_VERSION', prefix : '#include <asio.hpp>')
|
||||||
if asio_version.to_int() < 102000
|
if asio_version.to_int() < 102800
|
||||||
error('Expected version 1.22.0 of the asio library or higher, found @0@ (MMmmrr)'.format(asio_version))
|
error('Expected version 1.28.0 of the asio library or higher, found @0@ (MMmmrr)'.format(asio_version))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# This is a dummy dependency, since the library is only accessible implicitly through the system include path
|
# This is a dummy dependency, since the library is only accessible implicitly through the system include path
|
||||||
asio_dep = declare_dependency()
|
asio_dep = declare_dependency()
|
||||||
else
|
else
|
||||||
asio_dep = dependency('asio', version : '>=1.22.0')
|
asio_dep = dependency('asio', version : '>=1.28.0')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if meson.version().version_compare('>=0.60')
|
if meson.version().version_compare('>=0.60')
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[wrap-git]
|
[wrap-git]
|
||||||
url = https://github.com/chriskohlhoff/asio.git
|
url = https://github.com/chriskohlhoff/asio.git
|
||||||
# This is tag asio-1-22-1
|
# This is tag asio-1-28-2
|
||||||
revision = bba12d10501418fd3789ce01c9f86a77d37df7ed
|
revision = 7609450f71434bdc9fbd9491a9505b423c2a8496
|
||||||
depth = 1
|
depth = 1
|
||||||
patch_directory = asio
|
patch_directory = asio
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
project('asio', 'cpp', version : '1.22.1')
|
project('asio', 'cpp', version : '1.28.2')
|
||||||
|
|
||||||
asio_dep = declare_dependency(include_directories : include_directories('asio/include'))
|
asio_dep = declare_dependency(include_directories : include_directories('asio/include'))
|
||||||
|
|||||||
Reference in New Issue
Block a user