summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/DynamicLibrary.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-10-28 20:47:25 +0100
committerJose <jose@zeroc.com>2014-10-28 20:47:25 +0100
commit8c6b6f2e784912b3e1134c974825a1e2717d575e (patch)
tree36e521b7bd7a7d0441d42476c7a65a213011c683 /cpp/src/Ice/DynamicLibrary.cpp
parentC++11 DynamicLibrary ++11 suffix should be applied only to libstdc++ (diff)
downloadice-8c6b6f2e784912b3e1134c974825a1e2717d575e.tar.bz2
ice-8c6b6f2e784912b3e1134c974825a1e2717d575e.tar.xz
ice-8c6b6f2e784912b3e1134c974825a1e2717d575e.zip
minor ifdef fix
Diffstat (limited to 'cpp/src/Ice/DynamicLibrary.cpp')
-rw-r--r--cpp/src/Ice/DynamicLibrary.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/DynamicLibrary.cpp b/cpp/src/Ice/DynamicLibrary.cpp
index b18175cc24a..cb678dfe6a5 100644
--- a/cpp/src/Ice/DynamicLibrary.cpp
+++ b/cpp/src/Ice/DynamicLibrary.cpp
@@ -119,7 +119,7 @@ IceInternal::DynamicLibrary::loadEntryPoint(const string& entryPoint, bool useIc
return 0;
}
libName = libSpec.substr(0, comma);
-# ifdef ICE_CPP11 && defined(__GLIBCXX__)
+# if defined(ICE_CPP11) && defined(__GLIBCXX__)
libName += "++11";
# endif
version = libSpec.substr(comma + 1);