summaryrefslogtreecommitdiffstats
path: root/Source/cmDependsFortran.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-01-08 13:25:07 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-01-08 13:25:07 (GMT)
commit4b166fc3193c0a2e213071378eb83c25d28d6e82 (patch)
treeeb908627e86db3d410694f836e99aa68b71ddbff /Source/cmDependsFortran.cxx
parent7f406eed939c0ddc596be5865305ce9703a81a69 (diff)
downloadCMake-4b166fc3193c0a2e213071378eb83c25d28d6e82.zip
CMake-4b166fc3193c0a2e213071378eb83c25d28d6e82.tar.gz
CMake-4b166fc3193c0a2e213071378eb83c25d28d6e82.tar.bz2
BUG: make it compile on vs 6
Diffstat (limited to 'Source/cmDependsFortran.cxx')
-rw-r--r--Source/cmDependsFortran.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx
index 75b6b4f..1c24b0b 100644
--- a/Source/cmDependsFortran.cxx
+++ b/Source/cmDependsFortran.cxx
@@ -761,7 +761,7 @@ bool cmDependsFortran::ModulesDiffer(const char* modFile,
* source is compiled twice
* -SunPro
*/
- if(std::strcmp(compilerId, "SunPro") == 0)
+ if(strcmp(compilerId, "SunPro") == 0)
{
return cmSystemTools::FilesDiffer(modFile, stampFile);
}
@@ -787,7 +787,7 @@ bool cmDependsFortran::ModulesDiffer(const char* modFile,
* Eat the stream content until all recompile only realated changes
* are left bedind.
*/
- if (std::strcmp(compilerId, "GNU") == 0 )
+ if (strcmp(compilerId, "GNU") == 0 )
{
const char seq[1] = {'\n'};
const int seqlen = 1;
@@ -806,7 +806,7 @@ bool cmDependsFortran::ModulesDiffer(const char* modFile,
return true;
}
}
- else if(std::strcmp(compilerId, "Intel") == 0)
+ else if(strcmp(compilerId, "Intel") == 0)
{
const char seq[2] = {'\n', '\0'};
const int seqlen = 2;