Re: [Mono-dev] gtk-sharp ./configure quick question (Very puzzled)

2005-12-28 Thread Paul F. Johnson
Hi, /usr/include/vte/vte.h:35: error: syntax error before typedef Supposedly, there is a bug in recent vte releases that doesn't specify correct dependencies to pkg-config so that it can build correct CFLAGS values. I don't know if this has been filed upstream to the vte folks, but

[Mono-dev] My monoupdater script has been updated *again*

2005-12-28 Thread Paul
Hi, My somewhat popular monoupdater script has been updated again to include a bugfix, a requested option (the very first) and a bit of a code rejig. Changes from 0.91c (last uploaded version) -- Bugfix - mcs was included when performing a make install.

[Mono-dev] WebServices with Mono on ARM / Nokia 770

2005-12-28 Thread marc.bordessoule
Hi, C# / mono seems to be a very good solution for programming business applications on the Nokia 770 I try with success some GTK# samples (compile on pc and use on N770) (I use the mono-nokia.tgz from http://www.mono-project.com/Mono:ARM ) Now I need WebServices in c# in my N770

[Mono-dev] Debugging Mono

2005-12-28 Thread Andy Somogyi
Hello What is the prefered way to debug a Mono application? I've tried using mono directly using the following command: mono -v --break MWFTestApplication.MainWindow:Main swf-hello.exe and I just get a series of exceptions. I've tried using gdb using gdb mono then run swf-hello.exe to run

Re: [Mono-dev] WebServices with Mono on ARM / Nokia 770

2005-12-28 Thread Rafael Teixeira
Try to copy the debug-symbol files for the assemblies (.mdb) alongside them and run mono --debug yourprogram.exe, to see if the stack trace comes with some usefull information, and post here again. Fun, On 12/28/05, marc.bordessoule [EMAIL PROTECTED] wrote: Hi, C# / mono seems to be a

[Mono-dev] AppDomain.CurrentDomain.BaseDirectory

2005-12-28 Thread Yogendra Thakur
Hi, There is slight difference between the implementation of AppDomain.CurrentDomain.BaseDirectory and MS.NET. When run on Windows - returns [ApplicationDirectory]/ while when run on MONO - returns [aplicationDirectory] ( no slash in end ). Please take note of it.