From f5821fb3bbd5931c93cffbba88fb0deb90ef8bcf Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 20 Jun 2006 21:28:29 +0000 Subject: [PATCH] Disable the multi-thread requirement for STLport5 as the match fallback prevents coherent use of build requirements. [SVN r34362] --- v2/tools/stlport.jam | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/v2/tools/stlport.jam b/v2/tools/stlport.jam index 95b1212f2..cceafb64a 100644 --- a/v2/tools/stlport.jam +++ b/v2/tools/stlport.jam @@ -95,7 +95,12 @@ class stlport-target-class : basic-target if $(self.version.5) { # For STLport 5.x multi-threading is required. - requirements += multi ; + #~ requirements += multi ; + + #~ Doesn't currently work as the matching fallback takes over + #~ and matches a build without stlport when threading-multi is not + #~ specified. Question stands as to wether single-thread code + #~ can use the multi-thread STLport. } self.requirements = [ property-set.create $(requirements) ] ; }