https://sourceware.org/bugzilla/show_bug.cgi?id=29961

--- Comment #5 from Nick Clifton <nickc at redhat dot com> ---
(In reply to Andreas Schwab from comment #4)
> No, it defines _BYTE_ORDER and _BIG_ENDIAN.

Ah - so the issue is this line:

  #if defined(__GLIBC__) || defined(__GNU_LIBRARY__) || defined(__ANDROID__)

Presumably we need to test for SunOS.  Would this work:

  #if defined(__GLIBC__) || defined(__GNU_LIBRARY__) || defined(__ANDROID__) ||
defined(__SUNOS__)

Or:

  #if defined(__GLIBC__) || defined(__GNU_LIBRARY__) || defined(__ANDROID__) ||
defined(SunOS)

Would that work ?  

Dennis - are you able to test this idea and see if it helps ?

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Reply via email to