You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
659 B

  1. --- boost/cstdint.hpp
  2. +++ boost/cstdint.hpp
  3. @@ -42,5 +42,8 @@
  4. // See https://svn.boost.org/trac/boost/ticket/3548 and http://sources.redhat.com/bugzilla/show_bug.cgi?id=10990
  5. //
  6. -#if defined(BOOST_HAS_STDINT_H) && (!defined(__GLIBC__) || defined(__GLIBC_HAVE_LONG_LONG))
  7. +#if defined(BOOST_HAS_STDINT_H) \
  8. + && (!defined(__GLIBC__) \
  9. + || defined(__GLIBC_HAVE_LONG_LONG) \
  10. + || (defined(__GLIBC__) && ((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 17)))))
  11. // The following #include is an implementation artifact; not part of interface.