mirror of
https://github.com/boostorg/boost_install.git
synced 2026-01-19 04:02:13 +00:00
Honor ICU_ICUxx_NAME variables in remap-library
This commit is contained in:
@@ -71,13 +71,38 @@ local rule remap-library ( lib )
|
||||
|
||||
return "bz2" ;
|
||||
|
||||
case "icuuc" :
|
||||
|
||||
if [ modules.peek : ICU_ICUUC_NAME ]
|
||||
{
|
||||
return [ modules.peek : ICU_ICUUC_NAME ] ;
|
||||
}
|
||||
else
|
||||
{
|
||||
return "icuuc" ;
|
||||
}
|
||||
|
||||
case "icudt" :
|
||||
|
||||
return "icudata" ;
|
||||
if [ modules.peek : ICU_ICUDT_NAME ]
|
||||
{
|
||||
return [ modules.peek : ICU_ICUDT_NAME ] ;
|
||||
}
|
||||
else
|
||||
{
|
||||
return "icudata" ;
|
||||
}
|
||||
|
||||
case "icuin" :
|
||||
|
||||
return "icui18n" ;
|
||||
if [ modules.peek : ICU_ICUIN_NAME ]
|
||||
{
|
||||
return [ modules.peek : ICU_ICUIN_NAME ] ;
|
||||
}
|
||||
else
|
||||
{
|
||||
return "icui18n" ;
|
||||
}
|
||||
|
||||
case * :
|
||||
|
||||
|
||||
Reference in New Issue
Block a user