ports/databases/tarantool/files/patch-src_CMakeLists.txt
Veniamin Gvozdikov 9ca46bc484 - Update to 1.5.1
- Added plugins support
- Removed static build, doesn't work more details:
https://github.com/tarantool/tarantool/issues/19
- Added patch from devel/libev

Approved by:	eadler (mentor)
2013-10-03 22:12:08 +00:00

12 lines
397 B
Text

--- src/CMakeLists.txt.orig 2013-09-30 17:30:23.623968376 +0000
+++ src/CMakeLists.txt 2013-09-30 17:30:50.254969720 +0000
@@ -153,7 +153,8 @@
endif()
if (TARGET_OS_FREEBSD AND NOT TARGET_OS_DEBIAN_FREEBSD)
- set (common_libraries ${common_libraries} intl)
+ find_library (INTL intl)
+ set (common_libraries ${common_libraries} ${INTL})
endif()
if (ENABLE_BACKTRACE AND HAVE_BFD)