1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-22 13:10:31 -04:00
ports/devel/ucommon/files/patch-cmake_CapeConfig.cmake
Jason E. Hale 14200ea79a - Update devel/ucommon to 7.0.0
- Bump PORTREVISION on dependent ports due to shlib bump

- Update audio/ccaudio2 to 2.2.0
- Add LICENSE
- Fix detection of gsm and speex
2016-01-14 03:23:07 +00:00

10 lines
352 B
CMake

--- cmake/CapeConfig.cmake.orig 2016-01-14 02:00:43 UTC
+++ cmake/CapeConfig.cmake
@@ -163,6 +163,7 @@ endfunction()
function(pc_libs _OUTPUT)
set(libs)
foreach(lib ${ARGN})
+ STRING(REGEX REPLACE "pthread" "lpthread" lib ${lib})
STRING(REGEX REPLACE "^[-]l" "" slib ${lib})
set(libs "${libs} -l${slib}")
endforeach()