mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 09:19:51 +00:00
7536aebe63
Remove GCC13 backport. Refresh other patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
From 68546793d3ead9fef78f4b6670b4bee92ae99bc8 Mon Sep 17 00:00:00 2001
|
|
From: Ye Holmes <yeholmes@outlook.com>
|
|
Date: Wed, 17 Feb 2021 19:26:52 +0800
|
|
Subject: [PATCH] fix-openpgm-linking-for-zeromq
|
|
|
|
---
|
|
CMakeLists.txt | 8 +++++++-
|
|
1 file changed, 7 insertions(+), 1 deletion(-)
|
|
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -809,7 +809,7 @@ else()
|
|
# message(FATAL_ERROR "WITH_OPENPGM not implemented")
|
|
|
|
if(NOT OPENPGM_PKGCONFIG_NAME)
|
|
- set(OPENPGM_PKGCONFIG_NAME "openpgm-5.2")
|
|
+ set(OPENPGM_PKGCONFIG_NAME "openpgm-5.3")
|
|
endif()
|
|
|
|
set(OPENPGM_PKGCONFIG_NAME
|
|
@@ -820,6 +820,8 @@ else()
|
|
|
|
if(OPENPGM_FOUND)
|
|
message(STATUS ${OPENPGM_PKGCONFIG_NAME}" found")
|
|
+ find_library(OPENPGM_LIBRARIES NAMES libpgm pgm)
|
|
+ set(pkg_config_libs_private "${pkg_config_libs_private} -lpgm")
|
|
set(pkg_config_names_private "${pkg_config_names_private} ${OPENPGM_PKGCONFIG_NAME}")
|
|
else()
|
|
message(
|
|
@@ -1494,6 +1496,10 @@ if(BUILD_SHARED)
|
|
endif()
|
|
endif()
|
|
|
|
+ if(OPENPGM_FOUND)
|
|
+ target_link_libraries(libzmq ${OPENPGM_LIBRARIES})
|
|
+ endif()
|
|
+
|
|
if(HAVE_WS2_32)
|
|
target_link_libraries(libzmq ws2_32)
|
|
elseif(HAVE_WS2)
|