SHA256
8
0
forked from pool/nanomsg
Files
nanomsg/nanomsg-fix-rpath-issue.patch
Marcus Meissner 398ba5b840 Accepting request 789701 from home:mnhauke:sdr-devel
- Add patch:
  * nanomsg-fix-rpath-issue.patch

- Update to version 1.1.5
  * This release is a minor bug fix release, and includes some
    improvements to the CMake logic that should make incorporating
    nanomsg into larger projects easier.
  * Removed patch:
    - strict.diff (fixed by upstream) GH#990

- Update to version 1.1.4

OBS-URL: https://build.opensuse.org/request/show/789701
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/nanomsg?expand=0&rev=13
2020-03-31 08:04:27 +00:00

18 lines
688 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 62e5beb..3cd37d2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -39,12 +39,6 @@ if (POLICY CMP0042)
cmake_policy (SET CMP0042 NEW)
endif ()
-set (CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
-list (FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}" isSystemDir)
-if ("${isSystemDir}" STREQUAL "-1")
- set (CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}")
-endif ("${isSystemDir}" STREQUAL "-1")
-
set (NN_DESCRIPTION "High-Performance Scalability Protocols")
set (ISSUE_REPORT_MSG "Please consider opening an issue at https://github.com/nanomsg/nanomsg")