2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Disable the multi-thread requirement for STLport5 as the match fallback prevents coherent use of build requirements.

[SVN r34362]
This commit is contained in:
Rene Rivera
2006-06-20 21:28:29 +00:00
parent df3b8437fa
commit f5821fb3bb

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) ] ;
}