diff options
| author | Andrej Kozemcak <andrej.kozemcak@siemens.com> | 2026-03-09 11:06:17 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-03-17 13:25:18 -0700 |
| commit | fe4c5cadcaf310f25e45c9279b36ae556cb45115 (patch) | |
| tree | ea4583ca0bca5c97eaf453ffa9c609a0148c867e /meta-oe/recipes-support/asio/asio_1.36.0.bb | |
| parent | 5bca83cd508790679e704a4c9f6addb22162882a (diff) | |
| download | meta-openembedded-fe4c5cadcaf310f25e45c9279b36ae556cb45115.tar.gz | |
asio: upgrade 1.30.2 -> 1.36.0
License-Update: copyright years refreshed
Changelogs:
Asio 1.36.0:
https://think-async.com/Asio/asio-1.36.0/doc/asio/history.html#asio.history.asio_1_36_0
- Fixed an issue, introduced in Asio 1.35.0, that prevented the creation of internal threads required for running some asynchronous operations on a thread_pool.
- Fixed co_spawn to adhere to the asynchronous operation requirement for non-reentrant invocation of the completion handler.
- Added the [[noreturn]] attribute to asio::detail::throw_exception.
- Fixed compilation errors in channel<void(error_code)> and concurrent_channel<void(error_code)>.
- Fixed a compilation issue with the Bullseye compiler.
- Fixed an awaitable coroutine compile error with the clang shipped with MSVC.
- Fixed support for platforms that don't define SA_NOCLDWAIT.
- Worked around a warning that occurs when building with _FORTIFY_SOURCE on recent g++.
- Added a documentation note on basic_signal_set async signal safety.
Asio 1.35.0:
https://think-async.com/Asio/asio-1.36.0/doc/asio/history.html#asio.history.asio_1_35_0
Asio 1.34.2:
https://think-async.com/Asio/asio-1.36.0/doc/asio/history.html#asio.history.asio_1_34_2
Asio 1.34.1:
https://think-async.com/Asio/asio-1.36.0/doc/asio/history.html#asio.history.asio_1_34_1
Asio 1.34.0:
https://think-async.com/Asio/asio-1.36.0/doc/asio/history.html#asio.history.asio_1_34_0
Asio 1.33.0:
https://think-async.com/Asio/asio-1.36.0/doc/asio/history.html#asio.history.asio_1_33_0
Asio 1.32.0:
https://think-async.com/Asio/asio-1.36.0/doc/asio/history.html#asio.history.asio_1_32_0
Asio 1.31.0:
https://think-async.com/Asio/asio-1.36.0/doc/asio/history.html#asio.history.asio_1_31_0
Signed-off-by: Andrej Kozemcak <andrej.kozemcak@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/asio/asio_1.36.0.bb')
| -rw-r--r-- | meta-oe/recipes-support/asio/asio_1.36.0.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/asio/asio_1.36.0.bb b/meta-oe/recipes-support/asio/asio_1.36.0.bb new file mode 100644 index 0000000000..d196a35c69 --- /dev/null +++ b/meta-oe/recipes-support/asio/asio_1.36.0.bb | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | SUMMARY = "Asio is C++ library for network and low-level I/O programming" | ||
| 2 | DESCRIPTION = "Asio is a cross-platform C++ library for network and low-level \ | ||
| 3 | I/O programming that provides developers with a consistent asynchronous \ | ||
| 4 | model using a modern C++ approach." | ||
| 5 | HOMEPAGE = "http://think-async.com/Asio" | ||
| 6 | SECTION = "libs" | ||
| 7 | LICENSE = "BSL-1.0" | ||
| 8 | |||
| 9 | DEPENDS = "openssl" | ||
| 10 | |||
| 11 | SRC_URI = "${SOURCEFORGE_MIRROR}/asio/${BP}.tar.bz2 \ | ||
| 12 | file://0001-tests-Remove-blocking_adaptation.cpp.patch \ | ||
| 13 | file://run-ptest \ | ||
| 14 | " | ||
| 15 | |||
| 16 | inherit autotools ptest | ||
| 17 | |||
| 18 | ALLOW_EMPTY:${PN} = "1" | ||
| 19 | |||
| 20 | LIC_FILES_CHKSUM = "file://COPYING;md5=92db288d8a7d89bb9c5821c447c3052c" | ||
| 21 | |||
| 22 | SRC_URI[sha256sum] = "7bf4dbe3c1ccd9cc4c94e6e6be026dcc2110f9201d286bb9500dc85d69825524" | ||
| 23 | |||
| 24 | PACKAGECONFIG ??= "boost" | ||
| 25 | |||
| 26 | PACKAGECONFIG[boost] = "--with-boost=${STAGING_LIBDIR},--without-boost,boost" | ||
| 27 | |||
| 28 | TESTDIR = "src/tests" | ||
| 29 | do_compile_ptest() { | ||
| 30 | echo 'buildtest-TESTS: $(check_PROGRAMS)' >> ${TESTDIR}/Makefile | ||
| 31 | oe_runmake -C ${TESTDIR} buildtest-TESTS | ||
| 32 | } | ||
| 33 | |||
| 34 | do_install_ptest() { | ||
| 35 | install -d ${D}${PTEST_PATH}/tests | ||
| 36 | # copy executables | ||
| 37 | find ${B}/${TESTDIR}/unit -type f -executable -exec cp {} ${D}${PTEST_PATH}/tests/ \; | ||
| 38 | } | ||
| 39 | |||
| 40 | BBCLASSEXTEND = "native nativesdk" | ||
