git: 8e82cdff2c84 - main - devel/concurrencpp: fix build on powerpc64 and powerpc on 13.0-RELEASE
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 22 Jan 2022 13:40:10 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=8e82cdff2c8494660f5bf1d1be0fb3d72a7ceca7 commit 8e82cdff2c8494660f5bf1d1be0fb3d72a7ceca7 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2022-01-22 13:33:23 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2022-01-22 13:33:23 +0000 devel/concurrencpp: fix build on powerpc64 and powerpc on 13.0-RELEASE Same issue as on powerpc64le. --- devel/concurrencpp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/concurrencpp/Makefile b/devel/concurrencpp/Makefile index d9e4c0fd9fbe..10d4c67abe46 100644 --- a/devel/concurrencpp/Makefile +++ b/devel/concurrencpp/Makefile @@ -20,7 +20,7 @@ CMAKE_ON= BUILD_SHARED_LIBS .include <bsd.port.options.mk> -.if ${ARCH} == powerpc64le && ${OSVERSION} < 1300523 +.if (${ARCH} == powerpc64le || ${ARCH} == powerpc64 || ${ARCH} == powerpc) && ${OSVERSION} < 1300523 BUILD_DEPENDS= llvm13>0:devel/llvm13 CPP= ${LOCALBASE}/bin/clang-cpp13 CC= ${LOCALBASE}/bin/clang13