From 1ba0a050395fda65718da8e62a896ea788dec8e4 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Sat, 5 Oct 2002 10:24:45 -0400 Subject: [PATCH] Fix borland build. Borland Run command should be static, since it is called with no object... --- Source/cmSystemTools.cxx | 3 ++- Source/cmWin32ProcessExecution.h | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 0dc4bc007..358edd024 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -1273,7 +1273,8 @@ bool RunCommandViaWin32(const char* command, int timeout) { #if defined(__BORLANDC__) - return cmWin32ProcessExecution::BorlandRunCommand(command, dir, output, retVal, + return cmWin32ProcessExecution::BorlandRunCommand(command, dir, output, + retVal, verbose, timeout); #else // Visual studio ::SetLastError(ERROR_SUCCESS); diff --git a/Source/cmWin32ProcessExecution.h b/Source/cmWin32ProcessExecution.h index c7b97e533..c0eafbf86 100644 --- a/Source/cmWin32ProcessExecution.h +++ b/Source/cmWin32ProcessExecution.h @@ -132,9 +132,9 @@ public: * will display it in our app. Consequently, we check for input in * our app and send it off to the write end of the stdin pipe. */ - bool BorlandRunCommand(const char* command, const char* dir, - std::string& output, int& retVal, bool verbose, - int timeout); + static bool BorlandRunCommand(const char* command, const char* dir, + std::string& output, int& retVal, bool verbose, + int timeout); private: bool PrivateOpen(const char*, const char*, int, int);