BUG: Fix for MINGW32

This commit is contained in:
Mathieu Malaterre 2006-03-11 10:09:33 -05:00
parent 46096c08a5
commit 6420337317
1 changed files with 4 additions and 0 deletions

View File

@ -277,7 +277,11 @@ DynamicLoaderFunction DynamicLoader::GetSymbolAddress(LibHandle lib, const char*
//----------------------------------------------------------------------------
const char* DynamicLoader::LibPrefix()
{
#ifdef __MINGW32__
return "lib";
#else
return "";
#endif
}
//----------------------------------------------------------------------------