diff --git a/Source/cmcldeps.cxx b/Source/cmcldeps.cxx index d8bb1626c..374ee1098 100644 --- a/Source/cmcldeps.cxx +++ b/Source/cmcldeps.cxx @@ -32,6 +32,10 @@ #include #endif + +// bcc32 only finds remove(const char*) +namespace stlport { } + #if defined(_WIN64) typedef unsigned __int64 cmULONG_PTR; #else @@ -429,8 +433,10 @@ bool SubprocessSet::DoWork() { subproc->OnPipeReady(); if (subproc->Done()) { + using namespace std; + using namespace stlport; std::vector::iterator end = - std::remove(running_.begin(), running_.end(), subproc); + remove(running_.begin(), running_.end(), subproc); if (running_.end() != end) { finished_.push(subproc); running_.resize(end - running_.begin());