From d1b80f89b36ae5745406fd9f21c80dcfe98556a4 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Tue, 18 May 2004 06:38:17 +0000 Subject: [PATCH] Try to enable locale/facet support for metrowerks. [SVN r22855] --- build/Jamfile | 2 ++ test/Jamfile | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/build/Jamfile b/build/Jamfile index d91981a..fff0a8b 100644 --- a/build/Jamfile +++ b/build/Jamfile @@ -10,6 +10,7 @@ lib boost_program_options : # build requirements [ common-names ] # magic for install and auto-link features $(BOOST_ROOT) $(BOOST_ROOT) + std::facet-support std::locale-support : debug release # build variants ; @@ -20,6 +21,7 @@ dll boost_program_options BOOST_ALL_DYN_LINK=1 # tell source we're building dll's dynamic # build only for dynamic runtimes $(BOOST_ROOT) $(BOOST_ROOT) + std::facet-support std::locale-support : debug release # build variants ; diff --git a/test/Jamfile b/test/Jamfile index bd3be12..128d706 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -8,7 +8,8 @@ rule program-options-test ( name ) return [ run $(name).cpp ../build/boost_program_options ../../test/build/boost_test_exec_monitor : : - : $(BOOST_ROOT) ] + : $(BOOST_ROOT) + std::facet-support std::locale-support ] ; }