Re: [Mono-dev] [PATCH] Add mixed-mode assembly support on Windows (now build with cygwin as well)

2008-04-28 Thread Zoltan Varga
Hi, - image.c: mono_cli_rva_image_map is part of our public api, so its signature cannot be changed, you can rename it to mono_cli_rva_image_map_internal, and change the signature of that. I had a look at C:\Program Files\Mono\include and it doesn't contain any

[Mono-dev] Does Mono support applications created in Borland Developer Studio 2006?

2008-04-28 Thread Fernando Fischer
Hi Everybody! I'm trying to run a application developed with BDS 2006. This is a web application connecting to the SQL Server 2005. I've got this error. Does anybody know what could I do? Thanks. *Invalid IL code in Borland.Data.Provider.BdpConnection:.ctor (): IL_0006: stfld 0x0410 *

Re: [Mono-dev] [PATCH] Add mixed-mode assembly support on Windows (now build with cygwin as well)

2008-04-28 Thread Zoltan Varga
Hi, This looks ok to check in. Zoltan On Mon, Apr 28, 2008 at 2:40 PM, Kornél Pál [EMAIL PROTECTED] wrote: Hi, From: Zoltan Varga Other than that, I think the patch is ok to check in. One thing that is missing is tests. Since the patch changes so many places in the

Re: [Mono-dev] Does Mono support applications created in Borland Developer Studio 2006?

2008-04-28 Thread Avery Pennarun
On 4/28/08, Fernando Fischer [EMAIL PROTECTED] wrote: I'm trying to run a application developed with BDS 2006. This is a web application connecting to the SQL Server 2005. I've got this error. Does anybody know what could I do? I don't know about the exact error you got, but I do know I

[Mono-dev] Issues with XElement.Load() XmlReader.Create()

2008-04-28 Thread Sasha Kogan
To reproduce the bug: in MonoTests.System.Xml.Linq.XNodeReaderTest.CreateReader1() (XNodeReaderTest.cs:43) replace XDocument.Parse(xml) call with XDocument.Parse(xml, LoadOptions.PreserveWhitespace). The test will fail with the following stack: System.InvalidOperationException: Node type

Re: [Mono-dev] [PATCH] Add mixed-mode assembly support on Windows (now build with cygwin as well)

2008-04-28 Thread Rodrigo Kumpera
You can add these tests to a subdir of mono/tests/ and require that such compiler be instaled for them. We can then ask Wade to install it on our windows build bot and add these tests to the windows lanes. On Mon, Apr 28, 2008 at 1:15 PM, Kornél Pál [EMAIL PROTECTED] wrote: Hi, From:

Re: [Mono-dev] Does Mono support applications created in Borland

2008-04-28 Thread Engler, Eric
I'm trying to run a application developed with BDS 2006. This is a web application connecting to the SQL Server 2005. I've got this error. Does anybody know what could I do? Thanks. *Invalid IL code in Borland.Data.Provider.BdpConnection:.ctor (): IL_0006: stfld 0x0410 * The Borland Data

[Mono-dev] [PATCH] TypeDescriptor

2008-04-28 Thread James Fitzsimons
Hi all, While debugging a problem with Spring.NET over the weekend I uncovered an inconsistency in behaviour between the Mono and Microsoft implementations of the GetProperties method of the TypeDescriptor class. Basically the Microsoft only returns properties that have a getter, however Mono

Re: [Mono-dev] [PATCH] TypeDescriptor

2008-04-28 Thread Ivan N. Zlatev
2008/4/28 James Fitzsimons [EMAIL PROTECTED]: Hi all, While debugging a problem with Spring.NET over the weekend I uncovered an inconsistency in behaviour between the Mono and Microsoft implementations of the GetProperties method of the TypeDescriptor class. Basically the Microsoft only

Re: [Mono-dev] [PATCH] TypeDescriptor

2008-04-28 Thread Ivan N. Zlatev
On Mon, Apr 28, 2008 at 11:28 PM, James Fitzsimons [EMAIL PROTECTED] wrote: 2008/4/28 Ivan N. Zlatev [EMAIL PROTECTED]: 2008/4/28 James Fitzsimons [EMAIL PROTECTED]: Hi all, While debugging a problem with Spring.NET over the weekend I uncovered an inconsistency in

[Mono-dev] SHA1Managed speedups

2008-04-28 Thread Alan McGovern
Hi, I've been working a bit with scottp to try and improve the SHA1 performance in Mono. We figured that by unrolling two more of the loops, we could double performance as compared to what's in 1.9. Is this patch ok to commit. If so, i can write up the necessary changelogs and commit it myself,