From fba77bd7cfcd74706da02143df507bfc2883c4ac Mon Sep 17 00:00:00 2001 From: Bill Hoffman <bill.hoffman@kitware.com> Date: Fri, 21 Apr 2006 20:13:08 -0400 Subject: [PATCH] ENH: fix borland bug --- SystemTools.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SystemTools.cxx b/SystemTools.cxx index 7c0c7d2..b03ad1f 100644 --- a/SystemTools.cxx +++ b/SystemTools.cxx @@ -2789,6 +2789,8 @@ bool SystemTools::ComparePath(const char* c1, const char* c2) return _stricmp(c1, c2) == 0; # elif defined(__APPLE__) || defined(__GNUC__) return strcasecmp(c1, c2) == 0; +#else + return SystemTools::Strucmp(c1, c2) == 0; # endif #else return strcmp(c1, c2) == 0; -- GitLab