git: fa21a4984477 - main - science/erd: fix build without libomp
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 13 Mar 2023 00:05:49 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=fa21a49844774bb5e4f2993852ade4d4c9287f54 commit fa21a49844774bb5e4f2993852ade4d4c9287f54 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2023-03-13 00:02:53 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2023-03-13 00:02:53 +0000 science/erd: fix build without libomp CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage CMake Error at /usr/local/share/cmake/Modules/FindOpenMP.cmake:261 (try_compile): Failed to configure test project build system. Call Stack (most recent call first): /usr/local/share/cmake/Modules/FindOpenMP.cmake:537 (_OPENMP_GET_FLAGS) cmake/autocmake_omp.cmake:30 (find_package) CMakeLists.txt:27 (include) --- science/erd/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/science/erd/Makefile b/science/erd/Makefile index 45d6017c712a..2629c3a8ef98 100644 --- a/science/erd/Makefile +++ b/science/erd/Makefile @@ -12,6 +12,9 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake fortran +.if !exists(/usr/include/omp.h) +CMAKE_OFF= ENABLE_OPENMP +.endif USE_GITHUB= yes GH_ACCOUNT= psi4 USE_LDCONFIG= yes