Magellan Linux

Contents of /trunk/boost/patches/boost-1.54.0-glibc218.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2315 - (show annotations) (download)
Wed Oct 23 11:14:45 2013 UTC (10 years, 6 months ago) by niro
File size: 738 byte(s)
-patches for 1.54.0
1 Index: /trunk/boost/cstdint.hpp
2 ===================================================================
3 --- /trunk/boost/cstdint.hpp (revision 84805)
4 +++ /trunk/boost/cstdint.hpp (revision 84950)
5 @@ -42,5 +42,8 @@
6 // See https://svn.boost.org/trac/boost/ticket/3548 and http://sources.redhat.com/bugzilla/show_bug.cgi?id=10990
7 //
8 -#if defined(BOOST_HAS_STDINT_H) && (!defined(__GLIBC__) || defined(__GLIBC_HAVE_LONG_LONG))
9 +#if defined(BOOST_HAS_STDINT_H) \
10 + && (!defined(__GLIBC__) \
11 + || defined(__GLIBC_HAVE_LONG_LONG) \
12 + || (defined(__GLIBC__) && ((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 17)))))
13
14 // The following #include is an implementation artifact; not part of interface.