added more fixes to Jamfile in order to make it build on windows

This commit is contained in:
Arvid Norberg
2007-06-13 17:36:26 +00:00
parent 3e4a136be7
commit 97099dc0ca
2 changed files with 68 additions and 34 deletions

View File

@@ -1039,8 +1039,9 @@ int main(int ac, char* av[])
else if (i->blocks[j].state == block_info::requested) out << str;
else out << " ";
#else
if (i->finished_blocks[j]) out << "#";
else if (i->requested_blocks[j]) out << str;
if (i->blocks[j].state == block_info::finished) out << "#";
else if (i->blocks[j].state == block_info::writing) out << "+";
else if (i->blocks[j].state == block_info::requested) out << str;
else out << " ";
#endif
}