diff options
Diffstat (limited to 'cpp/src/Ice/DynamicLibrary.cpp')
-rw-r--r-- | cpp/src/Ice/DynamicLibrary.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/cpp/src/Ice/DynamicLibrary.cpp b/cpp/src/Ice/DynamicLibrary.cpp index 05481688e2f..11a2d01aef5 100644 --- a/cpp/src/Ice/DynamicLibrary.cpp +++ b/cpp/src/Ice/DynamicLibrary.cpp @@ -79,14 +79,19 @@ IceInternal::DynamicLibrary::loadEntryPoint(const string& entryPoint, bool useIc #ifdef _WIN32 lib = libName; if(!version.empty()) - { + {
+ // Temporary hack
+ /* for(string::size_type n = 0; n < version.size(); n++) { if(version[n] != '.') // Remove periods - { + { lib += version[n]; } - } + }
+ */
+ lib += "11";
+ # ifdef _DEBUG lib += 'd'; # endif |