diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2025-10-11 21:11:59 +0900 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2025-10-11 21:11:59 +0900 |
commit | 74f40901a905c464098360db6b60e593998c1ed0 (patch) | |
tree | 1b407e9febc2312c32fe028c2dc02e59898bbca4 | |
parent | net/krakend-ce: Update 2.11.0 => 2.11.1 (diff) |
editors/imhex: Fix build on 16-CURRENT
-rw-r--r-- | editors/imhex/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/imhex/Makefile b/editors/imhex/Makefile index 28bf1bdbde12..960c734b23a3 100644 --- a/editors/imhex/Makefile +++ b/editors/imhex/Makefile @@ -116,7 +116,7 @@ IGNORE= requires libc++ of LLVM 17 on the base system .endif # After LLVM 18 import into the base system -.if (${OSREL:R} == 15 && ${OSVERSION} >= 1500018) || ${OSREL:R} < 15 +.if ${OSREL:R} == 16 || (${OSREL:R} == 15 && ${OSVERSION} >= 1500018) || ${OSREL:R} < 15 CXXFLAGS+= -fexperimental-library -D_LIBCPP_ENABLE_EXPERIMENTAL .endif |