Re: [Mono-dev] Some demo examples do not work!

2010-04-19 Thread Alan McGovern
Hey, As per error message, you're missing libgdiplus. If you install that everything should work fine. Alan On 19 Apr 2010, at 06:12, Lyndon Lu lyndon...@gmail.com wrote: Hi All, I have installed mono 2.6.3 from source files in CentOS 5. I can see that test web page Welcome to

Re: [Mono-dev] New performance counter in Mono to report physical memory size in the machine

2010-04-19 Thread Marek Habersack
On Sat, 17 Apr 2010 18:14:49 -0800 (PST) jmalcolm malcolm.jus...@gmail.com wrote: Hello, Thanks Marek, Does this live in System.Diagnostics? Yes, Does this mean that the code you posted would fail on Microsoft.NET with an InvalidOperationException? Using this particular category, yes -

Re: [Mono-dev] New performance counter in Mono to report physical memory size in the machine

2010-04-19 Thread Marek Habersack
On Sun, 18 Apr 2010 08:00:04 -0400 Jay R. Wren jrw...@xmtp.net wrote: Hello, Confirmed, the constructor throws InvalidOperationException with a message of Category does not exist. on .NET 4. The code you pasted falls through to Cannot detect Physical RAM. It is not a big deal, but it is

Re: [Mono-dev] Some demo examples do not work!

2010-04-19 Thread Lyndon Lu
Hi Alan, Thanks! David also told me that a while ago. After having installed gdiplus, it seems working. But while clicking Authtest-index.aspx, I still got the error The webpage can not be found. The Authtest-login.aspx and Webcontrols-calendar work fine now. Cheers, Lyndon On Mon, Apr 19,

[Mono-dev] Develop for iPad on the iPad

2010-04-19 Thread Daniel Morgan
Is it possible to develop for the iPad on the iPad? If yes, is it possible to develop for the iPad on the iPad using MonoTouch? Let's just say, I tried the iPad out at the store, and I like it very much. I would like iPad to replace my laptop. In order to do this, I must be able to create

Re: [Mono-dev] Develop for iPad on the iPad

2010-04-19 Thread Sebastien Pouliot
On Mon, 2010-04-19 at 08:20 -0700, Daniel Morgan wrote: Is it possible to develop for the iPad on the iPad? sure, with the right software [1] If yes, is it possible to develop for the iPad on the iPad using MonoTouch? sure, with a hardware dongle [2] Let's just say, I tried the iPad out at

Re: [Mono-dev] Develop for iPad on the iPad

2010-04-19 Thread buhochile...@gmail.com
On 04/19/2010 11:29 AM, Sebastien Pouliot wrote: On Mon, 2010-04-19 at 08:20 -0700, Daniel Morgan wrote: Is it possible to develop for the iPad on the iPad? sure, with the right software [1] Well, you are in did really positive this morning, you just forget to mention that the

[Mono-dev] [PATCH] Android Support [4/4]

2010-04-19 Thread Jonathan Pryor
This is a series of patches to add support to Mono for building against the Android NDK [0]. Android runs the Linux kernel, but moves many things around compared to a normal desktop Linux distro. These patches are based against the mono-2-6 branch. This fourth patch patches mono/support so that

[Mono-dev] [PATCH] Android Support [1/4]

2010-04-19 Thread Jonathan Pryor
This is a series of patches to add support to Mono for building against the Android NDK [0]. Android runs the Linux kernel, but moves many things around compared to a normal desktop Linux distro. These patches are based against the mono-2-6 branch. This first patch patches eglib so that

[Mono-dev] [PATCH] Android Support [2/4]

2010-04-19 Thread Jonathan Pryor
This is a series of patches to add support to Mono for building against the Android NDK [0]. Android runs the Linux kernel, but moves many things around compared to a normal desktop Linux distro. These patches are based against the mono-2-6 branch. This second patch patches libgc so that it

[Mono-dev] [PATCH] Android Support [3/4]

2010-04-19 Thread Jonathan Pryor
This is a series of patches to add support to Mono for building against the Android NDK [0]. Android runs the Linux kernel, but moves many things around compared to a normal desktop Linux distro. These patches are based against the mono-2-6 branch. This third patch patches mono so that it will

Re: [Mono-dev] [PATCH] Android Support [4/4]

2010-04-19 Thread Joe Dluzen
Awesome. How do these compare with Koush's: http://github.com/koush/androidmono ? Are they a complete reimplementation? Joe Message: 5 Date: Mon, 19 Apr 2010 13:44:24 -0400 From: Jonathan Pryor jonpr...@vt.edu Subject: [Mono-dev] [PATCH] Android Support [4/4] To: mono-devel-list

Re: [Mono-dev] [PATCH] Android Support [2/4]

2010-04-19 Thread Rodrigo Kumpera
Looks good. On Mon, Apr 19, 2010 at 2:44 PM, Jonathan Pryor jonpr...@vt.edu wrote: This is a series of patches to add support to Mono for building against the Android NDK [0]. Android runs the Linux kernel, but moves many things around compared to a normal desktop Linux distro. These

Re: [Mono-dev] [PATCH] Android Support [1/4]

2010-04-19 Thread Rodrigo Kumpera
+static void +out_vfprintf (FILE *ignore, const gchar *format, va_list args) +{ + __android_log_vprint (ANDROID_LOG_ERROR, mono, format, args); +} Shouldn't we identify the entry by the application name instead of mono? On Mon, Apr 19, 2010 at 2:44 PM, Jonathan Pryor jonpr...@vt.edu wrote:

Re: [Mono-dev] [PATCH] Android Support [3/4]

2010-04-19 Thread Rodrigo Kumpera
On Mon, Apr 19, 2010 at 2:44 PM, Jonathan Pryor jonpr...@vt.edu wrote: This is a series of patches to add support to Mono for building against the Android NDK [0]. Android runs the Linux kernel, but moves many things around compared to a normal desktop Linux distro. These patches are based

Re: [Mono-dev] [PATCH] Android Support [1/4]

2010-04-19 Thread Jonathan Pryor
On Mon, 2010-04-19 at 15:15 -0300, Rodrigo Kumpera wrote: +static void +out_vfprintf (FILE *ignore, const gchar *format, va_list args) +{ + __android_log_vprint (ANDROID_LOG_ERROR, mono, format, args); +} Shouldn't we identify the entry by the application name instead of mono? In an

Re: [Mono-dev] [PATCH] Android Support [4/4]

2010-04-19 Thread Rodrigo Kumpera
On Mon, Apr 19, 2010 at 2:44 PM, Jonathan Pryor jonpr...@vt.edu wrote: This is a series of patches to add support to Mono for building against the Android NDK [0]. Android runs the Linux kernel, but moves many things around compared to a normal desktop Linux distro. These patches are based

Re: [Mono-dev] [PATCH] Android Support [4/4]

2010-04-19 Thread Jonathan Pryor
On Mon, 2010-04-19 at 13:53 -0400, Joe Dluzen wrote: How do these compare with Koush's: http://github.com/koush/androidmono ? Are they a complete reimplementation? No, it's a different take. Koush's implementation, as I understand it, uses the Android build system to build Mono. This instead

Re: [Mono-dev] [PATCH] Android Support [2/4]

2010-04-19 Thread Jonathan Pryor
On Mon, 2010-04-19 at 15:17 -0300, Rodrigo Kumpera wrote: Looks good. Thanks. Committed to mono-2-6 (r155746) and trunk (r155747). - Jon ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] [PATCH] Android Support [3/4]

2010-04-19 Thread Jonathan Pryor
On Mon, 2010-04-19 at 15:22 -0300, Rodrigo Kumpera wrote: On Mon, Apr 19, 2010 at 2:44 PM, Jonathan Pryor jonpr...@vt.edu wrote: +AC_CHECK_HEADER([malloc.h], + [AC_DEFINE([HAVE_USR_INCLUDE_MALLOC_H], [1], + [Define to 1 if you have /usr/include/malloc.h.])],,) + What's the use for this?

Re: [Mono-dev] [PATCH] Android Support [3/4]

2010-04-19 Thread Jonathan Pryor
On Mon, 2010-04-19 at 15:31 -0400, Jonathan Pryor wrote: This also implies that my patch, as is, won't work under desktop Linux (oops). Specifically, mono-codeman.c needs to #include malloc.h before #including dlmalloc.h. Never mind; tried the patch as-is, and it builds properly on trunk

Re: [Mono-dev] [PATCH] Android Support [4/4]

2010-04-19 Thread Jonathan Pryor
On Mon, 2010-04-19 at 15:24 -0300, Rodrigo Kumpera wrote Looks good. Thanks. Committed to mono-2-6 (r155752) and trunk (r155753). - Jon ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] [PATCH] Android Support [3/4]

2010-04-19 Thread Rodrigo Kumpera
On Mon, Apr 19, 2010 at 4:43 PM, Jonathan Pryor jonpr...@vt.edu wrote: On Mon, 2010-04-19 at 15:31 -0400, Jonathan Pryor wrote: This also implies that my patch, as is, won't work under desktop Linux (oops). Specifically, mono-codeman.c needs to #include malloc.h before #including

Re: [Mono-dev] [PATCH] Android Support [3/4]

2010-04-19 Thread Jonathan Pryor
On Mon, 2010-04-19 at 17:16 -0300, Rodrigo Kumpera wrote: Looks good to me then. Thanks. Committed to mono-2-6 (r155758) and trunk (r155758). - Jon ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] [PATCH] Android Support [1/4]

2010-04-19 Thread Jonathan Pryor
On Mon, 2010-04-19 at 14:26 -0400, Jonathan Pryor wrote: On Mon, 2010-04-19 at 15:15 -0300, Rodrigo Kumpera wrote: +static void +out_vfprintf (FILE *ignore, const gchar *format, va_list args) +{ + __android_log_vprint (ANDROID_LOG_ERROR, mono, format, args); +} Shouldn't we