From f2a7f4d8c36202eb48ef718fd50e75ed61cc466e Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 20 Oct 2007 16:30:01 +0000 Subject: [PATCH] ICU libraries are only available as shared libraries. [SVN r40214] --- build/Jamfile.v2 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 4808a2b1..13d6a568 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -195,18 +195,18 @@ if [ check-icu-config ] { if $(gICU_CORE_LIB) { - lib icucore : : $(gICU_CORE_LIB) $(ICU_SEARCH_OPTS) ; + lib icucore : : $(gICU_CORE_LIB) $(ICU_SEARCH_OPTS) shared ; ICU_EXTRA_SOURCE = icucore ; } if $(gICU_IN_LIB) { - lib icuin : : $(gICU_IN_LIB) $(ICU_SEARCH_OPTS) ; + lib icuin : : $(gICU_IN_LIB) $(ICU_SEARCH_OPTS) shared ; ICU_EXTRA_SOURCE += icuin ; } #Added by Tommy Nordgren libicudata must be linked against on Mac OS X if $(gICU_DATA_LIB) { - lib icudata : : $(gICU_DATA_LIB) $(ICU_SEARCH_OPTS) ; + lib icudata : : $(gICU_DATA_LIB) $(ICU_SEARCH_OPTS) shared ; ICU_EXTRA_SOURCE += icudata ; } #End of addition by Tommy Nordgren @@ -258,3 +258,4 @@ alias icu_options : $(ICU_EXTRA_SOURCE) : : : $(BOOST_REGEX_ICU_OPTS) ; +