Re: [Mono-dev] [PATCH] System.Data API signature fixes

2006-08-02 Thread Nagappan
Hi Konstantin, Most of the API signature mismatch was fixed by Senga. Based on System.Data implementation: http://mono.ximian.com/class-status/mono-HEAD-vs-fx-2/class-status-System.Data.html System.Data - 90% of the task are done and 475 functions yet be done. I'm currently working on

[Mono-dev] [PATCH] Use the correct type for S.D.Printing.PrintDocument.PrintController

2006-08-02 Thread Carlos Alberto Cortez
Hey, S.D.Printing.PrintDocument.PrintController has as default a new instance of S.W.F.PrintControllerWithStatusDialog, which is in SWF assembly. The current code assigns a new instance of S.D.P.StandardPrintController to PrintDocument.PrintController, which isn't the right behaviour. The

Re: [Mono-dev] [PATCH] Use the correct type for S.D.Printing.PrintDocument.PrintController

2006-08-02 Thread Chris Toshok
this doesn't work unless System.Windows.Forms is being used, it appears. The following test: using System; using System.Drawing; using System.Drawing.Printing; public class Foo { public static void Main (string[] args) { PrintDocument doc = new PrintDocument ();

Re: [Mono-dev] [PATCH] Use the correct type for S.D.Printing.PrintDocument.PrintController

2006-08-02 Thread Robert Jordan
Hey, Carlos Alberto Cortez wrote: + Assembly wf_assembly = Assembly.Load (System.Windows.Forms, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089); The version of the assembly is wrong. Please use the constant

Re: [Mono-dev] [PATCH] Use the correct type for S.D.Printing.PrintDocument.PrintController

2006-08-02 Thread Carlos Alberto Cortez
Oh, that's perfect (I wasn't aware of that constant). Carlos. El mié, 02-08-2006 a las 14:00 +0200, Robert Jordan escribió: Hey, Carlos Alberto Cortez wrote: + Assembly wf_assembly = Assembly.Load (System.Windows.Forms, Version=2.0.3600.0, Culture=neutral,

[Mono-dev] Can't find C runtime library while installing mono

2006-08-02 Thread Bill Seurer
We have mono building and running OK under PASE on i5/OS (i.e., AIX) but get an error when installing: gmake install ... gmake[6]: Entering directory `/QOpenSys/home/seurer/dev/mono-1.1.15 /mcs/class/System' gmake install-local gmake[7]: Entering directory `/QOpenSys/home/seurer/dev/mono-1.1.15

Re: [Mono-dev] Building Mono on Linux/Alpha

2006-08-02 Thread Sergey Tikhonov
Zoltan Varga wrote: Hi, The patch is now in SVN. Thank you. There were other patches to common files that haven't got to SVN yet (mono-linux-alpha2.patch). I have a question: Alpha arch doesn't have unassigned compare for floats, but IR seems to require it. What would be the best place to

Re: [Mono-dev] Building Mono on Linux/Alpha

2006-08-02 Thread Zoltan Varga
Hi, I have a question: Alpha arch doesn't have unassigned compare for floats, but IR seems to require it. What would be the best place to implement taking abs values for arguments to compare and do comparition? I was thinking of using inssel-alpha.brg

Re: [Mono-dev] Can't find C runtime library while installing mono

2006-08-02 Thread Zoltan Varga
Hey, You need to set the LIBC variable in configure.in in the section for you architecture /os. Zoltan On 8/2/06, Bill Seurer [EMAIL PROTECTED] wrote: We have mono building and running OK under PASE on i5/OS (i.e., AIX) but get an error when installing: gmake install ...

Re: [Mono-dev] Can't find C runtime library while installing mono

2006-08-02 Thread Bill Seurer
It is set. And comparing to a mono that installs on a different OS (Linux on the same hardware) it appears to be correct (libc really is libc.a on this system). My thought is that for some reason the installer can't find it and I need to set something to help it in its search. -- Bill Seurer

Re: [Mono-dev] Can't find C runtime library while installing mono

2006-08-02 Thread Zoltan Varga
Hey, The value of LIBC should point to the shared library, not the static libc, since the runtime wants to load it dynamically using dlopen (). Zoltan On 8/2/06, Bill Seurer [EMAIL PROTECTED] wrote: It is set. And comparing to a mono that installs on a different

[Mono-dev] mcs bug

2006-08-02 Thread Jeroen Frijters
Hi, I ran into a bug in mcs. The program below obviously should print 42, but it prints 0, because mcs reuses loc.0 for two different things within the same expression. Regards, Jeroen using System; class Repro { private int[] stack = new int[1]; private int cc; public

Re: [Mono-dev] Error building on windows with latest cygwin

2006-08-02 Thread Jon Chambers
I picked the previous release of make and libtool from the cygwin setup, and things seem to be working (not sure if you need to revert one or both, and not going to try since it's working).- Jonathan On 8/1/06, Zoltan Varga [EMAIL PROTECTED] wrote: Hi,This is most likely a cygwin problem. I see