Re: [Mono-dev] i cannot compile Mono today from SVN

2005-09-20 Thread Ankit Jain
svn up, its already been fixed. -Ankit On 9/14/05, Hubert FONGARNAND [EMAIL PROTECTED] wrote: i cannot compile Mono today from SVN make[8]: Entering directory `/home/hubert/mono/mcs/class/Microsoft.JScript' MONO_PATH=../../class/lib/net_2_0:$MONO_PATH

Re: [Mono-dev] questions regarding contributing

2005-09-20 Thread Rafael Teixeira
We are trying to follow .NET 2.0 API changes as needed (they are nearly frozen now as the launch date for it is around November). Just that 2.0 specifics need to be conditionally compiled only for the 2_0 profile. So just be sure to have such code surrounded by #if NET_2_0 #endif // NET_2_0

[Mono-dev] Checking out sources

2005-09-20 Thread Johann BLAIS
Hi, I'm desperately trying to check out the sources of Mono. I tried the method described in the mono site svn co svn://mono.myrealbox.com/source/trunk/mcs That does not work. I cannot connect to the repository. So I tried svn co svn+ssh://mono.myrealbox.com/source/trunk/mcs The

[Mono-dev] Running mcs from MSys make?

2005-09-20 Thread Chris Seaton
Is it possible to run mcs from the make that comes with MSys? I can't get it to work. I have a Makefile that I've been using so far on Linux. I copied it into my Windows installation but it doesn't work. The Makefile command is a simple call to mcs. Make tries to run the mcs bash script

RE: [Mono-dev] RE: [Mono-devel-list] System.Data : DataTable.Select performance

2005-09-20 Thread T Sureshkumar
On Mon, Sep 19, 2005 at 8:23 pm, in message [EMAIL PROTECTED], Boris Kirzner [EMAIL PROTECTED] wrote: @@ - 193,9 +206,14 @@ return false; } - if (_filter != filter) - return false; +

[Mono-dev] How to do a Tao release?

2005-09-20 Thread David_Hudson
I am trying to prep a release for the Tao project. Since Tao is hosted on the Mono site, we would like to put the download on this site. What is the procedure for uploading the release files to Mono? What is the ftp site and password? Thanks Dave

Re: [Mono-dev] Memory leaks

2005-09-20 Thread Thorsten Schuett
On Thursday 15 September 2005 19:15, Paolo Molaro wrote: On 09/15/05 Thorsten Schuett wrote: I ported a simulation from Visual C# beta 2 to mono this week. You can't really call it porting, because I only had to remove references to Stopwatch. But anyway, thanks to all of you for making it

Re: [Mono-dev] [PATCH] Add default code page to build system

2005-09-20 Thread Kornél Pál
Hi, Mono 1.1.9 was released so we don't have to worry about branching. Can I commit the patch? Kornél - Original Message - From: Kornél Pál [EMAIL PROTECTED] To: Miguel de Icaza [EMAIL PROTECTED] Cc: mono-devel-list@lists.ximian.com Sent: Tuesday, September 06, 2005 3:31 PM Subject:

[Mono-dev] Re: [Mono-devel-list] System.Data : DataTable.Select performance

2005-09-20 Thread tsureshkumar
@@ -193,9 +206,14 @@ return false; } - if (_filter != filter) - return false; + if (_filter != null) { + if (!_filter.Equals (filter)) +

Re: [Mono-dev] RE: [Mono-devel-list] System.Data : DataTable.Select performance

2005-09-20 Thread tsureshkumar
Boris Kirzner wrote: Hello Suresh, @@ -193,9 +206,14 @@ return false; } - if (_filter != filter) - return false; + if (_filter != null) { +

RE: [Mono-dev] RE: [Mono-devel-list] System.Data : DataTable.Select performance

2005-09-20 Thread Boris Kirzner
@@ -193,9 +206,14 @@ return false; } - if (_filter != filter) - return false; + if (_filter != null) { + if (!_filter.Equals (filter)) +

Re: [Mono-dev] Memory leaks

2005-09-20 Thread Thorsten Schuett
On Friday 16 September 2005 15:34, Thorsten Schuett wrote: On Thursday 15 September 2005 19:15, Paolo Molaro wrote: On 09/15/05 Thorsten Schuett wrote: I ported a simulation from Visual C# beta 2 to mono this week. You can't really call it porting, because I only had to remove references

[Mono-dev] [Mono-devel-list] Initial ARM JIT port in svn

2005-09-20 Thread ZhangZQ
Can you tell me how to port mono to ARM. I am using the S3C2410 ARM920T CPU. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] [PATCH] Monodoc. Workaround for a bug and index improvements

2005-09-20 Thread James Willcox
Mario, I'd like to try the patch, but it seems you forgot to attach it :) On Fri, 2005-09-16 at 16:36 +0200, Mario Sopena wrote: Hello, We have a problem in Monodoc when showing big html code with gecko. Monodoc hangs and do nothing (try to load the Gtk Namespace). This is due to a bug

Re: [Mono-dev] TimeZone/RegionInfo patches

2005-09-20 Thread Kornél Pál
Hi, 2) TZ environment variable support on Win32. If TZ environment variable is set, then it uses posix-compat timezone names (its behavior depends on mingw though). I don't think that this is a good idea. Time zone is used to convert local time to UTC so if TZ contains a time zone other than

[Mono-dev] Mono Windows setup suggestions

2005-09-20 Thread Kornél Pál
Hi, As I see Windows setup was not released yet so I have some suggestions regarding the setup: 1) GDI+ is required by Mono (System.Drawing) but is not installed. GDI+ is a redistributable component so we have the right to redistribute it. Download it from:

Re: [Mono-dev] questions regarding contributing

2005-09-20 Thread Jonathan Pryor
On Wed, 2005-09-14 at 10:30 -0700, Andy Waddell wrote: The first set of issues I ran into were pieces of the class library not yet in the Mono base, but in the Beta 2 version of .NET 2.0. In each case I’ve either worked around it in our code by substituting from the 1.0 Framework or gone into

Re: [Mono-dev] TimeZone/RegionInfo patches

2005-09-20 Thread Atsushi Eno
Hi, 2) TZ environment variable support on Win32. If TZ environment variable is set, then it uses posix-compat timezone names (its behavior depends on mingw though). I don't think that this is a good idea. Time zone is used to convert local time to UTC so if TZ contains a time zone other than

Re: [Mono-dev] Mono Windows setup suggestions

2005-09-20 Thread Kornél Pál
Microsoft Layer for Unicode (unicows.dll) is a good thing (provides Unicode support on 9x without perforamce loss on NT), but binaries has to be compiled using unicows.lib. If you simply copy unicows.dll to bin directory, nothing will happen.

Re: [Mono-dev] Add some font methods to Mono.Cairo.Graphics

2005-09-20 Thread Hisham Mardam Bey
Added. On 9/20/05, John Luke [EMAIL PROTECTED] wrote: Hey, A patch to add a couple font-related methods. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Event handler assigment possible bug?

2005-09-20 Thread Jonathan Pryor
On Mon, 2005-09-19 at 11:09 -0500, Sunny wrote: Anyway, the following code compiles OK with mono 1.1.9 on SuSE 9.3, but it fails to compile under .Net, and according the ECMA C# spec, possition 8.7.5. (Events), .Net behaviour is the right one, i.e. this code should fail to compile.

Re: [Mono-dev] What versions of Windows are supported by Mono?

2005-09-20 Thread Jonathan Pryor
On Tue, 2005-09-20 at 01:32 +0200, Kornél Pál wrote: Could someone tell me the versions of Windows that are supported by Mono? NT-based versions, so NT 4.0 (maybe, I'm not entirely sure), Windows 2000, Windows XP, and Windows Server 2003. Not supported is Windows 95, 98, and ME, since Mono uses

[Mono-dev] Enabling managed collation by default

2005-09-20 Thread Atsushi Eno
Hi, Since mono 1.1.9 was released, I think it could be time to enable managed collation by default. Originally I planned to do that immediately after 1.1.9 has released, but I found some regressions on running asp.net test. Now they are gone. The attached patches are the actual changes. If you

Re: [Mono-dev] What versions of Windows are supported by Mono?

2005-09-20 Thread Francisco T. Martinez
Jonathan Pryor wrote: On Tue, 2005-09-20 at 01:32 +0200, Kornél Pál wrote: Could someone tell me the versions of Windows that are supported by Mono? NT-based versions, so NT 4.0 (maybe, I'm not entirely sure), Windows 2000, Windows XP, and Windows Server 2003. For the record, I

Re: [Mono-dev] (no subject)

2005-09-20 Thread T Sureshkumar
On Tue, Sep 13, 2005 at 12:17 pm, in message [EMAIL PROTECTED], Sridhar Kulkarni [EMAIL PROTECTED] wrote: Hi, If we have executable hello.exe created from a cs file, then to run the file we have to say mono hello.exe. I have several exe which needds to be executed to start my app. Is

Re: [Mono-dev] Mono runtime performance

2005-09-20 Thread Joe Shaw
Hi Paolo, On Thu, 2005-09-15 at 19:28 +0200, Paolo Molaro wrote: You need to _run_ it with optimizations enabled: mono -O=all,-ssapre Benchmark.exe Building with optimizations enabled has basically no effect. Is there a reason why all optimizations aren't on by default? I didn't see

Re: [Mono-dev] What versions of Windows are supported by Mono?

2005-09-20 Thread Kornél Pál
Microsoft provides little support for NT 4 because they want to make customers to update to newer versions. And of course it lacks a lot of functionality, and they don't want to spend time and money on supporting it.:) By looking at the imported functions in binaries I made the following

RE: [Mono-dev] questions regarding contributing

2005-09-20 Thread Andy Waddell
Ok, here's (hopefully) my first contribution. I've attached the patch to add a trivial 2.0 method on System.Data.SqlClient.SqlParameterCollection. --Andy Waddell -Original Message- From: Jonathan Pryor [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 20, 2005 4:12 AM To: Andy

[Mono-dev] Marshalling of strings

2005-09-20 Thread Chris Seaton
Hows marshalling of strings to native functions work in Mono and .NET in general? I can set the character set when creating a pinvoke, but only to ANSI or Unicode. What does ANSI mean? I thought ANSI was a family of character sets? What does Unicode mean exactly? UTF-16? UTF-32? What about

Re: [Mono-dev] Mono runtime performance

2005-09-20 Thread Jonathan Pryor
On Tue, 2005-09-20 at 14:09 -0400, Joe Shaw wrote: Is there a reason why all optimizations aren't on by default? I didn't see anything in the mono man page, but I suspect there has to be some tradeoff. There's a time tradeoff -- more optimizations requires more time to JIT the code, slowing

Re: [Mono-dev] Marshalling of strings

2005-09-20 Thread Jonathan Pryor
On Wed, 2005-09-21 at 00:16 +0100, Chris Seaton wrote: Hows marshalling of strings to native functions work in Mono and .NET in general? Implementation Defined comes to mind -- things differ between Mono and .NET. What does ANSI mean? I thought ANSI was a family of character sets? On Mono,