blob: d6486cb45fcee60714eee98830491283a55f59a1 [file] [log] [blame]
Andrew Geisslerc5535c92023-01-27 16:10:19 -06001From 3fd6082c52a8140db5995afb59fb391f7d5c19d7 Mon Sep 17 00:00:00 2001
2From: Changqing Li <changqing.li@windriver.com>
3Date: Wed, 28 Dec 2022 17:51:27 +0800
4Subject: [PATCH] CMakeLists.txt: disable USE_NGHTTP2
5
6nghttp2 depends on cmake-native to build, to break circular
7dependency, disable nghttp2.
8
9Upstream-Status: Inappropriate [oe specific]
10
11Signed-off-by: Changqing Li <changqing.li@windriver.com>
12---
13 Utilities/cmcurl/CMakeLists.txt | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/Utilities/cmcurl/CMakeLists.txt b/Utilities/cmcurl/CMakeLists.txt
17index f842270b..17b1ce19 100644
18--- a/Utilities/cmcurl/CMakeLists.txt
19+++ b/Utilities/cmcurl/CMakeLists.txt
20@@ -68,7 +68,7 @@ set(ENABLE_UNIX_SOCKETS OFF CACHE INTERNAL "No curl Unix domain sockets support"
21 set(HTTP_ONLY OFF CACHE INTERNAL "Curl is not http-only")
22 set(PICKY_COMPILER OFF CACHE INTERNAL "Enable picky compiler options")
23 set(USE_LIBIDN2 ON)
24-set(USE_NGHTTP2 ON)
25+set(USE_NGHTTP2 OFF)
26 set(USE_NGTCP2 OFF)
27 set(USE_QUICHE OFF)
28 set(USE_WIN32_IDN OFF)
29--
302.25.1
31