diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 557f065ba..bf7595804 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -383,7 +383,7 @@ IF(CMAKE_ENABLE_NINJA) cmNinjaUtilityTargetGenerator.h ) ADD_DEFINITIONS(-DCMAKE_USE_NINJA) - IF(WIN32 AND NOT CYGWIN) + IF(WIN32 AND NOT CYGWIN AND NOT BORLAND) SET_SOURCE_FILES_PROPERTIES(cmcldeps.cxx PROPERTIES COMPILE_DEFINITIONS _WIN32_WINNT=0x0501) ADD_EXECUTABLE(cmcldeps cmcldeps.cxx) INSTALL_TARGETS(/bin cmcldeps) diff --git a/Source/cmcldeps.cxx b/Source/cmcldeps.cxx index 374ee1098..7d3c4bd65 100644 --- a/Source/cmcldeps.cxx +++ b/Source/cmcldeps.cxx @@ -33,9 +33,6 @@ #endif -// bcc32 only finds remove(const char*) -namespace stlport { } - #if defined(_WIN64) typedef unsigned __int64 cmULONG_PTR; #else @@ -433,10 +430,8 @@ bool SubprocessSet::DoWork() { subproc->OnPipeReady(); if (subproc->Done()) { - using namespace std; - using namespace stlport; std::vector::iterator end = - remove(running_.begin(), running_.end(), subproc); + std::remove(running_.begin(), running_.end(), subproc); if (running_.end() != end) { finished_.push(subproc); running_.resize(end - running_.begin());