aboutsummaryrefslogtreecommitdiff
path: root/depends/patches/boost/gcc_5_no_cxx11.patch
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-02-27 15:11:50 +0100
committerMarcoFalke <falke.marco@gmail.com>2016-03-01 13:03:42 +0100
commitfafe446d0e5d51b7f17628d397e3d3d9fac8b9d8 (patch)
tree5bb509ca6e5d44cfc4c6d0c738bb1a46c8fffabb /depends/patches/boost/gcc_5_no_cxx11.patch
parent3cd836c1d855b92e7c73ab31979f471c4f8dad68 (diff)
downloadbitcoin-fafe446d0e5d51b7f17628d397e3d3d9fac8b9d8.tar.xz
[depends] Delete unused patches
Superseded by 4bdad99f5000539dcf03ddc92c142fa6deb44c01
Diffstat (limited to 'depends/patches/boost/gcc_5_no_cxx11.patch')
-rw-r--r--depends/patches/boost/gcc_5_no_cxx11.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/depends/patches/boost/gcc_5_no_cxx11.patch b/depends/patches/boost/gcc_5_no_cxx11.patch
deleted file mode 100644
index 04514c593a..0000000000
--- a/depends/patches/boost/gcc_5_no_cxx11.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From eec808554936ae068b23df07ab54d4dc6302a695 Mon Sep 17 00:00:00 2001
-From: jzmaddock <jzmaddock@gmail.com>
-Date: Sat, 23 Aug 2014 09:38:02 +0100
-Subject: [PATCH] Fix BOOST_NO_CXX11_VARIADIC_TEMPLATES definition - the
- feature was introduced in GCC 4.4.
-
----
- include/boost/config/compiler/gcc.hpp | 9 +--------
- 1 file changed, 1 insertion(+), 8 deletions(-)
-
-diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp
-index f37159d..97d8a18 100644
---- a/include/boost/config/compiler/gcc.hpp
-+++ b/include/boost/config/compiler/gcc.hpp
-@@ -154,14 +154,6 @@
- # define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
- # define BOOST_NO_CXX11_RVALUE_REFERENCES
- # define BOOST_NO_CXX11_STATIC_ASSERT
--
--// Variadic templates compiler:
--// http://www.generic-programming.org/~dgregor/cpp/variadic-templates.html
--# if defined(__VARIADIC_TEMPLATES) || (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4) && defined(__GXX_EXPERIMENTAL_CXX0X__))
--# define BOOST_HAS_VARIADIC_TMPL
--# else
--# define BOOST_NO_CXX11_VARIADIC_TEMPLATES
--# endif
- #endif
-
- // C++0x features in 4.4.n and later
-@@ -176,6 +168,7 @@
- # define BOOST_NO_CXX11_DELETED_FUNCTIONS
- # define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
- # define BOOST_NO_CXX11_INLINE_NAMESPACES
-+# define BOOST_NO_CXX11_VARIADIC_TEMPLATES
- #endif
-
- #if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)