Re: [Mono-dev] System.Unix.Native.Syscall.fork is commented out

2008-09-09 Thread Massimiliano Mantione
On Wed, 2008-09-03 at 12:23 -0400, Avery Pennarun wrote: So my next question then is: is there any way to get mono to *not* use threads unless you explicitly ask it to do so? It seems like just the GC and JIT are threads right now, right? Actually I don't know enough to even describe why

[Mono-dev] Any chance of getting a VMware recording? Mono 2.0 RC1 is out

2008-09-09 Thread Dennis Hayes
Any chance of getting a VMware recording?I have some apps I would like to test that had issues in earlier versions, but finding time to do an install will be difficult.Thanks,Dennis   We've just released Mono 2.0 RC1 today! Please help us out by giving it a try with your applications.

Re: [Mono-dev] Any chance of getting a VMware recording? Mono 2.0 RC1 is out

2008-09-09 Thread Daniel Nauck
Hello, checkout the Snapshots VMWare Image here at the bottom of the page: http://www.mono-project.com/Other_Downloads#Snapshots Daniel Dennis Hayes schrieb: Any chance of getting a VMware recording? I have some apps I would like to test that had issues in earlier versions, but

[Mono-dev] Unable to build MD 1.9 against RC 1

2008-09-09 Thread Paul
Hi, I'm in the process of rebuilding a number of packages for Fedora and seem to have hit a snag with MD 1.9 and Mono 2.0 RC 1. It could be a mono problem or an MD one, so I'll report it here then if needs be BZ it against MD or mono. First the minor one Parser/mcs/mcs/attribute.cs is giving a

Re: [Mono-dev] Unable to build MD 1.9 against RC 1

2008-09-09 Thread Andrés G. Aragoneses
Paul wrote: Hi, I'm in the process of rebuilding a number of packages for Fedora and seem to have hit a snag with MD 1.9 and Mono 2.0 RC 1. It could be a mono problem or an MD one, so I'll report it here then if needs be BZ it against MD or mono. First the minor one

Re: [Mono-dev] Unable to build MD 1.9 against RC 1

2008-09-09 Thread Paul
Hi, MD 1.9-5 is already in Fedora Rawhide, so it seems this problem may be more a mono one than MD. So it's likely you have an old tarball. Thanks - I'm using the one from the MD website, so that would probably explain things :-) TTFN Paul -- Sie können mich aufreizen und wirklich heiß

[Mono-dev] Unable to run monodoc (Mono 2.0 RC 1 problem)

2008-09-09 Thread Paul
Hi, I've rebuilt mono-tools and monodoc against the new RC 1 release and now am seeing the following when I run monodoc from the command line monodoc using Gecko using Gecko Stacktrace: at (wrapper managed to native) Gtk.Notebook.gtk_notebook_set_current_pahe(intptr, int) 0x4 at (wrapper

Re: [Mono-dev] BitVector32 patch

2008-09-09 Thread Rodrigo Kumpera
Hi Scott, Your patch mixes formating with real changes, which is not a nice thing, but given it's size, I'll review it anyway. But, please, mixing many diferent kind of changes in the same patch will only cause frustration for everyone. For the contributor for having a long review time or,

[Mono-dev] Is Moma (Mono migration analyzer) available for mono 2.0 rc1 version?

2008-09-09 Thread marcos b
Is Moma (Mono migration analyzer) available for mono 2.0 rc1 version? Thanks -- View this message in context: http://www.nabble.com/Is-Moma-%28Mono-migration-analyzer%29-available-for-mono-2.0-rc1-version--tp19392072p19392072.html Sent from the Mono - Dev mailing list archive at Nabble.com.

[Mono-dev] Typed dataset binary serialization

2008-09-09 Thread marcos b
When trying to serialize a typed datasets with mono using binary formatter using binary remoting format i get a IndexOutOfRangeException. The same code runs perfectly on .net runtime. (I compiled the code using vs2005) static void Main(string[] args) { DataSet1 ds = new DataSet1();

Re: [Mono-dev] Is Moma (Mono migration analyzer) available for mono 2.0 rc1 version?

2008-09-09 Thread Jonathan Pobst
Not officially. There is a preview available here: http://jpobst.com/moma2-0.zip Note that report submission is disabled in this version. Jonathan marcos b wrote: Is Moma (Mono migration analyzer) available for mono 2.0 rc1 version? Thanks ___

Re: [Mono-dev] Unable to build MD 1.9 against RC 1

2008-09-09 Thread Andrew Jorgensen
Hi Paul, The MD developers want MD 1.9 to be treated as an Alpha product. We'll be using 1.0 (+ some patches I'd be happy to share, from the 1.0 branch) for openSUSE 11.0. Certainly if you are going to use 1.9 you'd want to pick up fixes from the 1.9 branch. It's a funny thing, really, because

Re: [Mono-dev] Unable to run monodoc (Mono 2.0 RC 1 problem)

2008-09-09 Thread Andrew Jorgensen
We don't see this problem using gtk# 2.12.2 Unfortunately there are other problems with 2.12.2, you may want to use 2.12.3 when it gets released (hopefully today). Paul [EMAIL PROTECTED] 09/09/08 5:11 AM Hi, I've rebuilt mono-tools and monodoc against the new RC 1 release and now am seeing

[Mono-dev] [PATCH] System.Diagnostics/Process fix

2008-09-09 Thread Bill Holmes
Hello All, The attached patch fixes some problems I was having with Process.ErrorDataReceived and Process.BeginErrorReadLine. There are actually two fixes here. The most critical is that the fields of ProcessAsyncReader dd not match MonoSocketAsyncResult. The second part removes the extra '\r'

Re: [Mono-dev] Mono on ARM

2008-09-09 Thread FirstName LastName
I noticed there was some kind of test under the mini folder named basic-float.cs. I noticed that some tests do exactly why my app test does. I ran the tests and noticed that all tests that want to convert a long to double fail, which is my problem. When running on the ARM, I added a trace

Re: [Mono-dev] [PATCH] System.Diagnostics/Process fix

2008-09-09 Thread Rodrigo Kumpera
Hey Bill, The fix to sync ProcessAsyncReader fields looks ok. If it's not abusing of your good will. Please add some comments to Process.cs, Sockets.cs and socket-io.h mentioning this needs to be sync'ed in 3 places. About stripping the '\r', won't that cause problems on unix machines? Thanks,

Re: [Mono-dev] Mono on ARM

2008-09-09 Thread Rodrigo Kumpera
The 2.0 release has some issues with soft-float. It shoule be due to the way we convert float ops to soft-float calls. On Tue, Sep 9, 2008 at 4:51 PM, FirstName LastName [EMAIL PROTECTED]wrote: I noticed there was some kind of test under the mini folder named basic-float.cs. I noticed that

Re: [Mono-dev] [PATCH] System.Diagnostics/Process fix

2008-09-09 Thread Bill Holmes
If it's not abusing of your good will. Please add some comments to Process.cs, Sockets.cs and socket-io.h mentioning this needs to be sync'ed in 3 places. I was thinking the same thing. I will add that. About stripping the '\r', won't that cause problems on unix machines? I will have to

Re: [Mono-dev] [PATCH] System.Diagnostics/Process fix

2008-09-09 Thread Rodrigo Kumpera
On Tue, Sep 9, 2008 at 5:56 PM, Bill Holmes [EMAIL PROTECTED] wrote: If it's not abusing of your good will. Please add some comments to Process.cs, Sockets.cs and socket-io.h mentioning this needs to be sync'ed in 3 places. I was thinking the same thing. I will add that. About

[Mono-dev] Updated compiler syntax error checking.

2008-09-09 Thread Miguel de Icaza
Hey folks, We updated the C# compiler to produce better information when it encounters an error with statements or expressions. In the past the compiler would report Expecting a ';' character whenever it found a syntax error. We should now be able to report the actual expected character

[Mono-dev] XML - not sure if I've got this right

2008-09-09 Thread Paul
Hi, I have a small routine which takes a name and group and then reads an XML file. The code is this public string dotheread(string ident, int group) { XmlReaderSettings settings = new XmlReaderSettings(); XmlReader reader = XmlReader.Create(conpath, settings, null);

Re: [Mono-dev] XML - not sure if I've got this right

2008-09-09 Thread Petit Eric
Hi I have writted some XML clas (Read/Write cs) for MonoOSC, perhap's you can have a look on it if it can help yu : http://monoosc.svn.sourceforge.net/viewvc/monoosc/MonoOSC/MonoOSCFramework/Class/ Le 10 septembre 2008 00:40, Paul [EMAIL PROTECTED] a écrit : Hi, I have a small routine which

Re: [Mono-dev] XML - not sure if I've got this right

2008-09-09 Thread Petit Eric
2008/9/10 Petit Eric [EMAIL PROTECTED]: Hi I have writted some XML clas (Read/Write cs) for MonoOSC, perhap's you can have a look on it if it can help yu : http://monoosc.svn.sourceforge.net/viewvc/monoosc/MonoOSC/MonoOSCFramework/Class/ I forget this, i also build the doc in VS style :

Re: [Mono-dev] BitVector32 patch

2008-09-09 Thread Scott Peterson
Sorry about the mixed objectives. I figured it was a short enough patch that it would be easier to review all at once, rather than sending two or three little patches to the list. Thanks for reviewing it anyway, Rodrigo. Index: class/System/System.Collections.Specialized/BitVector32.cs

Re: [Mono-dev] BitVector32 patch

2008-09-09 Thread Rodrigo Kumpera
On Tue, Sep 9, 2008 at 8:09 PM, Scott Peterson [EMAIL PROTECTED]wrote: Sorry about the mixed objectives. I figured it was a short enough patch that it would be easier to review all at once, rather than sending two or three little patches to the list. Thanks for reviewing it anyway, Rodrigo.

Re: [Mono-dev] BitVector32 patch

2008-09-09 Thread Scott Peterson
Committed. Style changes worth the commit? ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list