diff options
Diffstat (limited to 'net-libs/srt/files/srt-1.3.1-no-rpath.patch')
-rw-r--r-- | net-libs/srt/files/srt-1.3.1-no-rpath.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net-libs/srt/files/srt-1.3.1-no-rpath.patch b/net-libs/srt/files/srt-1.3.1-no-rpath.patch new file mode 100644 index 000000000000..6e3650709c63 --- /dev/null +++ b/net-libs/srt/files/srt-1.3.1-no-rpath.patch @@ -0,0 +1,28 @@ +From a90e6ab27bc20fa34536c19828db5be44be4ef4d Mon Sep 17 00:00:00 2001 +From: Craig Andrews <candrews@integralblue.com> +Date: Mon, 26 Nov 2018 21:51:20 -0500 +Subject: [PATCH] Do not force rpath on Linux + +--- + CMakeLists.txt | 8 -------- + 1 file changed, 8 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index eb2582c..60c4507 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -663,14 +663,6 @@ macro(srt_make_application name) + # set (CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) + # set (FORCE_RPATH BUILD_WITH_INSTALL_RPATH TRUE INSTALL_RPATH_USE_LINK_PATH TRUE) + +- if (LINUX) +- # This is only needed on Linux, on Windows (including Cygwin) the library file will +- # be placed into the binrary directory anyway. +- # XXX not sure about Mac. +- # See this name used already in install(${TARGET_srt} LIBRARY DESTINATION...). +- set(FORCE_RPATH LINK_FLAGS -Wl,-rpath,.,-rpath,../${CMAKE_INSTALL_LIBDIR} BUILD_WITH_INSTALL_RPATH TRUE INSTALL_RPATH_USE_LINK_PATH TRUE) +- endif() +- + # We state that Darwin always uses CLANG compiler, which honors this flag the same way. + set_target_properties(${name} PROPERTIES COMPILE_FLAGS "${CFLAGS_CXX_STANDARD} ${EXTRA_stransmit}" ${FORCE_RPATH}) + |