Re: [Mono-dev] Bug 470120 - Socket.EndSend unexpectedly fails with WSAEWOULDBLOCK

2010-06-10 Thread yoni shalom
shameless ping... On Mon, Jun 7, 2010 at 11:03 AM, yoni shalom silve...@gmail.com wrote: Does anyone know the status of this bug ? It was found in 2.4.x, theres a patch there but it hasn't seen its way into trunk, can someone take a look please ?

[Mono-dev] Unable to build Mono from trunk r158797 because of errors in Microsoft.CSharp

2010-06-10 Thread Alexander M. Batishchev
Hi everybody. What can I do to successfully build current trunk, r158797 I did next: $ make uninstall make clean $ make get-monolite-latest $ ./autogen.sh --prefix=/usr $ make But nothing helps. Every time the same error: make[8]: Entering directory

Re: [Mono-dev] Unable to build Mono from trunk r158797 because of errors in Microsoft.CSharp

2010-06-10 Thread Roman Procopie
Hi, I did the following 1. Downloaded libgdiplus and mono 2.6.4 2. for each of them ./configure at this point you will need to install a few more packages, until configure stops complaining 3. make 4. make install now you must have 2.6.4 working. I suspect you can easily use a packaged mono as

Re: [Mono-dev] Bug 470120 - Socket.EndSend unexpectedly fails with WSAEWOULDBLOCK

2010-06-10 Thread Alan McGovern
So the patch fixes the Begin/EndSend issue but breaks BeginConnect? Maybe that's a good reason to not commit the patch until the issue with BeginConnect is fixed. Would you be capable of diagnosing andor fixing the issue or do we need another OSX guy to look at it? You should probably add

[Mono-dev] Mono.CSharp.Evaluator questions

2010-06-10 Thread Jordi Mas
Hello, I'm using Mono.CSharp.Evaluator and I have two questions. I'll appreciate if you can help me on this ones. 1) You cannot do something like this: str = using System;; str += Console.WriteLine (\Hello\);; Evaluator.Run (str); but this works: str = using System;; Evaluator.Run (str); str

Re: [Mono-dev] Mono.CSharp.Evaluator questions

2010-06-10 Thread Miguel de Icaza
Hello, 1) You cannot do something like this: Correct; Using statements are parsed independently of expressions, you can not do this. The reason is that you need to evaluate either declarations or expression/statements and using clauses are not expression/statements. 2) The method

Re: [Mono-dev] Mono.CSharp.Evaluator questions

2010-06-10 Thread Jordi Mas
Hello, They should be separated by a newline, I find it strange that it is not there, the actual strings is: sb.AppendFormat ({0} {1} = {2}, fi.Item1.MemberType.GetSignatureForError (), de.Key, value); sb.AppendLine (); Oh, cool. I'm using Mono 2.4.4 (the default included in