Files
gentoo/dev-libs/boost/files/boost-1.92.0-disable_icu_rpath.patch
Holger Hoffstätte 7058c758b8 dev-libs/boost: rebase icu patch, drop -Werror, refresh test exclusions
- rebase disable_icu_rpath patch: path_options was renamed upstream
- disable b2's warnings-as-errors globally instead of patching
  subprojects one by one; supersedes 1.88.0-bind-no-Werror.patch
- callable_traits, redis, serialization and graph tests now pass
- exclude more tests when tc-is-clang

Part-of: https://codeberg.org/gentoo/gentoo/pulls/1743
Merges: https://codeberg.org/gentoo/gentoo/pulls/1743
Signed-off-by: Holger Hoffstätte <holger@applied-asynchrony.com>
Signed-off-by: David Seifert <soap@gentoo.org>
2026-08-30 00:09:05 +02:00

20 lines
581 B
Diff

--- a/libs/locale/build/Jamfile.v2
+++ b/libs/locale/build/Jamfile.v2
@@ -99,16 +99,6 @@ if $(.icu-path)
rule icu_search_paths ( properties * )
{
local result ;
- if <address-model>64 in $(properties) && <toolset>msvc in $(properties)
- {
- debug-message Search 64 bit ICU in "$(.icu-path)/lib64" ;
- result = <search>$(.icu-path)/bin64 <search>$(.icu-path)/lib64 ;
- }
- else
- {
- debug-message Search ICU in "$(.icu-path)/lib" ;
- result = <search>$(.icu-path)/bin <search>$(.icu-path)/lib ;
- }
return $(result) ;
}