diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2013-06-17 11:46:10 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2013-06-17 11:46:10 +0000 |
commit | 39e47a61bec9559a8a7dd9da7f3dd91a21c5cf5f (patch) | |
tree | c95e97cb332b1e62a086710c630f95c725eaaa57 /devel/py-ice/files/patch-cpp-include-IceUtil-Config.h | |
parent | - chase devel/ice update (diff) |
- update to 3.5.0
- relax version limit in USE_PYTHON (python3 is now supported too)
PR: 179240
Submitted by: Michael Gmelin <freebsd@grem.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=321098
Diffstat (limited to 'devel/py-ice/files/patch-cpp-include-IceUtil-Config.h')
-rw-r--r-- | devel/py-ice/files/patch-cpp-include-IceUtil-Config.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/py-ice/files/patch-cpp-include-IceUtil-Config.h b/devel/py-ice/files/patch-cpp-include-IceUtil-Config.h new file mode 100644 index 000000000000..db5520564b2e --- /dev/null +++ b/devel/py-ice/files/patch-cpp-include-IceUtil-Config.h @@ -0,0 +1,11 @@ +--- cpp/include/IceUtil/Config.h.orig 2013-03-11 15:19:46.000000000 +0000 ++++ cpp/include/IceUtil/Config.h 2013-05-20 02:09:58.239194578 +0000 +@@ -51,7 +51,7 @@ + // Check for C++ 11 support + // + #if (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)) && defined(__GXX_EXPERIMENTAL_CXX0X__)) || \ +- (defined(__clang__) && (__clang_major__ >= 4) && __cplusplus >= 201103) || \ ++ (defined(__clang__) && ((defined(__APPLE__) && __clang_major__ >= 4) || (!defined(__APPLE__) && __clang_major__ >= 3)) && __cplusplus >= 201103) || \ + (defined(_MSC_VER) && (_MSC_VER >= 1600)) + # define ICE_CPP11 + #endif |