Hi,

I'm running a SuSE 9.2 x86 box with the latest mono/mcs/gtk-sharp svn sources.

Can anyone please confirm that the following application works/does
not work in your system when compiled with gcms?

    using System;
    using Gtk;
    
    public class App {
        public static void Main(string[] args) {
            Application.Init();
            Window w = new Window("Test");
            w.DeleteEvent += delegate(object sender, DeleteEventArgs args) {
                Application.Quit();
            };
            w.ShowAll();
            Application.Run();
        }
    }

The problem seems to be related to the referenced corlib version. mcs
will add a reference to 1.0.5000, boo and gmcs will add a reference to
2.0.3600.

Thanks in advance,
-- 
bamboo
http://blogs.codehaus.org/people/bamboo/
Got objects? http://www.db4o.com/
_______________________________________________
Mono-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to