mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-29 04:12:46 +00:00
Fix building with ICU >= 76
Since version 76 ICU wants to prevent overlinking [1] and icu-i18n doesn't add icu-uc to the link interface anymore. [1] https://github.com/unicode-org/icu/commit/199bc827021ffdb43b6579d68e5eecf54c7f6f56
This commit is contained in:
committed by
Ralph Sennhauser
parent
58e16c2057
commit
5643e90b19
@@ -432,6 +432,7 @@ extern_lib_defs = {
|
||||
add_default_include_paths("icu")
|
||||
else
|
||||
pkgconfig.add_includes("icu-i18n")
|
||||
pkgconfig.add_includes("icu-uc")
|
||||
end
|
||||
end,
|
||||
link_settings = function()
|
||||
@@ -444,6 +445,7 @@ extern_lib_defs = {
|
||||
})
|
||||
else
|
||||
pkgconfig.add_links("icu-i18n")
|
||||
pkgconfig.add_links("icu-uc")
|
||||
end
|
||||
end,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user