Re: [Mono-devel-list] problem building gtk-sharp

2005-07-18 Thread Jürg Billeter
On Son, 2005-07-17 at 16:25 -0700, Joe Audette wrote: On Suse 9.3 P4 3GHz trying to build gtk-sharp [...] popt.h: No such file or directory You probably need to install popt-dev or whatever the development package of the popt library is called in SUSE. Regards, Jürg -- Jürg Billeter [EMAIL

[Mono-devel-list] Command Builder

2005-07-18 Thread Daniel Morgan
Since there exists a command builder for SqlClient and OracleClient, is there a plan to create a command builder for Sybase and ODBC? ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-devel-list] Command Builder

2005-07-18 Thread tsureshkumar
Daniel Morgan wrote: Since there exists a command builder for SqlClient and OracleClient, is there a plan to create a command builder for Sybase and ODBC? Yes. There is a plan to do for ODBC, but I am not working on it right now. Any patches for enabling command builder for Sybase is welcome.

Re: [Mono-devel-list] [PATCH] Reworked unified Locale classes

2005-07-18 Thread Kornél Pál
You requested some numbers because wanted to know the real impact. I sent it to the list a long ago but I did not receive any response. Please review the benchmark results and tell me whether this overhead is worth or is too much. Kornél - Original Message - Sent: Thursday, June 23,

Re: [Mono-devel-list] malloc and free on CLI

2005-07-18 Thread Paolo Molaro
On 07/16/05 Kornél Pál wrote: I think to get te better berformance you should implement heap functionality natively. But not using P/Invoke because it's inefficient. You should rater use InternalCalls. Use mono/mono/metadata/icall.c and [MethodImplAttribute (MethodImplOptions.InternalCall)].

Re: [Mono-devel-list] mono AES performance woes (was: poor PPC JIT output)

2005-07-18 Thread Paolo Molaro
On 07/15/05 Allan Hsu wrote: Is there any reference on what sorts of things you can change using mono_set_defaults? Following the mono source for references to that function wasn't particularly enlightening. It would be useful if the grep mono_set_defaults *.c mini.c:mono_set_defaults

Re: [Mono-devel-list] Data Adapter problem

2005-07-18 Thread Konstantin Triger
Hello, Please file a bug in Bugzilla. Regards, Konstantin Triger Daniel Morgan wrote: I have a problem with the data adapter on Mono 1.1.8 on Windows. Has this been fixed in svn? Notice my test case does not use column nor table mappings. Results on Dot Net 1.1:

[Mono-devel-list] [PATCH] Fix parsing of sort strings in DataTable

2005-07-18 Thread Marc Haisenko
Hi folks, here's another patch for the System.Data namespace. Explanation: you can give a DataTable a sort string (via the Sort property) which can look like this: columnName1 ASC , columnName1, columnName2 DESC or even columnName1 ASC, columnName2 DESC. If you want to specify column names

Re: [Mono-devel-list] Problem with MS.NET and Mono with Remoting

2005-07-18 Thread Rafael Teixeira
Looks like we will need to implement the enumerator helper class for CollectionBase exactly as MS for this to work. Thanks for pointing this out Hubert. Please fill a Bugzilla case with more details. :| On 7/18/05, Hubert FONGARNAND [EMAIL PROTECTED] wrote: I've an issue with a Mono .NET

RE: [Mono-devel-list] DateTime Parameters in MSSQL Server

2005-07-18 Thread Mirco Bauer
On Wed, 2005-07-13 at 15:04 +0200, Jörg Rosenkranz wrote: For us the best way is to use ISO dates: -MM-dd HH:mm:ss. This can be parsed in all locales (at least I think so). nitpick that is not ISO :) ISO 8601 is: -MM-ddTHH:mm:ss Details at:

Re: [Mono-devel-list] Custom Marshalling

2005-07-18 Thread Kornél Pál
According to my experiences by-ref (out is by-ref as well) custom marshaling is not supported in either runtime. Could you attach please a full test code (managed and umnanaged source code) to can I try it? Kornél - Original Message - From: Jonathan S. Chambers Hello All, I am trying

Re: [Mono-devel-list] mono AES performance woes (was: poor PPC JIT output)

2005-07-18 Thread Zoltan Varga
Hi, This has been fixed in SVN, so you no longer need to call mono_set_defaults (which isn't in the public headers anyway). Zoltan On 7/18/05, Allan Hsu [EMAIL PROTECTED] wrote: On Jul 18, 2005, at 2:59 AM, Paolo Molaro wrote: On

RE: [Mono-devel-list] Custom Marshalling

2005-07-18 Thread Jonathan S. Chambers
Thanks, I will. -Original Message- From: Zoltan Varga [mailto:[EMAIL PROTECTED] Sent: Monday, July 18, 2005 2:21 PM To: Jonathan S. Chambers Cc: mono-devel-list@lists.ximian.com Subject: Re: [Mono-devel-list] Custom Marshalling Hi, Better yet,

[Mono-devel-list] which proxy server for linux .NET Remoting

2005-07-18 Thread McWhorter, Eric
Are there any Linux proxy servers known working with Remoting and Mono and some version of VS? Im trying to use Mono to do Remoting with .NET 2 b 2 clients, which works without a proxy. I havent been able to get Squid to work; it would really help if someone could let me know what proxy

Re: [Mono-devel-list] Custom Marshalling

2005-07-18 Thread Zoltan Varga
Hi, Better yet, please file a bug report about it at bugzilla.ximian.com. Zoltan On 7/18/05, Jonathan S. Chambers [EMAIL PROTECTED] wrote: I'm following the methods demonstrated in the book '.Net and COM' by Adam Nathan in his

[Mono-devel-list] plans for a native AES wrapper.

2005-07-18 Thread Allan Hsu
After last week's AES benchmarking, we've decided to write a managed-native wrapper around the openssl libcrypto library for the sake of performance. From my experience with embedded mono, it seems straightforward enough to write a RijndaelNative class that contains method declarations

Re: [Mono-devel-list] Data Adapter problem

2005-07-18 Thread Daniel Morgan
Suresh filed a bug. He also fixed it in svn already. Konstantin Triger wrote: Hello, Please file a bug in Bugzilla. Regards, Konstantin Triger Daniel Morgan wrote: I have a problem with the data adapter on Mono 1.1.8 on Windows. Has this been fixed in svn? Notice my test case does

Re: [Mono-devel-list] mono AES performance woes (was: poor PPC JIT output)

2005-07-18 Thread Allan Hsu
On Jul 18, 2005, at 2:59 AM, Paolo Molaro wrote: On 07/15/05 Allan Hsu wrote: Is there any reference on what sorts of things you can change using mono_set_defaults? Following the mono source for references to that function wasn't particularly enlightening. It would be useful if the grep

Re: [Mono-devel-list] plans for a native AES wrapper.

2005-07-18 Thread Miguel de Icaza
Hello, embedding mono. Is it possible to register internal calls at runtime when running mono like a normal, sane person? Will this be any faster than using p/Invoke? You can not use internal calls and have them work in non-embedded scenarios. P/Invoke will also be a lot simpler to