BUG: fix small compile issues on HP aCC

This commit is contained in:
Bill Hoffman 2001-04-16 15:40:40 -04:00
parent f63e4a144c
commit 7155d1f68b
2 changed files with 3 additions and 2 deletions

View File

@ -54,6 +54,7 @@
#ifdef CMAKE_NO_STD_NAMESPACE
#define std
# define for if (false) { } else for
#endif

View File

@ -43,9 +43,9 @@ bool cmSystemTools::s_ErrorOccured = false;
void cmSystemTools::GetPath(std::vector<std::string>& path)
{
#if defined(_WIN32) && !defined(__CYGWIN__)
char* pathSep = ";";
const char* pathSep = ";";
#else
char* pathSep = ":";
const char* pathSep = ":";
#endif
std::string pathEnv = getenv("PATH");
std::string::size_type start =0;