Skip to content
Snippets Groups Projects
Commit fba77bd7 authored by Bill Hoffman's avatar Bill Hoffman
Browse files

ENH: fix borland bug

parent 507fc6c3
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment