diff options
author | Jose <jose@zeroc.com> | 2015-12-28 20:23:15 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-12-28 20:23:15 +0100 |
commit | 44ca1de37f487d7b330581670d004614e4a06675 (patch) | |
tree | 4216beafbf60b1dfe5db5c06b3948557a5c7d1bb /cpp/src/Ice/DynamicLibrary.cpp | |
parent | Remove C++11 extensions to C++98 mapping (diff) | |
download | ice-44ca1de37f487d7b330581670d004614e4a06675.tar.bz2 ice-44ca1de37f487d7b330581670d004614e4a06675.tar.xz ice-44ca1de37f487d7b330581670d004614e4a06675.zip |
C++11 mapping build fixes to use ++11 suffix
Diffstat (limited to 'cpp/src/Ice/DynamicLibrary.cpp')
-rw-r--r-- | cpp/src/Ice/DynamicLibrary.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/DynamicLibrary.cpp b/cpp/src/Ice/DynamicLibrary.cpp index fc13d9188d7..d96b2911e03 100644 --- a/cpp/src/Ice/DynamicLibrary.cpp +++ b/cpp/src/Ice/DynamicLibrary.cpp @@ -89,7 +89,7 @@ IceInternal::DynamicLibrary::loadEntryPoint(const string& entryPoint, bool useIc if(comma == string::npos) { libName = libSpec; -# if defined(ICE_CPP11_COMPILER) && defined(__GLIBCXX__) +# if defined(ICE_CPP11_MAPPING) && !defined(_WIN32) libName += "++11"; # endif if(useIceVersion) @@ -119,7 +119,7 @@ IceInternal::DynamicLibrary::loadEntryPoint(const string& entryPoint, bool useIc return 0; } libName = libSpec.substr(0, comma); -# if defined(ICE_CPP11_COMPILER) && defined(__GLIBCXX__) +# if defined(ICE_CPP11_MAPPING) && !defined(_WIN32) libName += "++11"; # endif version = libSpec.substr(comma + 1); |