summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-05-10 20:04:38 +0200
committerConrad Kostecki <conikost@gentoo.org>2022-05-14 00:49:35 +0200
commit873b66a365cd60623a326cd4b5265196943df5c4 (patch)
treea2a49c3dd3a22d7ad4092d1ad7522049303577a6 /www-apache
parenteclass/aspell-dict-r1.eclass: add which to BDEPEND (diff)
downloadgentoo-873b66a365cd60623a326cd4b5265196943df5c4.tar.gz
gentoo-873b66a365cd60623a326cd4b5265196943df5c4.tar.bz2
gentoo-873b66a365cd60623a326cd4b5265196943df5c4.zip
www-apache/passenger: remove unused patch
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/25427 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'www-apache')
-rw-r--r--www-apache/passenger/files/passenger-5.1.1-isnan.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/www-apache/passenger/files/passenger-5.1.1-isnan.patch b/www-apache/passenger/files/passenger-5.1.1-isnan.patch
deleted file mode 100644
index 02f7fe76df06..000000000000
--- a/www-apache/passenger/files/passenger-5.1.1-isnan.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -uNr passenger-5.1.1.orig/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp passenger-5.1.1/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp
---- passenger-5.1.1.orig/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp 2013-10-26 15:00:00.000000000 -0700
-+++ passenger-5.1.1/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp 2017-01-12 19:21:39.696285758 -0800
-@@ -134,8 +134,8 @@
- inline bool is_nan_helper(__float128 f, const boost::true_type&) { return ::isnanq(f); }
- inline bool is_nan_helper(__float128 f, const boost::false_type&) { return ::isnanq(f); }
- #else
--inline bool is_nan_helper(__float128 f, const boost::true_type&) { return ::isnan(static_cast<double>(f)); }
--inline bool is_nan_helper(__float128 f, const boost::false_type&) { return ::isnan(static_cast<double>(f)); }
-+inline bool is_nan_helper(__float128 f, const boost::true_type&) { return std::isnan(static_cast<double>(f)); }
-+inline bool is_nan_helper(__float128 f, const boost::false_type&) { return std::isnan(static_cast<double>(f)); }
- #endif
- #endif
- }