RE: [Mono-devel-list] Merging our System.Drawing

2005-08-03 Thread Jordi Mas
El dt 02 de 08 del 2005 a les 23:00 -0700, en/na Andrew Skiba va escriure: > In any case, this patch is not mine, it's only a part of the merge. > There are good chances we will write a test fixture for this class. As > you can see, I write tests for all classes I deal with - starting with > basic

RE: [Mono-devel-list] C# Threading : libgcc_s.so.1 must beinstalledfor pthread_cancel to work

2005-08-03 Thread Rafael Mizrahi
Thanks for the info, Ben, Indeed, my problem was not solved by adding export LD_ASSUME_KERNEL=2.4.19 More information on my situation: The crash occurs only on RH ES3+IBM JVM(1.4.2). On RH ES3+Sun JVM it does not occur. Rafi -Original Message- From: Ben Maurer [mailto:[EMAIL PROTECTED]

RE: [Mono-devel-list] Merging our System.Drawing

2005-08-03 Thread Andrew Skiba
Thank you. What about patches sent on Sunday, can I commit them yet? > > Please, commit the patch. Thanks for your work. > > Jordi, ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-l

[Mono-devel-list] Edit and Continue

2005-08-03 Thread David Srbecky
Hello, My name is David Srbecky and I am working on SharpDevelop 2.0 debugger. The debugger is getting nearly finished, but it is still missing one 'cool' feature - edit and continue. The support for Edit and Continue (EnC) from the side of Microsoft runtime is good enough, but there is no suppor

Re: [Mono-devel-list] Internationalisation

2005-08-03 Thread Rafael Teixeira
Hi Paul, It seems like you didn't embed or link your resources in the compilation command line, so sure it wouldn't find any resource to load at run-time... Be sure to include them when compiling. As you asked about compiling to a winexe target in another email, it seems like you didn't do your h

[Mono-devel-list] Error Building

2005-08-03 Thread Jonathan S. Chambers
I'm trying to do a build from SVN on a new machine (FC4). I got the latest from svn, and then I run the following in the mono directory: ./autogen --with-preview=yes --prefix=/home/jsc/mono_install make get-monolite-latest make I get the following error: make[5]: Entering directory `/home/cmh/m

Re: [Mono-devel-list] Error Building

2005-08-03 Thread Paul F. Johnson
Hi, > make[5]: Entering directory `/home/cmh/mcs' > *** The compiler 'mcs' doesn't appear to be usable. > *** The contents of your 'monolite' directory are out-of-date > *** You may want to try 'make get-monolite-latest' > Is it because I am trying to install to my home directory? Or is > somethi

RE: [Mono-devel-list] Error Building

2005-08-03 Thread Paul
Hi, > I have multiple users on the machine that are making modifications to > the class library (and each want their own copy). I guess I could > install to the standard location, but will that fix the issue? I'd say install to the standard location and let them link to locally built versions of

RE: [Mono-devel-list] Error Building

2005-08-03 Thread Jonathan S. Chambers
I have multiple users on the machine that are making modifications to the class library (and each want their own copy). I guess I could install to the standard location, but will that fix the issue? - Jonathan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

RE: [Mono-devel-list] Error Building

2005-08-03 Thread Jonathan S. Chambers
I am now installing to the default location, i.e. ./autogen --with-preview=yes make get-monolite-latest make and I still get the error. - Jonathan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan S. Chambers Sent: Wednesday, August 03, 2005 2:0

[Mono-devel-list] patch for Unicode Normalization support

2005-08-03 Thread Atsushi Eno
Hello, As mentioned in the managed collation thread, I have been writing Unicode Normalization support (String.Normalize() and .IsNormalized() for NET_2_0 build), and today I have finished the implementation (except for possible bugfixing). The attached patches are required. I packed C header whi

[Mono-devel-list] [PATCH] Build fixes for win32

2005-08-03 Thread Gert Driesen
Hi, I've attached a patch that fixes the Mono build on win32 (using csc). The largest part of the patch are build changes for the Mono security tools that are needed to ensure the relative path to MonoVersion.cs is resolved corrected on Windows. I'm pretty sure someone can do a much better job at

[Mono-devel-list] [PATCH] Build fixes for win32 (with patch ;-))

2005-08-03 Thread Gert Driesen
Yeah, so here's the actual patch ;-) > -Original Message- > From: Gert Driesen [mailto:[EMAIL PROTECTED] > Sent: woensdag 3 augustus 2005 22:03 > To: 'mono-devel-list@lists.ximian.com' > Subject: [PATCH] Build fixes for win32 > > Hi, > > I've attached a patch that fixes the Mono build o

RE: [Mono-devel-list] Error Building

2005-08-03 Thread Paul
Hi, > I am now installing to the default location, i.e. > > ./autogen --with-preview=yes > make get-monolite-latest > make > > and I still get the error. Follow the instructions here http://www.all-the-johnsons.co.uk/mono/mono-compiling.html Many find it useful. TTFN Paul -- "Some people w

RE: [Mono-devel-list] Error Building

2005-08-03 Thread Jonathan S. Chambers
Thanks Paul. Unfortunately, that's what I'm going by :-( A few others have emailed me to say they have the same problem. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Sent: Wednesday, August 03, 2005 4:16 PM To: mono-devel Subject: RE: [Mono-deve

RE: [Mono-devel-list] Error Building

2005-08-03 Thread Paul
Hi, > Thanks Paul. Unfortunately, that's what I'm going by :-( Ouch. What you might find useful is to manually download mono-lite and install it into --prefix=/usr rather than anywhere else. > A few others have emailed me to say they have the same problem. Which distro are you using? I know it

RE: [Mono-devel-list] Error Building

2005-08-03 Thread Jonathan S. Chambers
I'm on FC4. I also have a 64-bit Opteron machine with FC4. Its working fine though... I really can't think of much different between the two since I don't have much on them (their sole existence is for mono hacking). - Jonathan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PRO

RE: [Mono-devel-list] Error Building

2005-08-03 Thread Jackson Harper
On Wed, 2005-08-03 at 21:16 +0100, Paul wrote: > Hi, > > I am now installing to the default location, i.e. > > > > ./autogen --with-preview=yes > > make get-monolite-latest > > make > > FYI, with-preview=yes does not need to be specified as the default is now yes. TTFNF, Jackson __

[Mono-devel-list] [PATCH] monodis and JScript.NET assemblies

2005-08-03 Thread Jb Evain
Hello there, The SVN version of monodis can not read assemblies compiled using a JScript.NET compiler. Those compilers emit methods that have parameters defined in the method's signature, but not in the Param table. Could someone review the attached patch and tell me if I can commit ? Th

[Mono-devel-list] [PATCH] MCS Spelling Mistake

2005-08-03 Thread Elliott Draper
Hi all, Not a big problem, but nice and easy to fix; this corrects a spelling error in the errors displayed by the compiler (mcs/gmcs) when a strong name key file is specified, but it is either invalid, or missing. I got it the other day when I specified the path to a strong name key file inc

[Mono-devel-list] Difference behaviour between Mono and .NET

2005-08-03 Thread Ernas M. Jamil
I found there is difference behaviour between Mono and .NET on handling dataset that filled from joined query and does not have spesific primary key. Here is my test case: -- String connectionString = null; MySqlConnection con; try { connectionString =

[Mono-devel-list] Re: [Mono-patches] r47921 - trunk/mcs/gmcs

2005-08-03 Thread Carlos Alberto Cortez
Hey Martin, What errors did you receive? Before I commited this patch I ran all the tests and all the error (mcs/tests, mcs/errors(), and even built my tree without problems. Thanks, Carlos. El mar, 02-08-2005 a las 12:33 -0400, Martin Baulig escribió: > Author: martin > Date: 2005-08-02 12:33:1

[Mono-devel-list] [PATCH] Check for assembly attributes

2005-08-03 Thread Carlos Alberto Cortez
Hey, A patch is attached, containing a check for InternalsVisibleToAttribute, when it is applied to an assembly. It reports a warning or shows an error, just like csc does. Carlos. Index: ChangeLog === --- ChangeLog (revisión: 47987)

Re: [Mono-devel-list] Difference behaviour between Mono and .NET

2005-08-03 Thread Ben Maurer
On Thu, 2005-08-04 at 09:38 +0700, Ernas M. Jamil wrote: > I found there is difference behaviour between Mono and .NET on handling > dataset > that filled from joined query and does not have spesific primary key. > > Here is my test case: > > -- > String conne

Re: [Mono-devel-list] [PATCH] Check for assembly attributes

2005-08-03 Thread Ben Maurer
On Wed, 2005-08-03 at 20:55 -0500, Carlos Alberto Cortez wrote: > Hey, > > A patch is attached, containing a check for InternalsVisibleToAttribute, > when it is applied to an assembly. It reports a warning or shows an > error, just like csc does. > + if (t.Equals (typeof

Re: [Mono-devel-list] [PATCH] monodis and JScript.NET assemblies

2005-08-03 Thread Ankit Jain
Hi, The patch skips any marshal info for the return type parameter. Also, the case that monodis isn't able to handle is when there are no rows at all in the param table for the method, but method has parameters. I was handling only the case when rows for some params were missing. Attached is a pr

RE: [Mono-devel-list] make distcheck problems / autogen.sh?

2005-08-03 Thread IT2003_1: Morenz, Tino
>I don't remember the actual automake tests, but you may have a look at >tar.m4 that comes with it, and see what it accepts. > >As a quick first step, can you edit the line in mono/configure.in that >reads > > m4_ifdef([_A][M_PROG_TAR],[_A][M_SET_OPTION([tar-ustar])]) > >change the 'tar-ustar' to