Re: [Mono-dev] Mono on DD-WRT or OpenWrt

2008-09-05 Thread Kornél Pál
Hi, Rodrigo Kumpera wrote: > Well, OpenWrt runs mostly or arm based devises, so mono should work. > > The issue will be building a small enough runtime to fit the flash card. Sorry not mentioning the architecture. The devices I'm interested in use the MIPS32 architecture. I've found few docum

Re: [Mono-dev] error CS0006: cannot find metadata file `System.Data.dll`

2008-09-05 Thread Leandro Tracchia
ok i found the package (http://packages.ubuntu.com/search?suite=default§ion=all&arch=any&searchon=contents&keywords=System.Data.dll). i installed both 1.0 and 2.0, but which one am i supposed to use/install??? i also found i have to install this package to get the .exe file to run because i was ge

Re: [Mono-dev] Mono on DD-WRT or OpenWrt

2008-09-05 Thread Rodrigo Kumpera
The MIPS port hasn't received any attention in the past few months, we don't have a continuous build machine and neither a mantainer to not let the others break it. It shouldn't be a lot of work to get it back in shape, thou. On Fri, Sep 5, 2008 at 6:11 AM, Kornél Pál <[EMAIL PROTECTED]> wrote:

[Mono-dev] Compilation error for ARM

2008-09-05 Thread FirstName LastName
Hi, I'm trying to compile the latest code from SVN (rev 112374) because I have some issues with mono 1.9.1 regarding soft float with ARM. I get the following error: CC pedump.oLD pedump../utils/.libs/libmonoutils.a(mono-mmap.o): In function `shared_cleanup':/home/ubuntu/Install/c

Re: [Mono-dev] System.Drawing.Graphics ignores InterpolationMode

2008-09-05 Thread Onelook
I have similar problem. All resized (downsampled) images by this code: https://bugzilla.novell.com/attachment.cgi?id=169051 have very low quality in compare with MS .NET Framework. How can I generate good quality thumbnails in Mono? Thanks, Onelook Jonathan Resnick wrote: > > When using the S

Re: [Mono-dev] System.Drawing.Graphics ignores InterpolationMode

2008-09-05 Thread Sebastien Pouliot
Hello, Cairo, on which libgdiplus depends for graphics, has much less interpolation options than MS GDI+ defines in its API. So libgdiplus maps "many to few" options in this case. Cairo is also known not to downscale images very well (but some Cairo people are looking at this). Google cairo's ma

Re: [Mono-dev] Compilation error for ARM

2008-09-05 Thread Rodrigo Kumpera
Hi, The functions that uses shm_* exists for making performance counters readable from the outside. But the patch to export performance counters has not yet hit trunk so, for now, you can just comment the offending code. It would be nice, thou, to have a configure option to turn this off once it

Re: [Mono-dev] Compilation error for ARM

2008-09-05 Thread FirstName LastName
What do you mean removed offending code? Could you give me an example of how to remove it? ( I want to be sure that I'm doing the right stuff) Thanks! Date: Fri, 5 Sep 2008 17:30:10 -0300From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Mono-dev] Compilation error for ARMCC: mono-devel-list@

Re: [Mono-dev] Compilation error for ARM

2008-09-05 Thread Andreas Färber
Am 05.09.2008 um 22:30 schrieb Rodrigo Kumpera: > The functions that uses shm_* exists for making performance counters > readable from the outside. > [...] > > It would be nice, thou, to have a configure option to turn this off > once it hits trunk as embedded targets (as yours) might not > h

[Mono-dev] SEGV in mono_class_is_assignable_from in gmcs

2008-09-05 Thread Casey Marshall
I'm getting a SEGV in the function `mono_class_is_assignable_from' when trying to compile some internal code. I can't get the location in my source code where the error occurs, but I'll add some info from GDB to this email. Has anyone seen something like this before? This is with a mono/gmcs fr

Re: [Mono-dev] SEGV in mono_class_is_assignable_from in gmcs

2008-09-05 Thread Casey Marshall
Running gmcs under the mono debugger got me further: I was able to find the code causing the issue. There were two methods in a class that had the form: private static XXX FindRelevant(XXX[] candidates); private static object FindRelevant(IComparable[] candidates); And the type XXX is 'pu

Re: [Mono-dev] SEGV in mono_class_is_assignable_from in gmcs

2008-09-05 Thread Casey Marshall
Bug filed with test case: https://bugzilla.novell.com/show_bug.cgi?id=423975 This is easy to work around in my case, so it's low priority. Casey Marshall wrote: > Running gmcs under the mono debugger got me further: I was able to find > the code causing the issue. > > There were two methods in