diff options
author | Nuno Teixeira <eduardo@FreeBSD.org> | 2023-03-13 08:01:20 +0000 |
---|---|---|
committer | Nuno Teixeira <eduardo@FreeBSD.org> | 2023-03-13 08:09:18 +0000 |
commit | 3fd626858d826cbdbcc365a60ce34cc88287ac5b (patch) | |
tree | 166836d5aa6243567c7c64fe42c965d39f1f2e41 | |
parent | graphics/openexr: bugfix update to 3.1.6 (diff) |
devel/rgbds: Fix build on 12.4
Fix build on 12.4 using gcc because port only builds with clang <=10.
MFH: 2023Q1 (build fixes)
(cherry picked from commit 526802d9024cb7efee0c95372a4f283a8a578b2a)
-rw-r--r-- | devel/rgbds/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/devel/rgbds/Makefile b/devel/rgbds/Makefile index 043e1985bd4b..3685a85a54d7 100644 --- a/devel/rgbds/Makefile +++ b/devel/rgbds/Makefile @@ -1,5 +1,6 @@ PORTNAME= rgbds DISTVERSION= 0.6.1 +PORTREVISION= 1 CATEGORIES= devel games MASTER_SITES= https://github.com/gbdev/rgbds/releases/download/v${DISTVERSION}/ @@ -13,6 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libpng.so:graphics/png USES= bison compiler:c11 dos2unix pkgconfig +USE_GCC= yes # clang >10 fails to build, https://github.com/gbdev/rgbds/issues/1091 MAKE_ARGS= Q= # verbose builds WRKSRC= ${WRKDIR}/rgbds @@ -22,12 +24,4 @@ do-configure: ${CC} -std=gnu11 -D_POSIX_C_SOURCE=200809L -D_ISOC11_SOURCE -xc - 2>/dev/null || \ ${REINPLACE_CMD} 's,-D_POSIX_C_SOURCE=200809L,,' ${WRKSRC}/Makefile -.include <bsd.port.pre.mk> - -# clang build fails on 13.1 and 14 current -# see https://github.com/gbdev/rgbds/issues/1091 -.if ${OSVERSION} >= 1300000 -USE_GCC= yes -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> |