fix for cygwin and nmake that does not define WIN32

This commit is contained in:
Bill Hoffman
2002-09-24 09:24:39 -04:00
parent 305081002e
commit 94f1e8f5c5
2 changed files with 5 additions and 2 deletions

View File

@@ -344,7 +344,11 @@ const char* cmDynamicLoader::LibPrefix()
const char* cmDynamicLoader::LibExtension()
{
#ifdef __CYGWIN__
return ".dll";
#else
return ".so";
#endif
}
const char* cmDynamicLoader::LastError()