git: 696df7ae89e9 - main - graphics/sharpconstruct: drop GCC on powerpc64le
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 07 Aug 2023 19:26:52 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=696df7ae89e9e96d7bf87ae34f53d3423084a874 commit 696df7ae89e9e96d7bf87ae34f53d3423084a874 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2023-08-07 13:23:25 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2023-08-07 19:26:44 +0000 graphics/sharpconstruct: drop GCC on powerpc64le --- graphics/sharpconstruct/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/graphics/sharpconstruct/Makefile b/graphics/sharpconstruct/Makefile index 94b592b2eb38..e820a27bf526 100644 --- a/graphics/sharpconstruct/Makefile +++ b/graphics/sharpconstruct/Makefile @@ -1,6 +1,6 @@ PORTNAME= sharpconstruct PORTVERSION= 0.11 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= graphics MASTER_SITES= SF/sharp3d/SharpConstruct/${PORTVERSION} @@ -23,13 +23,14 @@ GNU_CONFIGURE= yes USE_GL= gl glu CXXFLAGS_i386= -msse +CXXFLAGS_powerpc64le= -DNO_WARN_X86_INTRINSICS PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz PORTDATA= * .include <bsd.port.options.mk> -.if ${ARCH:Mpowerpc64*} +.if ${ARCH} == powerpc64 CXXFLAGS+= -DNO_WARN_X86_INTRINSICS -maltivec -mvsx USES+= compiler:gcc-c++11-lib .else