I tried this on my version of Mono with all my fixes to version 2.8
and it worked fine. My fixes were submitted to the Mono team on Oct 30
but none of it has made it to version 2.8.1 which is more my fault
than theirs. To be honest, I have forgotten all the bugs that I fixed.
I do remember that the
es was supposed to do.
>
> Perhaps you could review the cleaned up patch that I sent and send us
> patches/changes in individual pieces with the functionality isolated for
> review and merging?
>
> Miguel
>
> On Sat, Oct 30, 2010 at 3:10 PM, Ralph Leckett wrote:
>
>> Does the
Meh!
These are codecs that haven't really changed much so if you find them
wherever...
I used
jpeg-8b
tiff-3.9.4
giflib-4.1.6
libpng-1.4.4
...and I forget where I found them, GNU, FreshMeat, Walmart, etc.
They are what libgdiplus nags about when it runs ./configure so
anything that keeps libgdip
Attached is a how-to list of building Mono on OSX that worked for me.
On 10/29/10, darkgoob wrote:
>
> That is great but HOW do I install your patched version of Mono on OS X? I
> have been trying for days and all is fail. Thanks
> --
> View this message in context:
> http://mono.1490590.n4.nabbl
n any consideration to providing a roadmap to your
>>> changes
>>> > so that they can be individually reviewed?
>>> >
>>> > Since you reformatted the source code, it is not possible to apply
>>> the
>>> > patches directly, we still h
e exposure of method variables to outside objects without
>> using properties to be one of the poorer coding practices used in
>> Mono. Apart from that, I found Mono to be quite well written and a
>> pleasure to work on.
>>
>> Ralph
>>
>> On 10/20/10, Ralph Lec
In libgdiplus-2.8, the following is dumb:
unsigned long long int size;
size = bmi.biWidth;
size *= 4;
if (size > G_MAXINT32)
goto error;
The following is a better way:
long size;
size = bmi.biWidth;
if (size > G_MAXINT32 /