Re: [Mono-dev] Non-TCP/IP socket access

2011-08-04 Thread Andy Hume
-Original Message- From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list-boun...@lists.ximian.com] On Behalf Of Andy Hume Sent: 27 July 2011 22:47 To: 'Robert Jordan'; mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Non-TCP/IP socket access

Re: [Mono-dev] Non-TCP/IP socket access

2011-08-04 Thread Robert Jordan
Hi Andy, On 04.08.2011 12:58, Andy Hume wrote: -Original Message- From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list-boun...@lists.ximian.com] On Behalf Of Andy Hume Sent: 27 July 2011 22:47 To: 'Robert Jordan'; mono-devel-list@lists.ximian.com Subject: Re:

[Mono-dev] Oracle's ODP.NET database provider on Mono

2011-08-04 Thread Daniel Morgan
Sorry for the cross-posting, but I sent this email to the wrong list.  monodevelop-list and mono-devel-list have similar names. - Forwarded Message - From: Daniel Morgan monodanm...@yahoo.com To: monodevelop-l...@lists.ximian.com monodevelop-l...@lists.ximian.com Sent: Wednesday, August

[Mono-dev] Brian D Low is out of the office.

2011-08-04 Thread Brian . D . Low
I will be out of the office starting 08/04/2011 and will not return until 08/10/2011. I will be out of the office fromThursday, August 4th. I will return on the 10th at 7:45am. If this is important please call Kristian or Paul at 808-587-1437, or Robert Aquino at 808-587-1780. Thanks, Brian

[Mono-dev] `System.Threading.ThreadPool' does not contain a definition for `UnsafeQueueUserWorkItem'

2011-08-04 Thread igouy
$ ./configure --prefix=/usr/local/src/mono-2.10.3 --with-sgen=yes --with-xen-opt=no --with-ikvm-native=no --with-moonlight=yes --with-moon-gc=sgen $ make ... System.Threading/Timer.cs(341,68): error CS0117: `System.Threading.ThreadPool' does not contain a definition for `UnsafeQueueUserWorkItem'

Re: [Mono-dev] `System.Threading.ThreadPool' does not contain a definition for `UnsafeQueueUserWorkItem'

2011-08-04 Thread Sebastien Pouliot
Moonlight development was made on 'master', not 'mono-2-10' so it looks like something was half-backported. It also means that there's no point in building with --with-moonlight=yes using 'mono-2-10' branch (--with-moon-gc too). Sebastien Le 2011-08-04 à 17:22, igouy igo...@yahoo.com a écrit :

Re: [Mono-list] Scope of MainWindow methods Stetic created widgets

2011-08-04 Thread Ian Norton
Hello, So, MainWindow has an instance of an RTDFile object and you want it to be able to set properties on the MainWindow? I would either pass the RTDFile object your MainWindow class or supply it with a callback ( a delegate such as Action ) that it can call when it needs How's that

Re: [Mono-list] Scope of MainWindow methods Stetic created widgets

2011-08-04 Thread Ian Norton
You could even pass RTDFile the StatusBar object so not to tie it to your MainWindow On 4 Aug 2011, at 07:24, Ian Norton ian.norton-bad...@thales-esecurity.com wrote: Hello, So, MainWindow has an instance of an RTDFile object and you want it to be able to set properties on the

Re: [Mono-list] Porting MSBuild script to XBuild with ItemGroup

2011-08-04 Thread Nils Andresen
Hi 2011/8/4 Mike Christensen m...@kitchenpc.com: What's the best way to port this code over:  Target Name=Build    [...]    ItemGroup [...]  : error : Error initializing task ItemGroup: Not registered task ItemGroup. This is a known bug. See

Re: [Mono-list] Porting MSBuild script to XBuild with ItemGroup

2011-08-04 Thread Mike Christensen
This won't work because I include items that are not yet created until after the target runs.. In other words, if I say: Project ItemGroup Include=Foo*.* / ... Then this ItemGroup gets populated before the Target runs. If Target then goes and creates Foo1.txt and Foo2.txt, those items won't

Re: [Mono-list] Porting MSBuild script to XBuild with ItemGroup

2011-08-04 Thread Mike Christensen
Oh I think I misread your email.. Looks like the CreateItem task can actually add things to an existing ItemGroup within a Target? If that's the case, that'll probably fix my issue.. Can we bump the priority up on this bug though? It looks pretty old.. I'm still trying to get a Mono

Re: [Mono-list] RemoveDir - XBuild vs MSBuild

2011-08-04 Thread Mike Christensen
https://bugzilla.novell.com/show_bug.cgi?id=710234 https://bugzilla.novell.com/show_bug.cgi?id=710238 These bugs will still get a home with Novell no longer in the picture, correct? Mike On Wed, Aug 3, 2011 at 7:09 PM, Mike Christensen m...@kitchenpc.com wrote: I'll get this filed right away,

Re: [Mono-list] Porting MSBuild script to XBuild with ItemGroup

2011-08-04 Thread Mike Christensen
(For thread archive purposes since I hate finding a thread on Google with my exact same problem and no one ever bothered to post the solution) Here's the XBuild compatible way of doing what I had below: CreateItem Include=$(BuildDir)/WWW/Scripts/kpc*.js;$(BuildDir)/WWW/Styles/*.css Output

[Mono-list] Dictionary key'ed by Decimal works differently between Mono and .NET

2011-08-04 Thread Mike Christensen
I'm trying to get my unit tests to pass so I can try out my code on Mono, however I ran into some different behavior using the Dictionary class. I've written a stand-alone test case to illustrate the problem. http://pastie.org/2318806 The code will print out True on .NET and False on Mono. I

Re: [Mono-list] Dictionary key'ed by Decimal works differently between Mono and .NET

2011-08-04 Thread Robert Jordan
On 04.08.2011 11:09, Mike Christensen wrote: I'm trying to get my unit tests to pass so I can try out my code on Mono, however I ran into some different behavior using the Dictionary class. I've written a stand-alone test case to illustrate the problem. http://pastie.org/2318806 The code

Re: [Mono-list] Dictionary key'ed by Decimal works differently between Mono and .NET

2011-08-04 Thread Gareth Pearce
On 4/08/2011 8:04 PM, Robert Jordan wrote: On 04.08.2011 11:09, Mike Christensen wrote: I'm trying to get my unit tests to pass so I can try out my code on Mono, however I ran into some different behavior using the Dictionary class. I've written a stand-alone test case to illustrate the

Re: [Mono-list] Dictionary key'ed by Decimal works differently between Mono and .NET

2011-08-04 Thread Robert Jordan
On 04.08.2011 12:14, Gareth Pearce wrote: Looks like you have a typo - that should be 0.5m assigned to a? Yes, thanks :) It turns out that Mono's Decimal.GetHashCode is buggy: using System; class Test { static void Main () { decimal a = 0.5m;

[Mono-list] Application not respecting MONO_EVENTLOG_TYPE environment variable?

2011-08-04 Thread Emil
Hi, I have a web service running that likes to event log every once in a while (it was originally written to run under IIS). I have experimented with various ways of setting the MONO_EVENTLOG_TYPE environment variable to no avail. I am running mod_mono on Apache 2.2.3 (Red Hat) on RHEL 5.4 with

Re: [Mono-list] Scope of MainWindow methods Stetic created widgets

2011-08-04 Thread jimevt
Hello Ian! Thanks for your replies! I tried creating a delegate for the SetStatus() method of the MainWindow, but I couldn't get it to work. If I remember correctly, it was requiring that the SetStatus() method be static which is a problem. I can see where passing the MainWindow (

Re: [Mono-list] Google Native Client support questions

2011-08-04 Thread Doug
Look here: http://lists.ximian.com/pipermail/mono-devel-list/2011-February/036980.html https://github.com/elijahtaylor/mono Yes, I also think this is cool. :) ~ Doug. On Wed, Aug 3, 2011 at 10:30 PM, Stifu st...@free.fr wrote: Hmm, the way I see it, whether Chrome gets reimplemented as a NaCl

Re: [Mono-list] Scope of MainWindow methods Stetic created widgets

2011-08-04 Thread jimevt
Hello Again, Well, passing the MainWindow into the RTDFile constructor does work, though it doesn't seem like the correct way to do things. Callbacks - I was thinking of signal handlers, which aren't the same thing at all. Can you refer me to documentation on creating a call back?

Re: [Mono-list] Where Did The Gtk# API Documentation Go?

2011-08-04 Thread Doug Blank
On Mon, Aug 1, 2011 at 6:53 PM, Andres G. Aragoneses kno...@gmail.com wrote: The most recent contributors usually hang out in IRC (irc.gnome.org) channel #gtk#. We are lately very busy finishing up gtk# v3.0 which will have API compatibility with gtk v3.x stack. So busy that we haven't found

[Mono-list] Many processed end with the message Terminated (Abgebrochen)

2011-08-04 Thread Yves Goergen
Hi, I'm running Ubuntu 10.4 Lucid which comes with Mono 2.4.4. I have now upgraded an application of mine from .NET 2.0 to .NET 4.0 and so I needed a newer Mono version. I was pointed to one here [1]. Now I have installed Mono 2.10.1. Everything went fine so far, and my .NET 2.0-based application

Re: [Mono-list] Many processes end with the message Aborted (Abgebrochen)

2011-08-04 Thread Yves Goergen
On 04.08.2011 21:52 CE(S)T, Yves Goergen wrote: But many times (I couldn't find the scheme but it is reproducible) when a process ends normally, I get the message Terminated (in German: Abgebrochen, I hope the English name is correct) in my terminal window. No more messages, just that one

[Mono-list] P/Invoke return MonoObject*

2011-08-04 Thread Xavier Amado
I'm currently experimenting with embedding mono into a C++ project. Most of the C++ portion of the code is in a C++ DLL, while the Application just links against this dll. I've been using P/Invoke to call stuff from the library and everything is working fine, except when I want to return a