Re: [Mono-dev] [Patch] AssemblyName ctor

2005-08-20 Thread Andreas Nahr
There is a case-insensitive ordinal compare in .Net 2.0 that you should use. If you use InvariantCulture you get a linguistic comparison based on the invariant culture. However these strings don't look like any natural language text that needs natural language processing. It will also construct

[Mono-dev] Some info on the compiler

2005-08-20 Thread Eduard Ralph
Hi, Im looking for some details on the mono compiler. I would like to expand it with some keywords, etc basicly rework it. Figuring out the parser part was pretty straight forward, but some help on the actual emitting of code would be great. It would be quite some help if the

Re: [Mono-dev] patches for RegionInfo support

2005-08-20 Thread Paolo Molaro
On 08/17/05 Atsushi Eno wrote: I mostly copied those icall code from CurrentCulture support, but one thing I don't understand is NUM_CACHED_CULTURES ... why it is set as 4? Is it safe to guess NUM_CACHED_REGIONS 4 as well? I would store a single copy, ie not an array of objects, since nobody

Re: [Mono-dev] [PATCH] metadata/class.c

2005-08-20 Thread Paolo Molaro
On 08/20/05 Jb Evain wrote: Working on generating images with Cecil, I've noticed a bug in the class creation process, that leads Mono to crash. The crash is due to the fact that Mono is trying to read a base class for interfaces. Is this because of a buggy image you created? Please

Re: [Mono-dev] Re: GC segfault on ARM

2005-08-20 Thread Paolo Molaro
On 08/18/05 IT2003_1: Morenz, Tino wrote: Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 16384 (LWP 32700)] GC_push_all_eager (bottom=0x0, top=0x1990a8 ) at mark.c:1468 [...] I get the same error on a x86 box running QNX. [...] So when the GC is scanning through

Re: [Mono-dev] [PATCH] Minor Convert.FromBase64String fixes

2005-08-20 Thread Paolo Molaro
On 08/19/05 Gert Driesen wrote: The attached patch fixes the following issues with Convert.FromBase64String (and adds unit tests): - A zero-length byte array must be returned if a zero-length string is passed in - On the 2.0 profile, a zero-length byte array must be returned if

Re: [Mono-dev] Need help with signal handlers.

2005-08-20 Thread Mike Hull
Jonathan Pryor wrote: On Fri, 2005-08-19 at 15:43 -0700, Mike Hull wrote: I'm trying to pass signals received with signal.h into managed code. After I mono_runtime_exec_managed_code I can not receive signals using signal(sig,signal_handler). If I don't mono_runtime_exec_managed_code I

Re: [Mono-dev] Re: [Mono-devel-list] [Patch] Publisher Policy support

2005-08-20 Thread Carlos Alberto Cortez
Hey Paolo, Thanks for the comments. I will be commiting today. Carlos. El sáb, 20-08-2005 a las 15:50 +0200, Paolo Molaro escribió: On 08/17/05 Carlos Alberto Cortez wrote: the attached patch works ok, and applies the last suggestions you did. Please commit, _after_ fixing the coding

[Mono-dev] Mono Compile Error in Solaris 8

2005-08-20 Thread Nit Bha
Hey guys, I am trying to compile mono on solaris 8, and the the config is running just fine. When I run a make I get the following error messages. I can't seem to figure out what is the problem. I have been looking into what libtool does, but I am not sure if its supposed to create

Re: [Mono-dev] Mono Compile Error in Solaris 8

2005-08-20 Thread Zoltan Varga
Hi, This line: false cru .libs/libmonogc.a .libs/allchblk.o .libs/alloc.o .libs/blacklst.o should read: ar cru This suggests that your system does not have a suitable 'ar' tool installed, or the configure script can't find it.

[Mono-dev] Sorry about asking this

2005-08-20 Thread Buddy Lindsey
I am fairly new to .NET development. I have done some stuff with MS.NET and really enjoy it. I recently started playing with mono on linux and only found some basic tutorials that show making a window and button. The problem is I don't know how to resize the button or put it in a specific

Re: [Mono-dev] Mono Compile Error in Solaris 8

2005-08-20 Thread Nit Bha
To: Zoltan Varga [EMAIL PROTECTED] Subject: Re: [Mono-dev] Mono Compile Error in Solaris 8 Cc: mono-devel-list@lists.ximian.com ahh.. worked wonders! found ar and included it in my path. thanks! I have a few more errors now though! :( I have glib 2.6.2 installed from sunfreeware and I am

[Mono-dev] the c# compiler code

2005-08-20 Thread Eduard Ralph
Hi, Im currently working on expanding the c# compiler for my personal syntax. (the /mcs code, not gmcs). As part of that I noticed that the compiler code is a bit messy and not well documented. I would touch up the code I run into while working on my own expansion. That would require