mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 06:32:34 +02:00
This is the first major release bump for CMake since 3.0 was released in 2014. Compatibility with versions of CMake older than 3.5 has been removed. Full release notes are available at [0]. Obsolete patches have been removed and the few remaining ones have been refreshed. We can now build cmake without patches, only cmake-native requires two that are not suitable for upstreaming. The main license file has been renamed from Copyright.txt to LICENSE.rst in [1]. References to the file have been updated, causing changes to the licensing header in 'cmake.h' (see [2]). Additionally, the '1996 - 2024' copyright statement in (cm)curl's COPYING was updated to '1996 - 2025' in [3]. [0]: https://cmake.org/cmake/help/v4.0/release/4.0.html [1]:2d42a5444f[2]:de273b2e11[3]:48b13baebcLicense-Update: License file renamed; copyright years updated (From OE-Core rev: fc7aafb30bc5fe83f8d2ed451cb6b4d68b131fb5) Signed-off-by: Moritz Haase <Moritz.Haase@bmw.de> CC: alex.kanavin@gmail.com Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From e0a1996a85dcb43d69d3c7daecab4da74599e5ba Mon Sep 17 00:00:00 2001
|
|
From: Changqing Li <changqing.li@windriver.com>
|
|
Date: Wed, 28 Dec 2022 17:51:27 +0800
|
|
Subject: [PATCH] CMakeLists.txt: disable USE_NGHTTP2
|
|
|
|
nghttp2 depends on cmake-native to build, to break circular
|
|
dependency, disable nghttp2.
|
|
|
|
Upstream-Status: Inappropriate [oe specific]
|
|
|
|
Signed-off-by: Changqing Li <changqing.li@windriver.com>
|
|
|
|
Adjust the patch to apply on top of v3.28.3.
|
|
|
|
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
|
|
|
|
Adjust the patch to apply on top of v3.30.1.
|
|
|
|
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
|
|
---
|
|
Utilities/cmcurl/CMakeLists.txt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Utilities/cmcurl/CMakeLists.txt b/Utilities/cmcurl/CMakeLists.txt
|
|
index 75b510205984894ffa11461e7aa04d3c479709b4..83463042d82d9c7f17932753f47c47b12aeec85b 100644
|
|
--- a/Utilities/cmcurl/CMakeLists.txt
|
|
+++ b/Utilities/cmcurl/CMakeLists.txt
|
|
@@ -105,7 +105,7 @@ set(USE_ECH OFF)
|
|
set(USE_HTTPSRR OFF)
|
|
set(USE_LIBIDN2 ON)
|
|
set(USE_LIBRTMP OFF)
|
|
-set(USE_NGHTTP2 ON)
|
|
+set(USE_NGHTTP2 OFF)
|
|
set(USE_NGTCP2 OFF)
|
|
set(USE_OPENSSL_QUIC OFF)
|
|
set(USE_QUICHE OFF)
|