mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 04:00:41 -04:00
- Removed TEST option since it fails to build. Disable tests unconditionally. - Bump PORTREVISION on dependent ports. I've observed linker errors on startup due to library changes
20 lines
667 B
Text
20 lines
667 B
Text
--- CMakeLists.txt.orig 2019-09-25 16:56:00 UTC
|
|
+++ CMakeLists.txt
|
|
@@ -276,7 +276,7 @@ set_target_properties(yaml-cpp PROPERTIES
|
|
|
|
set_target_properties(yaml-cpp PROPERTIES
|
|
VERSION "${YAML_CPP_VERSION}"
|
|
- SOVERSION "${YAML_CPP_VERSION_MAJOR}.${YAML_CPP_VERSION_MINOR}"
|
|
+ SOVERSION "${YAML_CPP_VERSION_MAJOR}"
|
|
PROJECT_LABEL "yaml-cpp ${LABEL_SUFFIX}"
|
|
)
|
|
|
|
@@ -342,7 +342,7 @@ if (YAML_CPP_INSTALL)
|
|
if(UNIX)
|
|
set(PC_FILE ${CMAKE_BINARY_DIR}/yaml-cpp.pc)
|
|
configure_file("yaml-cpp.pc.cmake" ${PC_FILE} @ONLY)
|
|
- install(FILES ${PC_FILE} DESTINATION ${LIB_INSTALL_DIR}/pkgconfig)
|
|
+ install(FILES ${PC_FILE} DESTINATION libdata/pkgconfig)
|
|
endif()
|
|
|
|
endif()
|