summaryrefslogtreecommitdiff
path: root/devel/boost-libs/files/patch-5a9688e4ef22c51f77bf147589e3306bf8fd03df
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-5a9688e4ef22c51f77bf147589e3306bf8fd03df
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-5a9688e4ef22c51f77bf147589e3306bf8fd03df')
-rw-r--r--devel/boost-libs/files/patch-5a9688e4ef22c51f77bf147589e3306bf8fd03df38
1 files changed, 0 insertions, 38 deletions
diff --git a/devel/boost-libs/files/patch-5a9688e4ef22c51f77bf147589e3306bf8fd03df b/devel/boost-libs/files/patch-5a9688e4ef22c51f77bf147589e3306bf8fd03df
deleted file mode 100644
index 3c3127d8c97d..000000000000
--- a/devel/boost-libs/files/patch-5a9688e4ef22c51f77bf147589e3306bf8fd03df
+++ /dev/null
@@ -1,38 +0,0 @@
---- boost/math/special_functions/fpclassify.hpp.orig 2013-09-28 16:19:47 UTC
-+++ boost/math/special_functions/fpclassify.hpp
-@@ -348,7 +348,7 @@ inline bool (isfinite)(long double x)
- { //!< \brief return true if floating-point type t is finite.
- typedef detail::fp_traits<long double>::type traits;
- typedef traits::method method;
-- typedef boost::is_floating_point<long double>::type fp_tag;
-+ //typedef boost::is_floating_point<long double>::type fp_tag;
- typedef long double value_type;
- return detail::isfinite_impl(static_cast<value_type>(x), method());
- }
-@@ -419,7 +419,7 @@ inline bool (isnormal)(long double x)
- {
- typedef detail::fp_traits<long double>::type traits;
- typedef traits::method method;
-- typedef boost::is_floating_point<long double>::type fp_tag;
-+ //typedef boost::is_floating_point<long double>::type fp_tag;
- typedef long double value_type;
- return detail::isnormal_impl(static_cast<value_type>(x), method());
- }
-@@ -508,7 +508,7 @@ inline bool (isinf)(long double x)
- {
- typedef detail::fp_traits<long double>::type traits;
- typedef traits::method method;
-- typedef boost::is_floating_point<long double>::type fp_tag;
-+ //typedef boost::is_floating_point<long double>::type fp_tag;
- typedef long double value_type;
- return detail::isinf_impl(static_cast<value_type>(x), method());
- }
-@@ -594,7 +594,7 @@ inline bool (isnan)(long double x)
- { //!< \brief return true if floating-point type t is NaN (Not A Number).
- typedef detail::fp_traits<long double>::type traits;
- typedef traits::method method;
-- typedef boost::is_floating_point<long double>::type fp_tag;
-+ //typedef boost::is_floating_point<long double>::type fp_tag;
- return detail::isnan_impl(x, method());
- }
- #endif