diff options
-rw-r--r-- | emulators/yuzu/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emulators/yuzu/Makefile b/emulators/yuzu/Makefile index 61726d9b1486..7cec3357f302 100644 --- a/emulators/yuzu/Makefile +++ b/emulators/yuzu/Makefile @@ -25,7 +25,10 @@ LICENSE_FILE_MIT= ${WRKSRC}/externals/sirit/externals/SPIRV-Headers/LICENSE ONLY_FOR_ARCHS= aarch64 amd64 ONLY_FOR_ARCHS_REASON= requires int128 and dynarmic backend -BROKEN_FreeBSD_12= htonl() in <x86/endian.h> fails -Werror=conversion +# XXX Drop after FreeBSD 12.3 EOL around 2023-03-01 +.if !exists(/usr/include/c++/v1/concepts) +BROKEN_FreeBSD_12= base libc++ is too old +.endif BUILD_DEPENDS= boost-libs>0:devel/boost-libs \ nlohmann-json>0:devel/nlohmann-json \ |