From 65a755959f20509220016295fb219dc4e3690c4b Mon Sep 17 00:00:00 2001 From: Simon Chung Date: Tue, 17 Dec 2024 15:48:30 +0000 Subject: [PATCH 1/2] RDKECMF-213 Add CODEOWNERS file --- .github/CODEOWNERS | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..c7b23a3d --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,5 @@ +# These owners will be the default owners for everything in +# the repo. Unless a later match takes precedence, +# @global-owner1 and @global-owner2 will be requested for +# review when someone opens a pull request. +* @rdkcentral/xdialserver-maintainers From 8efac8e97bb559ba246dcc354c1410dd2b88d093 Mon Sep 17 00:00:00 2001 From: apatel859 Date: Mon, 3 Feb 2025 12:26:20 -0500 Subject: [PATCH 2/2] RDKEMW-254: libsoup3 support Signed-off-by: apatel859 --- server/CMakeLists.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/server/CMakeLists.txt b/server/CMakeLists.txt index 7c56967d..c506e0d7 100644 --- a/server/CMakeLists.txt +++ b/server/CMakeLists.txt @@ -27,6 +27,7 @@ find_package (PkgConfig REQUIRED) pkg_search_module (GLIB REQUIRED glib-2.0) pkg_search_module (GIO REQUIRED gio-2.0) pkg_search_module (GSSDP12 gssdp-1.2) +pkg_search_module (LIBSOUP3 libsoup-3.0) if (GSSDP12_FOUND) pkg_search_module (GSSDP REQUIRED gssdp-1.2) add_definitions(-DHAVE_GSSDP_VERSION_1_2_OR_NEWER) @@ -34,7 +35,12 @@ if (GSSDP12_FOUND) else() pkg_search_module (GSSDP REQUIRED gssdp-1.0) endif() -pkg_search_module (SOUP REQUIRED libsoup-2.4) +if (LIBSOUP3_FOUND) + pkg_search_module (SOUP REQUIRED libsoup-3.0) + message("Using libsoup-3.0") +else() + pkg_search_module (SOUP REQUIRED libsoup-2.4) +endif() pkg_search_module (XML2 REQUIRED libxml-2.0) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -g") @@ -101,4 +107,4 @@ target_link_libraries (gdial-server add_executable (gdial-server-ut gdialserver_ut.cpp) -target_link_libraries (gdial-server-ut gdial-plat gdial-server) \ No newline at end of file +target_link_libraries (gdial-server-ut gdial-plat gdial-server)