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

Account for VC8 not having single threaded runtimes.

[SVN r30321]
This commit is contained in:
Rene Rivera
2005-07-30 15:52:51 +00:00
parent 977d086664
commit af7fc46c5a

View File

@@ -2929,6 +2929,11 @@ rule toolset::requirements ( toolset variant : subvariant-path properties * )
case vc-8* : requirements += <stlport-iostream>on ;
}
}
# vc8 doesn't have any single threaded runtime
switch $(toolset)
{
case vc-8* : requirements += <threading>multi ;
}
}
case intel-win32* :
{