2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 13:42:14 +00:00

Disable the multi-thread requirement for STLport5 as the match fallback prevents coherent use of build requirements. (merge from head)

[SVN r34363]
This commit is contained in:
Rene Rivera
2006-06-20 21:33:01 +00:00
parent ce53d44c44
commit 6f5b12033c

View File

@@ -95,7 +95,12 @@ class stlport-target-class : basic-target
if $(self.version.5)
{
# For STLport 5.x multi-threading is required.
requirements += <threading>multi ;
#~ requirements += <threading>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) ] ;
}