mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 12:10:31 -04:00
- 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)
12 lines
397 B
Text
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)
|