diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-07-21 21:19:02 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-07-21 21:19:02 +0100 |
commit | e2cbb6a01599b30d86445ae723d5bf7afe5f72e7 (patch) | |
tree | cb8e438ac1db45ed586de208c4c7368361f4ae68 /dev-libs/Ice/files | |
parent | Add git and git-extras (diff) | |
download | portage-e2cbb6a01599b30d86445ae723d5bf7afe5f72e7.tar.bz2 portage-e2cbb6a01599b30d86445ae723d5bf7afe5f72e7.tar.xz portage-e2cbb6a01599b30d86445ae723d5bf7afe5f72e7.zip |
Patch to not look for libs with ++11 appeneded
Diffstat (limited to 'dev-libs/Ice/files')
-rw-r--r-- | dev-libs/Ice/files/dont-append-c++11-to-libs.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-libs/Ice/files/dont-append-c++11-to-libs.patch b/dev-libs/Ice/files/dont-append-c++11-to-libs.patch new file mode 100644 index 0000000..20fe1d8 --- /dev/null +++ b/dev-libs/Ice/files/dont-append-c++11-to-libs.patch @@ -0,0 +1,22 @@ +--- ice-3.6.0/cpp/src/Ice/DynamicLibrary.cpp ++++ ice-3.6.0/cpp/src/Ice/DynamicLibrary.cpp +@@ -89,9 +89,6 @@ + if(comma == string::npos) + { + libName = libSpec; +-# if defined(ICE_CPP11) && defined(__GLIBCXX__) +- libName += "++11"; +-# endif + if(useIceVersion) + { + int majorVersion = (ICE_INT_VERSION / 10000); +@@ -119,9 +116,6 @@ + return 0; + } + libName = libSpec.substr(0, comma); +-# if defined(ICE_CPP11) && defined(__GLIBCXX__) +- libName += "++11"; +-# endif + version = libSpec.substr(comma + 1); + } + |