diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-10-28 19:28:31 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-10-28 19:28:31 +0100 |
commit | dd30a928130680fdfa3c67e5cd09d8680587d11d (patch) | |
tree | ba3b22e59153e43740099420c0234d84c71670b9 /cpp/src/Ice/DynamicLibrary.cpp | |
parent | Fixed ICE-5787: queue request handler deadlock (diff) | |
download | ice-dd30a928130680fdfa3c67e5cd09d8680587d11d.tar.bz2 ice-dd30a928130680fdfa3c67e5cd09d8680587d11d.tar.xz ice-dd30a928130680fdfa3c67e5cd09d8680587d11d.zip |
Fixed DynamicLibrary to not append ++11 to libname for OS X
Diffstat (limited to 'cpp/src/Ice/DynamicLibrary.cpp')
-rw-r--r-- | cpp/src/Ice/DynamicLibrary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/DynamicLibrary.cpp b/cpp/src/Ice/DynamicLibrary.cpp index a05ab5f8ae5..9a5d6dd7a9e 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; -# ifdef ICE_CPP11 +# if defined(ICE_CPP11) && !defined(__APPLE__) libName += "++11"; # endif if(useIceVersion) |