| Upstream-Status: Submitted [https://github.com/eclipse/mosquitto/pull/1571] |
| From 3fe5468f1bdca1bff1d18cf43c9e338f41aa9e32 Mon Sep 17 00:00:00 2001 |
| From: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> |
| Date: Wed, 22 Jan 2020 12:39:49 +0100 |
| Subject: [PATCH] Add dynamic symbols linking with cmake too |
| |
| Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> |
| --- |
| lib/CMakeLists.txt | 2 ++ |
| 1 file changed, 2 insertions(+) |
| |
| --- a/lib/CMakeLists.txt |
| +++ b/lib/CMakeLists.txt |
| @@ -94,6 +94,8 @@ |
| OUTPUT_NAME mosquitto |
| VERSION ${VERSION} |
| SOVERSION 1 |
| + LINK_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/linker.version |
| + LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/linker.version" |
| ) |
| |
| install(TARGETS libmosquitto |