dev-cpp/cpprestsdk: boost 1.89 removes system stub

Signed-off-by: Jan-Espen Oversand <sigsegv@radiotube.org>
This commit is contained in:
Jan-Espen Oversand
2025-12-22 19:04:02 +01:00
parent b326733cf7
commit 17f67189cb
2 changed files with 17 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND=">=dev-libs/openssl-1.1.1q
>=dev-libs/boost-1.80.0-r1
>=dev-libs/boost-1.80.0-r1:=
>=virtual/zlib-1.2.13-r1:="
DEPEND="${RDEPEND}"
@@ -31,6 +31,9 @@ PATCHES=(
"${FILESDIR}"/cpprestsdk-${PV}-disable-werror-default.patch
"${FILESDIR}"/cpprestsdk-${PV}-boost-1.87-compat.patch
"${FILESDIR}"/cpprestsdk-${PV}-cmake-4.patch
"${FILESDIR}"/cpprestsdk-${PV}-llvm-char-traits-patch.patch
"${FILESDIR}"/cpprestsdk-${PV}-llvm-json-unique-ptr.patch
"${FILESDIR}"/cpprestsdk-${PV}-boost-1.89-system-removal.patch
)
src_configure() {

View File

@@ -0,0 +1,13 @@
https://github.com/microsoft/cpprestsdk/pull/1838
--- a/Release/cmake/cpprestsdk-config.in.cmake.orig 2023-12-05 04:23:31 UTC
+++ b/Release/cmake/cpprestsdk-config.in.cmake
@@ -17,7 +17,7 @@ if(@CPPREST_USES_BOOST@)
if(@CPPREST_USES_BOOST@)
if(UNIX)
- find_dependency(Boost COMPONENTS random system thread filesystem chrono atomic date_time regex)
+ find_dependency(Boost COMPONENTS random thread filesystem chrono atomic date_time regex)
else()
find_dependency(Boost COMPONENTS system date_time regex)
endif()