svn commit: r497241 - head/databases/tarantool/files
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sat Mar 30 09:47:42 UTC 2019
Author: sunpoet
Date: Sat Mar 30 09:47:38 2019
New Revision: 497241
URL: https://svnweb.freebsd.org/changeset/ports/497241
Log:
Fix build on 13-CURRENT
Reported by: pkg-fallout
Added:
head/databases/tarantool/files/patch-cmake-BuildMisc.cmake (contents, props changed)
Added: head/databases/tarantool/files/patch-cmake-BuildMisc.cmake
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/tarantool/files/patch-cmake-BuildMisc.cmake Sat Mar 30 09:47:38 2019 (r497241)
@@ -0,0 +1,17 @@
+--- cmake/BuildMisc.cmake.orig 2018-10-12 19:53:35 UTC
++++ cmake/BuildMisc.cmake
+@@ -35,11 +35,11 @@ macro(libmisc_build)
+
+ if (HAVE_OPENMP)
+ if(BUILD_STATIC)
+- set(GOMP_LIBRARY libgomp.a)
++ set(OMP_LIBRARY libomp.a)
+ else()
+- set(GOMP_LIBRARY gomp)
++ set(OMP_LIBRARY omp)
+ endif()
+- target_link_libraries(misc ${GOMP_LIBRARY} pthread)
++ target_link_libraries(misc ${OMP_LIBRARY} pthread)
+ endif()
+
+ unset(misc_src)
More information about the svn-ports-all
mailing list