See Miguel's blog post: http://tirania.org/blog/archive/2007/Oct-03.html

Also, the rules for contributing are still in effect:
http://www.mono-project.com/Contributing

"If you have looked at Microsoft's implementation of .NET or their shared
source code, you will not be able to contribute to Mono."

- Jonathan

On 10/3/07, Tinco Andringa <[EMAIL PROTECTED]> wrote:
>
> Hey guys,
>
> Have you read this?
>
>
> http://weblogs.asp.net/scottgu/archive/2007/10/03/releasing-the-source-code-for-the-net-framework-libraries.aspx
>
> How will this affect the mono project? Will we able to use it to make the
> framework match more to microsoft's or is it information we already have
> (from the spec)?
>
> ------------------------------
>
> > From: [EMAIL PROTECTED]
> > To: [EMAIL PROTECTED]
> > Date: Wed, 3 Oct 2007 13:46:11 -0400
> > CC: mono-devel-list@lists.ximian.com
> > Subject: Re: [Mono-dev] Incorrect trunc() definition for MSVC in
> mono-compiler.h
> >
> > Hello,
> >
> > Thanks, I have commited a patch.
> >
> > > Hi,
> > >
> > > mono/utils/mono-compiler.h has incorrect trunc() definition for Visual
> > > Studio, causing overflow exceptions to be thrown from int->float
> > > conversions with negative inputs.
> > >
> > > Line 88 is:
> > > #define trunc(x) floor((x))
> > > when it should be something like:
> > > #define trunc(x) (((x) < 0) ? ceil((x)) : floor((x)))
> > >
> > _______________________________________________
> > Mono-devel-list mailing list
> > Mono-devel-list@lists.ximian.com
> > http://lists.ximian.com/mailman/listinfo/mono-devel-list
>
>
> ------------------------------
> Express yourself instantly with MSN Messenger! MSN 
> Messenger<http://clk.atdmt.com/AVE/go/onm00200471ave/direct/01/>
>
> _______________________________________________
> Mono-devel-list mailing list
> Mono-devel-list@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-devel-list
>
>
_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to