Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 482372
Collapse All | Expand All

(-)boost_1_53_0/boost/cstdint.hpp (-1 / +4 lines)
Lines 41-47 Link Here
41
// so we disable use of stdint.h when GLIBC does not define __GLIBC_HAVE_LONG_LONG.
41
// so we disable use of stdint.h when GLIBC does not define __GLIBC_HAVE_LONG_LONG.
42
// See https://svn.boost.org/trac/boost/ticket/3548 and http://sources.redhat.com/bugzilla/show_bug.cgi?id=10990
42
// See https://svn.boost.org/trac/boost/ticket/3548 and http://sources.redhat.com/bugzilla/show_bug.cgi?id=10990
43
//
43
//
44
#if defined(BOOST_HAS_STDINT_H) && (!defined(__GLIBC__) || defined(__GLIBC_HAVE_LONG_LONG))
44
#if defined(BOOST_HAS_STDINT_H)					\
45
  && (!defined(__GLIBC__)					\
46
      || defined(__GLIBC_HAVE_LONG_LONG)			\
47
      || (defined(__GLIBC__) && ((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 17)))))
45
48
46
// The following #include is an implementation artifact; not part of interface.
49
// The following #include is an implementation artifact; not part of interface.
47
# ifdef __hpux
50
# ifdef __hpux

Return to bug 482372