diff options
author | Bernard Normier <bernard@zeroc.com> | 2003-05-09 19:58:42 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2003-05-09 19:58:42 +0000 |
commit | 576c135ffea8e4e2ac6c45620d66bf8fcd615601 (patch) | |
tree | 34799f3700070d726058090290eb2dcee0e85ee3 /cpp/src/Ice/DynamicLibrary.cpp | |
parent | shutdownOnInterrupt is now the default (diff) | |
download | ice-576c135ffea8e4e2ac6c45620d66bf8fcd615601.tar.bz2 ice-576c135ffea8e4e2ac6c45620d66bf8fcd615601.tar.xz ice-576c135ffea8e4e2ac6c45620d66bf8fcd615601.zip |
Changed library names on Windows for Ice 1.1
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 |