From 807b4ac47f9db38bfd77a2a9d5e6be9959f9bf82 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 10 Sep 2002 15:38:26 -0400 Subject: ERR: Fix for borland on linux. We cannot directly compare the st_dev and st_ino members of struct stat. Use memcmp instead. --- Source/cmSystemTools.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index e800710..2e17358 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -31,7 +31,7 @@ #include #endif -#if defined(_MSC_VER) || defined(__BORLANDC__) +#if defined(_WIN32) && (defined(_MSC_VER) || defined(__BORLANDC__)) #include #include #include @@ -549,8 +549,8 @@ bool cmSystemTools::SameFile(const char* file1, const char* file2) { // see if the files are the same file // check the device inode and size - if(fileStat2.st_dev == fileStat1.st_dev && - fileStat2.st_ino == fileStat1.st_ino && + if(memcmp(&fileStat2.st_dev, &fileStat1.st_dev, sizeof(fileStat1.st_dev)) == 0 && + memcmp(&fileStat2.st_ino, &fileStat1.st_ino, sizeof(fileStat1.st_ino)) == 0 && fileStat2.st_size == fileStat1.st_size ) { -- cgit v0.12