diff options
author | Bernd Kuhls <berndkuhls@hotmail.com> | 2013-12-30 18:25:28 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-01-13 22:19:56 +0100 |
commit | 4258f82e1aecdc6bb91a6ea05ce8ac549849a63a (patch) | |
tree | 6a784b0c7d4b987018a7e9ed38317256d784412a /package/boost/boost-0003-fix-64bit-build-with-recent-gcc.patch | |
parent | 8c71d1a144f4e48cf07f07c4b02b64984cc19928 (diff) | |
download | buildroot-4258f82e1aecdc6bb91a6ea05ce8ac549849a63a.tar.gz buildroot-4258f82e1aecdc6bb91a6ea05ce8ac549849a63a.zip |
boost: bump to version 1.55.0
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/boost/boost-0003-fix-64bit-build-with-recent-gcc.patch')
-rw-r--r-- | package/boost/boost-0003-fix-64bit-build-with-recent-gcc.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/package/boost/boost-0003-fix-64bit-build-with-recent-gcc.patch b/package/boost/boost-0003-fix-64bit-build-with-recent-gcc.patch deleted file mode 100644 index 5fdfb01ac7..0000000000 --- a/package/boost/boost-0003-fix-64bit-build-with-recent-gcc.patch +++ /dev/null @@ -1,33 +0,0 @@ -Patch for recent versions of glibc which always assume int64_t support. - -Fixes compilation error with aarch64 target: - -./boost/atomic/atomic.hpp: At global scope: -./boost/atomic/atomic.hpp:202:16: error: 'uintptr_t' was not declared in this scope - typedef atomic<uintptr_t> atomic_uintptr_t; - ^ -./boost/atomic/atomic.hpp:202:25: error: template argument 1 is invalid - typedef atomic<uintptr_t> atomic_uintptr_t; - ^ -./boost/atomic/atomic.hpp:202:43: error: invalid type in declaration before ';' token - typedef atomic<uintptr_t> atomic_uintptr_t; - ^ - -Reported here: https://svn.boost.org/trac/boost/ticket/8973 -Fix reported here: https://svn.boost.org/trac/boost/ticket/8731 - -Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> -Backported-from: https://svn.boost.org/trac/boost/changeset/84950 - ---- a/boost/cstdint.hpp (revision 84805) -+++ b/boost/cstdint.hpp (revision 84950) -@@ -42,5 +42,8 @@ - // See https://svn.boost.org/trac/boost/ticket/3548 and http://sources.redhat.com/bugzilla/show_bug.cgi?id=10990 - // --#if defined(BOOST_HAS_STDINT_H) && (!defined(__GLIBC__) || defined(__GLIBC_HAVE_LONG_LONG)) -+#if defined(BOOST_HAS_STDINT_H) \ -+ && (!defined(__GLIBC__) \ -+ || defined(__GLIBC_HAVE_LONG_LONG) \ -+ || (defined(__GLIBC__) && ((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 17))))) - - // The following #include is an implementation artifact; not part of interface. |