Skip to content
Snippets Groups Projects
Unverified Commit eb6e7079 authored by Olivier Certner's avatar Olivier Certner
Browse files

devel/libzim: Support ICU 76.1

The added patch is an upstream's candidate to fix the build against ICU
76.1, and will make it in the next release in this or another form.

In the meantime, adopt it in the ports tree as is as it does not disturb
the build against older versions of ICU.

This is a maintainer update (olce.freebsd.ports@certner.fr).

PR:             283542
Sponsored by:   The FreeBSD Foundation
parent e2aa1c86
No related branches found
No related tags found
No related merge requests found
Candidate patch coming from https://github.com/openzim/libzim/pull/936, likely
to make it in one way or the other into next release (in which case, remove this
local patch).
--- meson.build.orig 2024-08-28 18:56:57 UTC
+++ meson.build
@@ -77,9 +77,15 @@ if xapian_dep.found()
endif
if xapian_dep.found()
- icu_dep = dependency('icu-i18n', static:static_linkage)
+ icu_dep = [
+ dependency('icu-i18n', static:static_linkage),
+ dependency('icu-uc', static:static_linkage)
+ ]
else
- icu_dep = dependency('icu-i18n', required:false, static:static_linkage)
+ icu_dep = [
+ dependency('icu-i18n', required:false, static:static_linkage),
+ dependency('icu-uc', required:false, static:static_linkage)
+ ]
endif
gtest_dep = dependency('gtest', version: '>=1.10.0', main:true, fallback:['gtest', 'gtest_main_dep'], required:false)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment