You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by fg...@apache.org on 2022/06/01 11:21:10 UTC

[nifi-minifi-cpp] 01/03: MINIFICPP-1855 Change libwebsockets source to github

This is an automated email from the ASF dual-hosted git repository.

fgerlits pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git

commit da849f7498a92a1b0d8cd97ccb348ddf0f5394a4
Author: Ferenc Gerlits <fg...@gmail.com>
AuthorDate: Wed Jun 1 09:11:04 2022 +0200

    MINIFICPP-1855 Change libwebsockets source to github
    
    ... and upgrade from v4.3.1 to v4.3.2
    
    Signed-off-by: Ferenc Gerlits <fg...@gmail.com>
    This closes #1343
---
 NOTICE                        | 2 +-
 cmake/KubernetesClientC.cmake | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/NOTICE b/NOTICE
index 2c6ff7584..3f81cc3e5 100644
--- a/NOTICE
+++ b/NOTICE
@@ -62,7 +62,7 @@ This software includes third party software subject to the following copyrights:
 - asio - Copyright (c) 2003-2022 Christopher M. Kohlhoff (chris at kohlhoff dot com)
 - TartanLlama/expected - public domain, thanks to Sy Brand
 - libyaml - Copyright (c) 2006-2016 Kirill Simonov, Copyright (c) 2017-2020 Ingy döt Net
-- libwebsockets - Copyright (C) 2010 - 2020 Andy Green <an...@warmcat.com>
+- libwebsockets - Copyright (C) 2010 - 2022 Andy Green <an...@warmcat.com>
 - kubernetes-client/c - Brendan Burns, Hui Yu and other contributors
 - nlohmann json - Copyright (c) 2013-2022 Niels Lohmann
 - abseil-cpp - Google Inc.
diff --git a/cmake/KubernetesClientC.cmake b/cmake/KubernetesClientC.cmake
index 69db6b2bc..4a6959109 100644
--- a/cmake/KubernetesClientC.cmake
+++ b/cmake/KubernetesClientC.cmake
@@ -36,8 +36,8 @@ set(WEBSOCKETS_PATCH_FILE "${CMAKE_SOURCE_DIR}/thirdparty/libwebsockets/fix-incl
 set(WEBSOCKETS_PC ${Bash_EXECUTABLE} -c "set -x &&\
         (${Patch_EXECUTABLE} -R -p1 -s -f --dry-run -i ${WEBSOCKETS_PATCH_FILE} || ${Patch_EXECUTABLE} -p1 -i ${WEBSOCKETS_PATCH_FILE})")
 FetchContent_Declare(websockets
-        GIT_REPOSITORY  https://libwebsockets.org/repo/libwebsockets.git
-        GIT_TAG         v4.3.1
+        GIT_REPOSITORY  https://github.com/warmcat/libwebsockets.git
+        GIT_TAG         b0a749c8e7a8294b68581ce4feac0e55045eb00b  # v4.3.2
         PATCH_COMMAND "${WEBSOCKETS_PC}"
 )