[Mono-dev] mono-tools and monodevelop in f10

2009-01-28 Thread Paul
Hi, I've more or less completed the update build for f10 to be using mono-2.2. Unfortunately, I can't build mono-tools or monodevelop for f10 as my box is running mono-2.4 from rawhide and for some reason, this breaks the build of both of these packages. I've attempted to build in mock, but get n

[Mono-dev] mini-OS patches.

2009-01-28 Thread Miguel de Icaza
Hello folks, For the sake of better supporting proprietary operating systems, we need to split some of the functionality that today lives inside #ifdefs in mini.c The current patch splits out the OS-specific functionality into three files mini-darwin.c, mini-posix.c and mini-windows.c, th

[Mono-dev] Differences in Exception handling on Win32 vs Win64

2009-01-28 Thread Miguel de Icaza
Hello, While doing some of the refactoring work for the mini-OS work, I noticed that we have code that could be moved into mini-windows.c in the exceptions-x86.c and exceptions-amd64.c, the code is almost identical, the difference is that exceptions-x86.c supports a "restore_stack helper":

[Mono-dev] Cross-compiling regression tests.

2009-01-28 Thread Mariner, David
Hi, I'm cross-compiling the mips build of mono, but am having stability issues. I'd like to run the regression tests, but am can't get basic.exe to build. Currently I have the following config setup: - ./autogen.sh --prefix=/dmariner/release --host=mipsel-linux-uclibc --disable-shared-h

Re: [Mono-dev] Enable mdb generation?

2009-01-28 Thread Miguel de Icaza
> i'm trying to implement > ServicePointManager.ServerCertificateValidationCallback, but the > HttpClientStream class is absolutely not doing what i expect. How can i > enable > mdb file generation when building mono to debug the program flow ? Pass the -debug option to the compiler. Like th

[Mono-dev] Variables from mcs

2009-01-28 Thread Mudit Vaidya
Hi How can I get the names and types of variables in a file compiled by mcs ? I have built mono from source and then I use 'mono mcs.exe hello.cs' to compile the file. Thanks ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lis

Re: [Mono-dev] [PATCH] Uri.IsWellFormedUriString should not throw an exception.

2009-01-28 Thread Miguel de Icaza
Hello! This looks fine; Can you commit to trunk and 2-4? > Hello Miguel, > > Thanks for taking a closer look at this. I have attached another > patch that should work. > > -bill > > On Wed, Jan 28, 2009 at 9:28 AM, Miguel De Icaza wrote: > > Hello, > > > >> 1) MonoTests.System.UriTest3.I

Re: [Mono-dev] [PATCH] Enable TLS for PPC32/64

2009-01-28 Thread Steven Munroe
On Wed, 2009-01-28 at 16:46 +0100, Paolo Molaro wrote: > On 01/25/09 Steven Munroe wrote: > snip > > > @@ -664,21 +890,29 @@ > > isync > > } > > #else > > - if (1) { > > - for (p = start; p < endp; p += cachelineinc) { > > - asm ("dcbf 0,%0;" : : "r"(

[Mono-dev] Thread safety of System.Net.Sockets.Socket

2009-01-28 Thread k0l0b0k.void
Hi guys, I have little question: MSDN documentation tells that any instance member of Socket class is thread-safe (http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.aspx). But according to Mono documentation (http://www.go-mono.com/docs/index.aspx?link=T%3ASystem.Net.Sockets.L

Re: [Mono-dev] [PATCH] Uri.IsWellFormedUriString should not throw an exception.

2009-01-28 Thread Bill Holmes
Hello Miguel, Thanks for taking a closer look at this. I have attached another patch that should work. -bill On Wed, Jan 28, 2009 at 9:28 AM, Miguel De Icaza wrote: > Hello, > >> 1) MonoTests.System.UriTest3.IsWellFormedUriString_BadUriKind : >> System.ArgumentException was expected > > It see

Re: [Mono-dev] [PATCH] Enable TLS for PPC32/64

2009-01-28 Thread Paolo Molaro
On 01/25/09 Steven Munroe wrote: > What you consider superfluous addresses an annoying bug where the > mkbundle generates code that can never be assembled and results in a 2GB > a.out file. This is a result of brain-dead code the than can't handle > biarch builds (where the build is for the non-def

Re: [Mono-dev] [PATCH] Uri.IsWellFormedUriString should not throw an exception.

2009-01-28 Thread Miguel De Icaza
Hello, > 1) MonoTests.System.UriTest3.IsWellFormedUriString_BadUriKind : > System.ArgumentException was expected It seems that all we have to do is make sure that we do validate the UriKind value that is passed to IsWellFormedUriString. This test in particular passes a value that is out of ran