mirror of
https://github.com/boostorg/boost.git
synced 2025-04-04 21:15:01 +00:00
Detect ICU with pkg-config when possible.
This commit is contained in:
parent
a43cfc58bd
commit
d80efb2f4a
1 changed files with 5 additions and 0 deletions
|
@ -292,6 +292,11 @@ fi
|
|||
# Configure ICU
|
||||
$ECHO -n "Unicode/ICU support for Boost.Regex?... "
|
||||
if test "x$flag_icu" != xno; then
|
||||
if test "x$ICU_ROOT" = x; then
|
||||
if command -v pkg-config > /dev/null && pkg-config icu-uc ; then
|
||||
ICU_ROOT=`pkg-config --variable=prefix icu-uc`
|
||||
fi
|
||||
fi
|
||||
if test "x$ICU_ROOT" = x; then
|
||||
COMMON_ICU_PATHS="/usr /usr/local /sw"
|
||||
for p in $COMMON_ICU_PATHS; do
|
||||
|
|
Loading…
Add table
Reference in a new issue