RE: [Mono-list] MCS Build Fails

2003-09-10 Thread Duncan Mak
Hello Jeremiah, On Wed, 2003-09-10 at 08:50, Jeremiah McElroy wrote: > I corrected this issue by pulling down the mono daily. I then ran a 'make > uninstall' in my mono source directory, and re-built mono from the mono daily. MCS > is now building correctly. > > I hope nobody has invested to

Re: [Mono-list] Non ASCII characters in file names

2003-09-10 Thread Jonathan Pryor
The short answer is: Mono uses glib, which assumes that everything is in UTF-8. The filename you're seeing is likely a valid UTF-8 string; view it in Nautilus or Rox and see if it looks right. :-) See: http://bugzilla.ximian.com/show_bug.cgi?id=30781 http://bugzilla.gnome.org/show

Re: [Mono-list] Problems compiling mono

2003-09-10 Thread Duncan Mak
On Wed, 2003-09-10 at 19:10, Eduardo Osorio Armenta wrote: > Hi, > i also have this problem, i try > --with-gc=included > and ./configure goes by > > but then o run > make and something goes wrong (CYGWIN 1.3.22 - .NET > 1.0) http://lists.ximian.com/archives/public/mono-devel-list/2003-Septe

Re: [Mono-list] Problems compiling mono

2003-09-10 Thread Eduardo Osorio Armenta
Hi, i also have this problem, i try --with-gc=included and ./configure goes by but then o run make and something goes wrong (CYGWIN 1.3.22 - .NET 1.0) gcc -mno-cygwin -DHAVE_CONFIG_H -I. -I. -I../.. -pthreads -I/usr/include/glib-2 .0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/us

Re: [Mono-list] Problems compiling mono

2003-09-10 Thread Eduardo Osorio Armenta
Hi, i also have this problem, i try --with-gc=included and ./configure goes by but then o run make and something goes wrong. gcc -mno-cygwin -DHAVE_CONFIG_H -I. -I. -I../.. -pthreads -I/usr/include/glib-2 .0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/inclu de -I.

Re: [Mono-list] where to get the right documentation?

2003-09-10 Thread Davy Brion
On Wednesday 10 September 2003 10:41, Martin Willemoes Hansen wrote: > Here a a couple of nice documentation hints :o) > > http://www.go-mono.com/tutorial/ allthough i appreciate the tutorials, i've already gone through them... the problem is when you want to do more advanced stuff. The document

[Mono-list] Non ASCII characters in file names

2003-09-10 Thread Jörg Rosenkranz
Hello, We are failing to create files with non ASCII characters in their name using Mono functions. They are created with scrambled names. Following example: // 8< -- >8 - using System; using System.IO; namespace Test { public class T

[Mono-list] Monodoc on the Web

2003-09-10 Thread Giuseppe Greco
Hi all, I've installed mono/gtk-sharp/monodoc via Red Carpet on my server... and if I've well understood, it isn't possible yet to render monodoc documentation... unless I'll install gtk-sharp from CVS, isn't it? If so, when do you plan to deliver the complete monodoc framework via Red Carpet? E

RE: Re: [Mono-list] AppDomain Unload and references

2003-09-10 Thread Jörg Rosenkranz
Hello Piyush, AppDomain unloading seems to be still buggy. See bug http://bugzilla.ximian.com/show_bug.cgi?id=47659 You can unload an AppDomain but can't create a second one later. And there may be other side effects. Jörg > -Original Message- > From: Piyush Garyali [mailto:[EMAIL PROTE

[Mono-list] Re: [Mono-winforms-list] We are Developing class Libraries for VB

2003-09-10 Thread rafaelteixeirabr
>sir, >We are Developing class libraries for vb in mono. Good >we have an doubt that in the Instr,InstrRev of String Class has the CompareMethod,this CompareMethod >our self want to develop or is that already exists with you, Just call the fuction from you. Call ours. Have a look at the code for

Re: Re: [Mono-list] AppDomain Unload and references

2003-09-10 Thread Piyush Garyali
Hello Zoltan, Thanks for the response, I was going through the mono code and found that there is an icall, ves_icall_System_AppDomain_InternalUnload which actually calls a function mono_domain_unload(). When you say that AppDomain unloading does not work under mono, did you want to mean that

RE: [Mono-list] MCS Build Fails

2003-09-10 Thread Jeremiah McElroy
I corrected this issue by pulling down the mono daily. I then ran a 'make uninstall' in my mono source directory, and re-built mono from the mono daily. MCS is now building correctly. I hope nobody has invested too much time in this. -Original Message- From: Jeremiah

[Mono-list] MCS Build Fails

2003-09-10 Thread Jeremiah McElroy
I have been pulling MCS from CVS for a while, and yesterday I noticed that the 'make' of mcs hamgs after a few moments. Here is the output from the make command: make[1]: Entering directory `/home/peschkaj/mcs/build' make[1]: Leaving directory `/home/peschkaj/mcs/build' make[1]: Entering directo

Re: [Mono-list] where to get the right documentation?

2003-09-10 Thread Martin Willemoes Hansen
On Tue, 2003-09-09 at 22:42, Davy Brion wrote: > Hey guys, > > i'm using mono 0.26 and gtk# 0.10 > > I'm a complete newbie to gtk and i must say that it is very frustrating to > learn gtk due to the documentation. Here a a couple of nice documentation hints :o) http://www.go-mono.com/tutorial/

RE: [Mono-list] MBAS fails on simple hello world application

2003-09-10 Thread Marco Ridoni
On Tue, 2003-09-09 at 15:26, Akhilesh Agarwal wrote: > Hi, > > I thought VB.NET is case insensitive. > The current CVS version *should* be case-insensitive, while version 0.26 surely isn't. Please take note that mBas is still incomplete and surely not anywhere near production-quality (but we ho

[Mono-list] Problems compiling mono

2003-09-10 Thread Andreas Sliwka
Hi, I have a strange problem when I try to compile mono from scratch. I do not have a working mono on this particular machine (I could install one, but I want to compile it myself), so I checked out all modules from the CVS. When I try to compile the mono module the ./configure stops with

RE: [Mono-list] MBAS fails on simple hello world application

2003-09-10 Thread Akhilesh Agarwal
Hi, I thought VB.NET is case insensitive. If I can compile this same file without capitalization on vbc.exe (Microsoft .NET framework on Windows XP) it should be working in the same way on MBas too right? Akhilesh Agarwal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTE