diff options
author | Lorenzo Salvadore <salvadore@FreeBSD.org> | 2022-06-07 00:15:23 +0000 |
---|---|---|
committer | Lorenzo Salvadore <salvadore@FreeBSD.org> | 2022-06-22 09:39:42 +0000 |
commit | 2703ae40a2ac3720f7c798243cdaa3c51a090dd2 (patch) | |
tree | 4ff7bd63de3e28c235d7c63c7333825add2e93b3 | |
parent | f8942926a8cb9a03b0ffab32565479d97fa5be05 (diff) | |
download | ports-2703ae40a2ac3720f7c798243cdaa3c51a090dd2.tar.gz ports-2703ae40a2ac3720f7c798243cdaa3c51a090dd2.zip |
sysutils/fluxengine: Remove dependency on GCC
Build fails with GCC 11, which is soon to become GCC default version:
use default compiler instead (clang).
PR: 264365
Reported by: exp-run (antoine)
Approved by: probono@puredarwin.org (maintainer timeout, 2 weeks)
-rw-r--r-- | sysutils/fluxengine/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysutils/fluxengine/Makefile b/sysutils/fluxengine/Makefile index f59f46613c09..98c3b198d600 100644 --- a/sysutils/fluxengine/Makefile +++ b/sysutils/fluxengine/Makefile @@ -1,5 +1,6 @@ PORTNAME= fluxengine DISTVERSION= 572 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= probono@puredarwin.org @@ -8,7 +9,7 @@ COMMENT= USB floppy disk interface for reading and writing non-PC disk formats LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING.md -USES= compiler:gcc-c++11-lib gmake ninja:build pkgconfig sqlite +USES= gmake ninja:build pkgconfig sqlite USE_GITHUB= yes GH_ACCOUNT= davidgiven |