commit 8e86da6ccb2b366f8db007c1747e9950c6bcbbab Author: Dimitry Andric Date: 2024-03-20T23:54:31+01:00 devel/boost-all: Use clang from base for OSVERSION >= 1500017 In https://cgit.freebsd.org/src/commit/?id=bcd401b5a39c I committed a fix for clang's assertion failures when building recent boost libraries. I also bumped __FreeBSD_version to 1500017 so this can be detected from devel/boost-all/compiled.mk. Adjust the range to use the default llvm port to [1500000..1500017>. PR: 277850 MFH: 2024Q1 diff --git a/devel/boost-all/compiled.mk b/devel/boost-all/compiled.mk index ef3efa81963d..96c764283dc7 100644 --- a/devel/boost-all/compiled.mk +++ b/devel/boost-all/compiled.mk @@ -43,7 +43,8 @@ MAKE_ARGS+= pch=off .include -.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1500000 || \ +.if ${OPSYS} == FreeBSD && \ + ((${OSVERSION} >= 1500000 && ${OSVERSION} < 1500017) || \ (${OSVERSION} >= 1400000 && ${OSVERSION} < 1400097)) USES+= llvm:build CHOSEN_COMPILER_TYPE= clang