Re: [Mono-dev] signal.c cross-thread access

2009-02-20 Thread tim.jenks
The test for 64 signals passed to WaitAny, and the bounds check in the WaitAny entry point, is to guard against overrunning the bounds of a new pollfd array of NUM_SIGNALS length: + struct pollfd fd_structs[NUM_SIGNALS]; + if (count NUM_SIGNALS) I don't have an account to commit, so

Re: [Mono-dev] Mono Develop native menus on Mac OS X

2009-02-20 Thread marc hoffman
Michael, yes. what i meant was that if i remapped, say Ctrl+C to Cmd+c, then that shortcut works in the code editor. but if i open a dialog and - say - configure project options such as, i don't know, output path, those edit boxes in the dialogs still responded to Ctrl+C, but not to Cmd+C.

Re: [Mono-dev] signal.c cross-thread access

2009-02-20 Thread Jonathan Pryor
On Fri, 2009-02-20 at 08:03 +, tim.je...@realtimeworlds.com wrote: The test for 64 signals passed to WaitAny, and the bounds check in the WaitAny entry point, is to guard against overrunning the bounds of a new pollfd array of NUM_SIGNALS length: + struct pollfd

Re: [Mono-dev] Announcing Mono 2.4 Preview 3...

2009-02-20 Thread David Mitchell
Here's another: http://bugzilla.novell.com/show_bug.cgi?id=478313 Thanks, --Dave Thomas Wiest wrote: Hey Everyone, We've just released Mono 2.4 Preview 3 today! Please help us out by giving it a try with your applications. As always, you can get the preview/RC releases here:

[Mono-dev] monodevelop! congratulations!

2009-02-20 Thread pablosantosl...@terra.es
Hi all, I'd like to thank Lluis and all the MD team for this new release! Several developers in the Plastic SCM team have just switched to MD, and we can successfully debug our server, which is a really important step ahead. It doesn't mean we'll stop using vstudio but it obviously opens a

[Mono-dev] Cannot build from fresh svn checkout (patch to fix it attached)

2009-02-20 Thread David Mitchell
I would greatly appreciate if someone would review/apply this patch. Earlier today, it seems that someone added a call to GetType() in System.Web.UI.TemplateControl.ReadStringResource(). However, ReadStringResource is static if the NET_2_0 symbol is not defined, making GetType()

Re: [Mono-dev] Announcing Mono 2.4 Preview 3...

2009-02-20 Thread Steven Munroe
On Tue, 2009-02-17 at 15:29 -0700, Thomas Wiest wrote: Hey Everyone, We've just released Mono 2.4 Preview 3 today! Please help us out by giving it a try with your applications. As always, you can get the preview/RC releases here:

Re: [Mono-dev] Mono Develop native menus on Mac OS X

2009-02-20 Thread Miguel de Icaza
Ctrl-X/V/C shortcuts for text widgets are a GTK thing. The only way we could fix that in MD would be do add a command handler to every single text entry widget, which would be extremely messy. This needs to be handled by the Mac GTK. This we can hack; We control the Gtk+ that we ship with

Re: [Mono-dev] Win32 sockets regression on trunk.

2009-02-20 Thread Gonzalo Paniagua Javier
On Mon, 2009-02-16 at 13:44 +0100, Lucas Meijer wrote: Hey. While upgrading our mono to get all the latest bugfixes, I'm running into the following, which looks like a win32 socket regression. When the program below is executed on mono trunk (r126917) it outputs: error on socket s

Re: [Mono-dev] Cannot build from fresh svn checkout (patch to fix it attached)

2009-02-20 Thread Gonzalo Paniagua Javier
On Fri, 2009-02-20 at 15:06 -0800, David Mitchell wrote: I would greatly appreciate if someone would review/apply this patch. Earlier today, it seems that someone added a call to GetType() in System.Web.UI.TemplateControl.ReadStringResource(). This is fixed now. Update again and everything