diff -up boost/cstdint.hpp\~ boost/cstdint.hpp --- boost/cstdint.hpp~ 2013-03-07 01:46:19.000000000 +0100 +++ boost/cstdint.hpp 2013-06-25 21:56:25.930276225 +0200 @@ -41,7 +41,15 @@ // so we disable use of stdint.h when GLIBC does not define __GLIBC_HAVE_LONG_LONG. // 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)) +// This define has been dropped altogether in GLIBC 2.17. As of then, +// support for long long is part of baseline requirements, and +// [u]int64_t is always defined. See here: +// http://sourceware.org/ml/libc-alpha/2013-01/msg00440.html +// +#if defined(BOOST_HAS_STDINT_H) \ + && (!defined(__GLIBC__) \ + || defined(__GLIBC_HAVE_LONG_LONG) \ + || (defined __GLIBC_PREREQ && __GLIBC_PREREQ(2,17))) // The following #include is an implementation artifact; not part of interface. # ifdef __hpux Diff finished. Tue Jun 25 21:56:32 2013