Hello, > I noticed when trying to build on OS X with eglib turned on it was > throwing an error in mono-ehash.c:180 about ABS not taking two > arguments. Ah, we are using a different definition for ABS: #define ABS(a,b) (((a)>(b)) ? ((a)-(b)) : ((b)-(a))) It seems that we got that one wrong. Miguel.