diff options
| author | Christoph Moench-Tegeder <cmt@FreeBSD.org> | 2026-01-06 11:29:36 +0000 |
|---|---|---|
| committer | Christoph Moench-Tegeder <cmt@FreeBSD.org> | 2026-01-06 11:29:36 +0000 |
| commit | ff4ef0c3c8f899610152a7e9ebd8d1d2a9e3a5c1 (patch) | |
| tree | e3827d4c28f9495fddd89c7230cee0891b0901a4 | |
| parent | 2aa0398f0d5b965392c7bc0ecf97ba064e0bf298 (diff) | |
Mk/bsd.gecko.mk: use bundled ICU for gecko >= 147
Current Gecko requires ICU 78, and ports is at ICU 76 right now
| -rw-r--r-- | Mk/bsd.gecko.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index 7e69f5c27b25..7ef87315cf3c 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -115,7 +115,11 @@ RUSTFLAGS+= ${CFLAGS:M-mcpu=*:S/-mcpu=/-C target-cpu=/} . endif # Standard depends -_ALL_DEPENDS= av1 event ffi graphite harfbuzz icu jpeg nspr nss png pixman sqlite vpx webp +_ALL_DEPENDS= av1 event ffi graphite harfbuzz jpeg nspr nss png pixman sqlite vpx webp +# from 147 on, gecko needs ICU 78, but ports only has ICU 76 (2025-12-28) +. if ${MOZILLA_VER:R:R} < 147 +_ALL_DEPENDS+= icu +. endif . if exists(${FILESDIR}/patch-bug1559213) av1_LIB_DEPENDS= libaom.so:multimedia/aom libdav1d.so:multimedia/dav1d |
