Re: [Mono-list] Mono + GCC 3.4

2004-05-02 Thread Paolo Molaro
On 05/01/04 Marcus wrote: > I recently upgraded to GCC 3.4. Any idea why I get errors like > > make[2]: Entering directory `/home/marcus/src/mcs/jay' > cc -DSKEL_DIRECTORY=\""/usr/local/share/jay"\" -g -O2 -c -o closure.o > closure.c > In file included from closure.c:41: > defs.h:306: warning: c

Re: [Mono-list] CVS compile errors :(

2004-05-02 Thread Paolo Molaro
On 05/02/04 Pablo Baena wrote: > Try automake1.7. Worked for me- > On Friday 30 April 2004 23:29, Rodolfo Campero wrote: > > Running automake --gnu ... > > runtime/Makefile.am:9: invalid variable `dist_monobins_DATA' > > runtime/net_1_1/Makefile.am:81: invalid variable `dist_assemblies_DATA' We

Re: [Mono-list] GC issue in mono 0.31

2004-05-02 Thread Cory Nelson
http://bugzilla.ximian.com On Mon, 3 May 2004 02:54:28 +0400, Nikolai Zhubr <[EMAIL PROTECTED]> wrote: > > Hello, > I have a problem running mono 0.31 - it segfaults almost > immediately in GC startup code, as far as I can see. Here > is the call sequence: > GC_malloc -> > GC_generic_malloc_inner

[Mono-list] GC issue in mono 0.31

2004-05-02 Thread Nikolai Zhubr
Hello, I have a problem running mono 0.31 - it segfaults almost immediately in GC startup code, as far as I can see. Here is the call sequence: GC_malloc -> GC_generic_malloc_inner -> GC_init_inner -> GC_try_to_collect_inner -> GC_stopped_mark -> GC_mark_some -> GC_mark_from ->

[Mono-list] Buiding from CVS requires existing gacutil.exe

2004-05-02 Thread Rodolfo Campero
Hello, I'm trying to build mono from CVS, but the compilation fails while making all in runtime: Making all in runtime make[2]: Entering directory `/home/rodolfo/anoncvs/mono/runtime' Making all in . make[3]: Entering directory `/home/rodolfo/anoncvs/mono/runtime' cp -f /usr/local/bin/gacutil.exe

Re: [Mono-list] CVS compile errors :(

2004-05-02 Thread Rodolfo Campero
Thanks a lot Pablo, it worked! From: Pablo Baena <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: [Mono-list] CVS compile errors :( Date: Sun, 2 May 2004 07:30:39 + Try automake1.7. Worked for me- On Friday 30 April 2004 23:29, Rodolfo Campero wrote: > I tried to update my installati

[Mono-list] gtk# samples running on mac os x 10.3

2004-05-02 Thread Attila Balogh
hello, i know there wasn't any 'proper statements' whatsoever about mono being ready on ppc/os x, but anyway, with the cvs version today i was able to run _all_ the samples in gtk_sharp/sample. even more, monodoc also starts (i mean browser.exe), though there were some problems with the xml fil

Re: [Mono-list] OT: Evolution and Mono

2004-05-02 Thread Jonathan Pryor
I'm not a Ximian guy, but I play on on TV! OK, I don't, and in fact I have no affiliation with any of the groups involved, but I can guess... Below. On Sun, 2004-05-02 at 17:13, Nik Derewianka wrote: > Is there any way to get Evolution running on Windows (cygwin or > otherwise) ? This appears

Re: [Mono-list] If you are writing a gnome/gtk application, should you avoid

2004-05-02 Thread Jonathan Pryor
On Sat, 2004-05-01 at 09:48, Thomas R. Corbin wrote: > using Debug.Assert? In MS .NET, I believe that Debug.Assert pops up a window > using WinForms, but wouldn't that be a problem if you are writing a gtk > application? Is there a way to plug in your own AssertHandler? Debug.Assert and Trac

[Mono-list] OT: Evolution and Mono

2004-05-02 Thread Nik Derewianka
Sorry for the OT but I figure there are enough ximian people here who might know the answer. Is there any way to get Evolution running on Windows (cygwin or otherwise) ? Any future plans of getting Evolution re-written as a mono application ? (or anyone know of a full Outlook+Exchange equivalent

Re: [Mono-list] Delphi and Mono

2004-05-02 Thread Jonathan Pryor
Below... On Sat, 2004-05-01 at 08:20, Vikram Bharwada wrote: > Hi, > > - I have code written in Delphi 7 which i plan to migrate to Delphi 8.NET > > - After migrating i intend that my application also runs on Linux/Unix using > Mono. > > - Is this possible as of today, or should i migrate from

Re: [Mono-list] Windows: Propagating exit codes in .bat files?

2004-05-02 Thread Shantanu Kumar
On Sun, 2004-05-02 at 23:53, Miguel de Icaza wrote: > Hey guys, > >We have an issue with Mono, we are shipping batch files for Windows > like this: > > c:\>type mcs.bat > mono mcs.exe > c:\> > >The problem is that if `mcs.exe' returns an exitcode different than > zero, the error is not p

Re: [Mono-list] Windows: Propagating exit codes in .bat files?

2004-05-02 Thread Mike Krueger
Hi try: -- mono mcs.exe exit /b %ERRORLEVEL% Regards Mike Hey guys, We have an issue with Mono, we are shipping batch files for Windows like this: c:\>type mcs.bat mono mcs.exe c:\> The problem is that if `mcs.exe' returns an exitcode different than zero, the error is not

[Mono-list] Does DirectoryInfo.GetFiles return FileInfo guys in a particular order?

2004-05-02 Thread Thomas R. Corbin
For example, created order, or sorted by name? I'm not asking for functionality, just noticing some behavior. ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Win32 Mono

2004-05-02 Thread Cory Nelson
Yea, the configure scripts are for linux. You'll have to create your own Makefile, or compile it in linux and copy the exe over. On Mon, 3 May 2004 02:09:06 +0800, Thomas Moore <[EMAIL PROTECTED]> wrote: > > > Hi: > > I cann't find the instructions in INSTALL to compile xsp-0.12 under > Window

[Mono-list] Windows: Propagating exit codes in .bat files?

2004-05-02 Thread Miguel de Icaza
Hey guys, We have an issue with Mono, we are shipping batch files for Windows like this: c:\>type mcs.bat mono mcs.exe c:\> The problem is that if `mcs.exe' returns an exitcode different than zero, the error is not propagated to the caller, so this means that in Makefiles, things keep goin

[Mono-list] Win32 Mono

2004-05-02 Thread Thomas Moore
Hi: I cann't find the instructions in INSTALL to compile xsp-0.12 under Windows... --Thomas Moore > - Original Message - > From: "Cory Nelson" <[EMAIL PROTECTED]> > To: "Thomas Moore" <[EMAIL PROTECTED]> > Sent: Monday, May 03, 2004 1:51 AM > Subject: Re: [Mono-list] Win32 Mono

[Mono-list] In trying to build mono, I'm getting the following error.

2004-05-02 Thread Thomas R. Corbin
What am I doing wrong? I'm on SUSE 9. gcc -DHAVE_CONFIG_H -I. -I. -I../.. -pthread -I/opt/gnome/include/glib-2.0 -I/op t/gnome/lib/glib-2.0/include -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib- 2.0/include -I../../libgc/include -DMONO_BINDIR=\"/opt/mono/bin\" -I../.. -DGC_LI NUX_THREAD

[Mono-list] Win32 Mono

2004-05-02 Thread Thomas Moore
Hi: Does Win32 Mono contain XSP server and mod_mono module for Apache? --Thomas Moore ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Command line processing tool in C#

2004-05-02 Thread Thomas R. Corbin
On Thursday April 08, 2004 11:33 am, A Rafael D Teixeira wrote: > Inline... This stuff is really excellent, and I am really enjoying using it. I'm wondering, however, if there's a way to specify a default value for an option, for display in the --help output? > > On Wed, 2004-04

Re: [Mono-list] CVS compile errors :(

2004-05-02 Thread Pablo Baena
Try automake1.7. Worked for me- On Friday 30 April 2004 23:29, Rodolfo Campero wrote: > I tried to update my installation to the lastest CVS, in order to see if I > have the same problem that Andrew, but I'm stuck in an earlier step: > > $ ./autogen.sh --prefix=/usr/local > Running libtoolize...

[Mono-list] ASP.NET/XSP problem

2004-05-02 Thread Pedro Santos
Hi. I have an application that usas several languages, based on the current User. In user preferences, when the user changes the language and submits, I get an exception that I do not understand: //- Server error in '/' applicati

RE: [Mono-list] Kylix and Mono

2004-05-02 Thread Tim Anderson
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Vikram Bharwada > Sent: 01 May 2004 14:03 > To: [EMAIL PROTECTED] > Subject: [Mono-list] Kylix and Mono > > Hi, > > How can i target my Borland Kylix application on Mono? > > and where do i find the

[Mono-list] Kylix and Mono

2004-05-02 Thread Vikram Bharwada
Hi, How can i target my Borland Kylix application on Mono? and where do i find the Kylix interpreter for Mono. thanks Vikram Bharwada ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list