Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Mar 2023 19:04:45 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 0a0f66e4af55 - main - graphics/perceptualdiff: fix build without libomp
Message-ID:  <202303141904.32EJ4jPi021756@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=0a0f66e4af5526771ba714077758f66c0cfd001d

commit 0a0f66e4af5526771ba714077758f66c0cfd001d
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2023-03-14 19:03:55 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2023-03-14 19:03:55 +0000

    graphics/perceptualdiff: fix build without libomp
    
    CMake Error at /usr/local/share/cmake/Modules/FindOpenMP.cmake:261 (try_compile):
      Failed to generate test project build system.
    Call Stack (most recent call first):
      /usr/local/share/cmake/Modules/FindOpenMP.cmake:537 (_OPENMP_GET_FLAGS)
      CMakeLists.txt:25 (find_package)
    This warning is for project developers.  Use -Wno-dev to suppress it.
---
 graphics/perceptualdiff/Makefile | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/graphics/perceptualdiff/Makefile b/graphics/perceptualdiff/Makefile
index df3bfab968a7..59b2c744af1d 100644
--- a/graphics/perceptualdiff/Makefile
+++ b/graphics/perceptualdiff/Makefile
@@ -17,6 +17,11 @@ PLIST_FILES=	bin/perceptualdiff
 USE_GITHUB=	yes
 GH_ACCOUNT=	myint
 
-USES=		cmake compiler:c++0x
+USES=		cmake
+.if !exists(/usr/include/omp.h)
+USES+=		compiler:gcc-c++11-lib
+.else
+USES+=		compiler:c++0x
+.endif
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202303141904.32EJ4jPi021756>