[Mono-devel-list] xslttest patch

2005-05-17 Thread Andrew Skiba
Fix Makefile a little bit: clean-xslttest had dependency on catalog-fixed.xml, then on catalog.xml which make did not know to build. Another fix is when generating reference results, check that we are running on windows, otherwise we can get to comparing mono results with mono results. Index: M

[Mono-devel-list] Cannot find libmonoos.a in Cygwin compilation

2005-05-17 Thread Rodrigo Mazzilli
Hi folks, Trying to compile mono in a Cygwin environment fails with the following error: (cd .libs/libmonoruntime-static.lax/libmonoos.a && ar x /download/mono-src/mono/mono/metadata/../os/.libs/libmonoos.a) ar: /download/mono-src/mono/mono/metadata/../os/.libs/libmonoos.a: No such file or direct

Re: [Mono-devel-list] Patch for generating debug info in System.Reflection.Emit

2005-05-17 Thread Kamil Skalski
Dnia wtorek, 17 maja 2005 17:25, Lluis Sanchez napisaƅ: > Hi! > > This patch adds some basic support for generating debug info in SRE. It > implements ModuleBuilder.DefineDocument and > ILGenerator.MarkSequencePoint, and should be enough for most of > compilers. With this patch, Boo and IKVM can ge

Re: [Mono-devel-list] The Computer Language Shootout

2005-05-17 Thread Isaac Gouy
It'll look better when better programs are contributed ;-) --- "Matthijs ter Woord (meddochat)" <[EMAIL PROTECTED]> wrote: > Looks great > > > > - Original Message - > From: "Isaac Gouy" <[EMAIL PROTECTED]> > To: > Sent: Tuesday, May 17, 2005 5:54 PM > Subject: [Mono-devel-list] The

[Mono-devel-list] need some help ! Multiple domains in Mono...

2005-05-17 Thread Pierre Brunet
Hello, I've a lot of questions on Mono It's for my University project. I try to embed mono into an application. My goal is to launch a mono into a pthread and run an assembly over it : ( ) ( ) ( ) <- toto.exe | || | ||

Re: [Mono-devel-list] The Computer Language Shootout

2005-05-17 Thread Matthijs ter Woord (meddochat)
Looks great - Original Message - From: "Isaac Gouy" <[EMAIL PROTECTED]> To: Sent: Tuesday, May 17, 2005 5:54 PM Subject: [Mono-devel-list] The Computer Language Shootout > now using Mono 1.1.7 > > http://shootout.alioth.debian.org/great/benchmark.php?test=all&lang=csharp&sort=fullcpu

[Mono-devel-list] The Computer Language Shootout

2005-05-17 Thread Isaac Gouy
now using Mono 1.1.7 http://shootout.alioth.debian.org/great/benchmark.php?test=all&lang=csharp&sort=fullcpu We really welcome improvements/alternatives to the existing programs, and contributions for the micro-benchmarks we haven't done yet. __

Re: [Mono-devel-list] Generic Queue and Stack from mscorlib to System

2005-05-17 Thread Martin Baulig
On Wed, 2005-05-11 at 12:40 +0900, Atsushi Eno wrote: > Is there any problem if we move Stack and Queue (and related tests) > in System.Collections.Generic from mscorlib.dll to System.dll? > > In .NET 2.0 beta2, they are moved to System.dll. Hi, I think there are more such API changes in the la

Re: [Mono-devel-list] Patch for generating debug info in System.Reflection.Emit

2005-05-17 Thread Rodrigo B. de Oliveira
On 5/17/05, Lluis Sanchez <[EMAIL PROTECTED]> wrote: > Hi! > > This patch adds some basic support for generating debug info in SRE. It > implements ModuleBuilder.DefineDocument and > ILGenerator.MarkSequencePoint, and should be enough for most of > compilers. With this patch, Boo and IKVM can gene

[Mono-devel-list] Patch for generating debug info in System.Reflection.Emit

2005-05-17 Thread Lluis Sanchez
Hi! This patch adds some basic support for generating debug info in SRE. It implements ModuleBuilder.DefineDocument and ILGenerator.MarkSequencePoint, and should be enough for most of compilers. With this patch, Boo and IKVM can generate correct debug info. The symbol writer is still implemented

[Mono-devel-list] System.Data upgrade

2005-05-17 Thread Konstantin Triger
To all interested in System.Data changes, Recently completed a merge from the Mainsoft branch (Mainsoft.System.Data) to the main trunk. This branch included numerious bug fixes and internal indices redesign. The goals and implementation principles of the redesign attached. In addition a Mainsoft

Re: [Mono-devel-list] Problem with DbDataAdapter...

2005-05-17 Thread Konstantin Triger
Hello again, Seems that Oracle provider does not initialize at all some columns in SchemaTable. The attached patch fixes that in a generic way. Regards, Konstantin Triger Hubert FONGARNAND wrote: I've applied your patch... It corrects the problem with my postgresql app... but i get always an err

Fwd: Re: [Mono-devel-list] Problem with DbDataAdapter...

2005-05-17 Thread Hubert FONGARNAND
-- Message transmis -- Subject: Re: [Mono-devel-list] Problem with DbDataAdapter... Date: Mardi 17 Mai 2005 14:26 From: Hubert FONGARNAND <[EMAIL PROTECTED]> To: mono-devel-list@lists.ximian.com I've applied your patch... It corrects the problem with my postgresql app... but i

[Mono-devel-list] Yet another patch to xslttest

2005-05-17 Thread Andrew Skiba
As we talked earlier, xsl:message is always printed on stdout. So to clean our output from those messages I output everything to stderr and send stdout to /dev/null Index: Makefile === --- Makefile (revision 44608) +++ Makefile (work

Re: [Mono-devel-list] Problem with DbDataAdapter...

2005-05-17 Thread Hubert FONGARNAND
I've applied your patch... It corrects the problem with my postgresql app... but i get always an error with the same app with oracle : System.IndexOutOfRangeException: Array index is out of range. in <0x00067> System.Data.DataRow:get_Item (System.String columnName, DataRowVersion version) in <0x0

[Mono-devel-list] another xslttests patch

2005-05-17 Thread Andrew Skiba
Write down the list of failures, so failures can be analyzed and appended to ignore list with awk -F"\t" 'print $1' >ignore.lst Index: ChangeLog === --- ChangeLog (revision 44609) +++ ChangeLog (working copy) @@ -1,5 +1,9 @@ 2005-05

Re: [Mono-devel-list] Problem with DbDataAdapter...

2005-05-17 Thread Konstantin Triger
Agreed, but in fact the provider should set the defaults, not the DataAdapter :-). Regards, Konstantin Triger Sureshkumar T wrote: + bool allowDBNull = value is bool ? (bool)value : false; default allowDBNull should be true ;-) suresh. __

Re: [Mono-devel-list] Problem with DbDataAdapter...

2005-05-17 Thread Sureshkumar T
> + bool allowDBNull = > value is bool ? (bool)value : false; default allowDBNull should be true ;-) suresh. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/m

[Mono-devel-list] Internal call from a module

2005-05-17 Thread Pierre Brunet
Hi, I try to call a C function from a C# module... My C code "runtime.c launch an assembly "appli.cs", I could call a C function in "runtime.c" from "appli.cs" with an InternalCall. But I 've a module "module.cs" used by "appli.cs", and in this module I need to call a C function

Re: [Mono-devel-list] Problem with DbDataAdapter...

2005-05-17 Thread Konstantin Triger
Hello Hubert, There was a change during this week end: the Mainsoft changes were merged into the trunk (they were previously available at Mainsoft.System.Data branch). From the stack I suppose that PG provider does not fully initialize the SchemaTable and some columns contain nulls. Let me kno

Re: Spam: [Mono-devel-list] xslttest.cs

2005-05-17 Thread Andrew Skiba
Hi, Atsushi. (B (BPlease review the corrected patch. (B (BAndrew.Index: xslttest.cs === --- xslttest.cs (revision 44604) +++ xslttest.cs (working copy) @@ -10,6 +10,7 @@ { public class XsltTest { +#region static Vars static

[Mono-devel-list] Problem with DbDataAdapter...

2005-05-17 Thread Hubert FONGARNAND
I've updated my mono this morning from SVN... and all db applications (PostGreSQL) fails with : System.InvalidCastException: Cannot cast from source type to destination type. in <0x00548> System.Data.Common.DbDataAdapter:BuildSchema (IDataReader reader, System.Data.DataTable table, SchemaType s