diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-02-16 14:50:06 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-02-16 14:50:06 (GMT) |
commit | 07b4d8bbca2ad9d4826d9d37b1ef9b19b6489879 (patch) | |
tree | bc9be1db0927c6fee5441e94e2b6843067d1c8cf /Source/cmDynamicLoader.cxx | |
parent | a46e0d34760d980e7a6e26ad9a4f329d9d3475ba (diff) | |
download | CMake-07b4d8bbca2ad9d4826d9d37b1ef9b19b6489879.zip CMake-07b4d8bbca2ad9d4826d9d37b1ef9b19b6489879.tar.gz CMake-07b4d8bbca2ad9d4826d9d37b1ef9b19b6489879.tar.bz2 |
BUG: fix mingw module load tests
Diffstat (limited to 'Source/cmDynamicLoader.cxx')
-rw-r--r-- | Source/cmDynamicLoader.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmDynamicLoader.cxx b/Source/cmDynamicLoader.cxx index 8a93610..9f91dd8 100644 --- a/Source/cmDynamicLoader.cxx +++ b/Source/cmDynamicLoader.cxx @@ -274,7 +274,11 @@ cmDynamicLoader::GetSymbolAddress(cmLibHandle lib, const char* sym) const char* cmDynamicLoader::LibPrefix() { +#if defined( __MINGW32__ ) + return "lib"; +#else return ""; +#endif } const char* cmDynamicLoader::LibExtension() |