summaryrefslogtreecommitdiff
path: root/Source/cmDynamicLoader.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-02-16 09:50:06 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2004-02-16 09:50:06 -0500
commit07b4d8bbca2ad9d4826d9d37b1ef9b19b6489879 (patch)
treebc9be1db0927c6fee5441e94e2b6843067d1c8cf /Source/cmDynamicLoader.cxx
parenta46e0d34760d980e7a6e26ad9a4f329d9d3475ba (diff)
downloadcmake-07b4d8bbca2ad9d4826d9d37b1ef9b19b6489879.tar.gz
BUG: fix mingw module load tests
Diffstat (limited to 'Source/cmDynamicLoader.cxx')
-rw-r--r--Source/cmDynamicLoader.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmDynamicLoader.cxx b/Source/cmDynamicLoader.cxx
index 8a936103f0..9f91dd8dcb 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()