summaryrefslogtreecommitdiff
path: root/devel/boost-libs/files/patch-168e60aa3d5238cd25b341661a6c53e638dd6c33-plusclang
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2016-11-23 12:45:46 +0000
committerJan Beich <jbeich@FreeBSD.org>2016-11-23 12:45:46 +0000
commita8713d15f4d56c9054b5d6a952f5c3613f04959a (patch)
tree9f8db44177ed46a64b46576a24dfdf8ada114376 /devel/boost-libs/files/patch-168e60aa3d5238cd25b341661a6c53e638dd6c33-plusclang
parentAdd ttyd: (diff)
devel/boost-*: update to 1.62.0
- Enable `long double` C99 math usage - Switch 9.x back to building with GCC Changes: http://www.boost.org/users/history/ PR: 199601 Submitted by: Chen Xu, bapt, amdmi3, truckman (based on) Reviewed by: rakuco (kde) (earlier version) Exp-run by: antoine (3 tries), truckman (consumers only, earlier versions) Approved by: bapt (office)
Notes
Notes: svn path=/head/; revision=426908
Diffstat (limited to 'devel/boost-libs/files/patch-168e60aa3d5238cd25b341661a6c53e638dd6c33-plusclang')
-rw-r--r--devel/boost-libs/files/patch-168e60aa3d5238cd25b341661a6c53e638dd6c33-plusclang23
1 files changed, 0 insertions, 23 deletions
diff --git a/devel/boost-libs/files/patch-168e60aa3d5238cd25b341661a6c53e638dd6c33-plusclang b/devel/boost-libs/files/patch-168e60aa3d5238cd25b341661a6c53e638dd6c33-plusclang
deleted file mode 100644
index 8caa42009e2f..000000000000
--- a/devel/boost-libs/files/patch-168e60aa3d5238cd25b341661a6c53e638dd6c33-plusclang
+++ /dev/null
@@ -1,23 +0,0 @@
---- boost/concept/detail/general.hpp.orig 2010-06-08 19:31:13 UTC
-+++ boost/concept/detail/general.hpp
-@@ -65,10 +65,19 @@ struct requirement_<void(*)(Model)>
-
- # endif
-
-+// Version check from https://svn.boost.org/trac/boost/changeset/82886
-+// (boost/static_assert.hpp)
-+#if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7))) || defined(__clang__)
-+#define BOOST_CONCEPT_UNUSED_TYPEDEF __attribute__((unused))
-+#else
-+#define BOOST_CONCEPT_UNUSED_TYPEDEF /**/
-+#endif
-+
- # define BOOST_CONCEPT_ASSERT_FN( ModelFnPtr ) \
- typedef ::boost::concepts::detail::instantiate< \
- &::boost::concepts::requirement_<ModelFnPtr>::failed> \
-- BOOST_PP_CAT(boost_concept_check,__LINE__)
-+ BOOST_PP_CAT(boost_concept_check,__LINE__) \
-+ BOOST_CONCEPT_UNUSED_TYPEDEF
-
- }}
-