https://bugzilla.novell.com/show_bug.cgi?id=446205

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=446205#c4





--- Comment #4 from Joel Sherrill <[EMAIL PROTECTED]>  2008-11-18 13:51:57 MST 
---

We are using the newlib C library and the default stdint.h implementation.
It has this:

typedef signed long int32_t;
typedef unsigned long uint32_t;

So that would be what triggers it.  Since newlib is used on cygwin, I checked
there and the /usr/include/stdint.h (not the same implementation as the default
newlib one) has this:

typedef long int32_t;

The Mingw/Msys install on that machine has yet another implementation
of stdint.h and it has this;

typedef int int32_t;

So int32_t is not always an int.  I think Cygwin might fail also on using
eglib.


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to