From: wangmy Date: Mon, 18 Apr 2022 12:10:52 +0000 (+0800) Subject: boost: upgrade 1.78.0 -> 1.79.0 X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~4384 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=091d73e893081bf15afa19a71203e941ac46b306;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git boost: upgrade 1.78.0 -> 1.79.0 0001-futex-fix-build-on-32-bit-architectures-using-64-bit.patch de657e01635306085488290ea83de541ec393f8b.patch removed since they're included in 1.79.0 Changelog: https://www.boost.org/users/history/version_1_79_0.html Signed-off-by: Wang Mingyu Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/boost/boost-1.78.0.inc b/meta/recipes-support/boost/boost-1.79.0.inc similarity index 90% rename from meta/recipes-support/boost/boost-1.78.0.inc rename to meta/recipes-support/boost/boost-1.79.0.inc index 729a47b54f4..f90c463931a 100644 --- a/meta/recipes-support/boost/boost-1.78.0.inc +++ b/meta/recipes-support/boost/boost-1.79.0.inc @@ -12,7 +12,7 @@ BOOST_MAJ = "${@"_".join(d.getVar("PV").split(".")[0:2])}" BOOST_P = "boost_${BOOST_VER}" SRC_URI = "https://boostorg.jfrog.io/artifactory/main/release/${PV}/source/${BOOST_P}.tar.bz2" -SRC_URI[sha256sum] = "8681f175d4bdb26c52222665793eef08490d7758529330f98d3b29dd0735bccc" +SRC_URI[sha256sum] = "475d589d51a7f8b3ba2ba4eda022b170e562ca3b760ee922c146b6c65856ef39" UPSTREAM_CHECK_URI = "http://www.boost.org/users/download/" UPSTREAM_CHECK_REGEX = "release/(?P.*)/source/" diff --git a/meta/recipes-support/boost/boost/0001-futex-fix-build-on-32-bit-architectures-using-64-bit.patch b/meta/recipes-support/boost/boost/0001-futex-fix-build-on-32-bit-architectures-using-64-bit.patch deleted file mode 100644 index 20dc3ca54e3..00000000000 --- a/meta/recipes-support/boost/boost/0001-futex-fix-build-on-32-bit-architectures-using-64-bit.patch +++ /dev/null @@ -1,36 +0,0 @@ -From b15d8d0754bb545ba10d0cfba8bbfdfb22a62c38 Mon Sep 17 00:00:00 2001 -From: Khem Raj -Date: Sun, 20 Feb 2022 22:03:14 -0800 -Subject: [PATCH] futex: fix build on 32-bit architectures using 64-bit time_t - -Fix the following build failure on 32-bit architectures using 64-bit -time_t (e.g. riscv32): -| ./boost/fiber/detail/futex.hpp:31:23: error: use of undeclared identifier 'SYS_futex' -| return ::syscall( SYS_futex, addr, op, x, nullptr, nullptr, 0); -| ^ -| 1 error generated. - -Upstream-Status: Submitted [https://github.com/boostorg/fiber/pull/292] -Signed-off-by: Khem Raj ---- - boost/fiber/detail/futex.hpp | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/boost/fiber/detail/futex.hpp b/boost/fiber/detail/futex.hpp -index e64bd5990..d0353e9e5 100644 ---- a/boost/fiber/detail/futex.hpp -+++ b/boost/fiber/detail/futex.hpp -@@ -12,6 +12,10 @@ - - #include - -+#ifndef SYS_futex -+#define SYS_futex SYS_futex_time64 -+#endif -+ - #if BOOST_OS_LINUX - extern "C" { - #include --- -2.35.1 - diff --git a/meta/recipes-support/boost/boost/de657e01635306085488290ea83de541ec393f8b.patch b/meta/recipes-support/boost/boost/de657e01635306085488290ea83de541ec393f8b.patch deleted file mode 100644 index 867ec03ba67..00000000000 --- a/meta/recipes-support/boost/boost/de657e01635306085488290ea83de541ec393f8b.patch +++ /dev/null @@ -1,30 +0,0 @@ -From de657e01635306085488290ea83de541ec393f8b Mon Sep 17 00:00:00 2001 -From: Leonardo Neumann -Date: Mon, 13 Dec 2021 01:07:20 -0300 -Subject: [PATCH] Fix missing sys/stat.h include on musl-based systems - -Boost 1.78.0 fails to build on musl-based systems because musl does -not include sys/stat.h by default. - -Fixes #161 ("Boost compiler error") -Upstream-Status: Submitted [https://github.com/boostorg/interprocess/pull/162] -Signed-off-by: Alexander Kanavin ---- - include/boost/interprocess/permissions.hpp | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/boost/interprocess/permissions.hpp b/boost/interprocess/permissions.hpp -index ab55411e..0b21a685 100644 ---- a/boost/interprocess/permissions.hpp -+++ b/boost/interprocess/permissions.hpp -@@ -29,6 +29,10 @@ - - #include - -+#else -+ -+#include -+ - #endif - - #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED diff --git a/meta/recipes-support/boost/boost_1.78.0.bb b/meta/recipes-support/boost/boost_1.79.0.bb similarity index 67% rename from meta/recipes-support/boost/boost_1.78.0.bb rename to meta/recipes-support/boost/boost_1.79.0.bb index 58be9dcf122..dd5d6eadd61 100644 --- a/meta/recipes-support/boost/boost_1.78.0.bb +++ b/meta/recipes-support/boost/boost_1.79.0.bb @@ -5,6 +5,4 @@ SRC_URI += "file://boost-CVE-2012-2677.patch \ file://boost-math-disable-pch-for-gcc.patch \ file://0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch \ file://0001-dont-setup-compiler-flags-m32-m64.patch \ - file://de657e01635306085488290ea83de541ec393f8b.patch \ - file://0001-futex-fix-build-on-32-bit-architectures-using-64-bit.patch \ "