Re: [Mono-dev] ask for backport on mono 1.2.5 branch

2007-09-13 Thread Hubert FONGARNAND
I've seen some backport this morning on the 1.2.5 branch...

I don't understand why this can't be backported too?

Hubert


Le lundi 03 septembre 2007 à 10:23 +0200, informatique internet a
écrit :

 Ok, now i'm sure that the patch that correct the DropDownList
 viewstate problem is this one :
 
 http://lists.ximian.com/pipermail/mono-patches/2007-July/097650.html
 
 +2007-07-26 Vladimir Krasnov vladimirk at mainsoft.com 
 
 +
 + * ListItemCollection.cs: fixed LoadViewState, items restored from
 + viewstate were not saved, fixes bug #82192
 +
 
 it's r82779
 
 Thanks in advance
 
 
 
 Le lundi 03 septembre 2007 à 10:07 +0200, informatique internet a
 écrit :
 
  Hi,
  
  Ooops after further investigation, it seems that this fix is not
  enough to fix this problem... I'm investigating to find out the
  revision number needed
  
  Le vendredi 31 août 2007 à 15:51 +0200, Robert Jordan a écrit :
  
   Hi,
   
   Hubert FONGARNAND wrote: 
In the actual release, a simple ASP.NET with a ListBox Control
   don't 
work, viewstate deserialization problem... 

This problem as been fixed in the trunk by : 

2007-08-30 Igor Zelmanovich [EMAIL PROTECTED] 

* ListControl.cs: fixed selected items state management.
   
   It's r85048:
   
   http://lists.ximian.com/pipermail/mono-patches/2007-August/099919.html
   
   Robert
   

Could this be backported to the mono 1.2.5 branch? 


Here's a test case for this problem : 

Default.aspx: 
%@ Page Language=C# Inherits=TestViewState.Default % 
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd; 
html 
head 
  titleDefault/title 
/head 
body 
  form id=form1 runat=server 
  asp:Button id=button1 runat=server / 
  asp:ListBox id=drpSociete runat=server
   CssClass=TextBox200 
Width=200px Visible=True 
Rows=1/asp:ListBox 
  /form 
/body 
/html 


Default.aspx.cs : 
// Default.aspx.cs created with MonoDevelop 
// User: hubert at 15:02 31/08/2007 
// 
// To change standard headers go to
   Edit-Preferences-Coding-Standard 
Headers 
// 

using System; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
using System.Data; 

namespace TestViewState 
{ 
  
  
  public class Default : Page 
  { 
  protected ListBox drpSociete; 
  
  
  protected override void OnLoad(EventArgs e) 
  { 
  if (!IsPostBack){ 
  drpSociete.Items.Add(bouh); 
  drpSociete.Items.Add(bah); 
  } 
  } 
  
  
  } 
} 


Click two times on the button and you'll obtain : 
Server Error in '/' Application 

   
    

Index is less than 0 or more than or equal to the list count.
   Parameter 
name: index 0 

Description: Error processing request. 

Error Message: HTTP 500. System.ArgumentOutOfRangeException:
   Index is 
less than 0 or more than or equal to the list count. Parameter
   name: 
index 0 

Stack Trace: 

System.ArgumentOutOfRangeException: Index is less than 0 or more
   than or equal to the list count. 
Parameter name: index 
0 
  at System.Collections.ArrayList.get_Item (Int32 index)
   [0x0] 
  at System.Web.UI.WebControls.ListItemCollection.get_Item
   (Int32 index) [0x0] 
  at System.Web.UI.WebControls.ListControl.LoadViewState
   (System.Object savedState) [0x0] 
  at System.Web.UI.Control.LoadViewStateRecursive (System.Object
   savedState) [0x0] 
  at System.Web.UI.Control.LoadViewStateRecursive (System.Object
   savedState) [0x0] 
  at System.Web.UI.Control.LoadViewStateRecursive (System.Object
   savedState) [0x0] 
  at System.Web.UI.Page.LoadPageViewState () [0x0] 
  at System.Web.UI.Page.InternalProcessRequest () [0x0] 
  at System.Web.UI.Page.ProcessRequest (System.Web.HttpContext
   context) [0x0] 


Thanks in advance! 

___ 
Ce message et les éventuels documents joints peuvent contenir
   des informations confidentielles. 
Au cas où il ne vous serait pas destiné, nous vous remercions de
   bien vouloir le supprimer et en aviser immédiatement l'expéditeur.
   Toute utilisation de ce message non conforme à sa destination,
   toute diffusion ou publication, totale ou partielle et quel qu'en
   soit le moyen est formellement interdite.
   
Les communications sur internet n'étant pas 

[Mono-dev] patch for cross-domain Activator.CreateIntance[From]()

2007-09-13 Thread Atsushi Eno
Hi,

I have created a patch to implement some CreateInstance() and
CreateInstanceFrom() overloads that takes AppDomain i.e. cross-domain
instance creation. If this approach looks good I'll commit the patch.

Though I have a strange JIT error test case (commented out) with
my own AppDomain (i.e. not CurrentDomain) that does not reproduce
as a standalone test. The error is:

file: domain.c: line 281 (jit_info_table_index): assertion failed (left
 right)

Any idea why this happens?

Atsushi Eno
Index: System/Activator.cs
===
--- System/Activator.cs (revision 85725)
+++ System/Activator.cs (working copy)
@@ -30,11 +30,13 @@
 //
 
 using System.Globalization;
+using System.IO;
 using System.Reflection;
 using System.Runtime.Remoting;
 using System.Runtime.Remoting.Activation;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
+using System.Runtime.Serialization.Formatters.Binary;
 using System.Security.Permissions;
 using System.Security.Policy;
 using System.Configuration.Assemblies;
@@ -150,6 +152,65 @@
}
 
 #if NET_2_0
+   [MonoNotSupported (no ClickOnce in mono)]
+   public static ObjectHandle CreateInstance (ActivationContext 
activationContext)
+   {
+   throw new NotImplementedException ();
+   }
+
+   [MonoNotSupported (no ClickOnce in mono)]
+   public static ObjectHandle CreateInstance (ActivationContext 
activationContext, string [] activationCustomData)
+   {
+   throw new NotImplementedException ();
+   }
+
+   // Cross-domain instance creation
+
+   static readonly MethodInfo method_create_instance_xd =
+   typeof (AppDomain).GetMethod 
(CreateInstanceCrossDomain, new Type [] {typeof (byte []), typeof (object 
[]), typeof (bool)});
+
+   public static ObjectHandle CreateInstanceFrom (AppDomain 
domain, string assemblyFile, string typeName)
+   {
+   return CreateInstanceFrom (domain, assemblyFile, 
typeName, false, _flags, null, null, null, null, null);
+   }
+
+   public static ObjectHandle CreateInstanceFrom (AppDomain 
domain, string assemblyFile, string typeName,
+  bool ignoreCase, 
BindingFlags bindingAttr, Binder binder,
+  object [] args, 
CultureInfo culture,
+  object [] 
activationAttributes,
+  Evidence 
securityAttributes)
+   {
+   if (domain == null)
+   throw new ArgumentNullException (domain);
+
+   BinaryFormatter bf = new BinaryFormatter ();
+   MemoryStream ms = new MemoryStream ();
+   bf.Serialize (ms, new InstanceCreationContext 
(assemblyFile, typeName, ignoreCase, bindingAttr, binder, culture, 
activationAttributes, securityAttributes));
+
+   return (ObjectHandle) AppDomain.InvokeInDomain (domain, 
method_create_instance_xd, domain, new object [] {ms.ToArray (), args, true});
+   }
+
+   public static ObjectHandle CreateInstance (AppDomain domain, 
string assemblyName, string typeName)
+   {
+   return CreateInstance (domain, assemblyName, typeName, 
false, _flags, null, null, null, null, null);
+   }
+
+   public static ObjectHandle CreateInstance (AppDomain domain, 
string assemblyName, string typeName,
+  bool ignoreCase, 
BindingFlags bindingAttr, Binder binder,
+  object [] args, 
CultureInfo culture,
+  object [] 
activationAttributes,
+  Evidence 
securityAttributes)
+   {
+   if (domain == null)
+   throw new ArgumentNullException (domain);
+
+   BinaryFormatter bf = new BinaryFormatter ();
+   MemoryStream ms = new MemoryStream ();
+   bf.Serialize (ms, new InstanceCreationContext 
(assemblyName, typeName, ignoreCase, bindingAttr, binder, culture, 
activationAttributes, securityAttributes));
+
+   return (ObjectHandle) AppDomain.InvokeInDomain (domain, 
method_create_instance_xd, domain, new object [] {ms.ToArray (), args, false});
+   }
+
public static T CreateInstance T ()
{
return (T) CreateInstance (typeof (T));
@@ -327,5 

[Mono-dev] MS ASP.NET Skin Incompability

2007-09-13 Thread Onur Gumus
Hi I've just encountered a small incompability with MS.NET and mono's
ASP.NET stacks.

Mono Allows us to define OnClientClick property for buttons in a skin file
and it works. How ever on ms.net  I've got the following exception:

Parser Error Message: The 'OnClientClick' property of a control type
System.Web.UI.WebControls.Button cannot be applied through a control skin.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] MS ASP.NET Skin Incompability

2007-09-13 Thread Marek Habersack
On Thu, 13 Sep 2007 14:25:51 +0300, Onur Gumus [EMAIL PROTECTED] scribbled:

Hello,

 Hi I've just encountered a small incompability with MS.NET and mono's
 ASP.NET stacks.
 
 Mono Allows us to define OnClientClick property for buttons in a skin file
 and it works. How ever on ms.net  I've got the following exception:
 
 Parser Error Message: The 'OnClientClick' property of a control type
 System.Web.UI.WebControls.Button cannot be applied through a control skin.
Please file a bug with a small test case, thanks!

marek


signature.asc
Description: PGP signature
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] WARNING : Memory leak with ASP.NET on mono 1.2.5

2007-09-13 Thread Hubert FONGARNAND
Hello,

I've updated my production environment to mono 1.2.5 branch yesterday.
As i'm monitoring memory usage on ASP.NET servers, i've seen this :


It seems that all mod-mono-server process takes +4kb of memory by
second... I'll send an animated screenshot of htop...
I think i'll downgrade to mono 1.2.4, it was very stable... (as you can
see before 12/09/07)

I'll try to report the problem better after more investigation!

Thanks

___
Ce message et les éventuels documents joints peuvent contenir des informations 
confidentielles.
Au cas où il ne vous serait pas destiné, nous vous remercions de bien vouloir 
le supprimer et en aviser immédiatement l'expéditeur. Toute utilisation de ce 
message non conforme à sa destination, toute diffusion ou publication, totale 
ou partielle et quel qu'en soit le moyen est formellement interdite.
Les communications sur internet n'étant pas sécurisées, l'intégrité de ce 
message n'est pas assurée et la société émettrice ne peut être tenue pour 
responsable de son contenu.
attachment: chart.php.png___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] WARNING : Memory leak with ASP.NET on mono 1.2.5

2007-09-13 Thread Hubert FONGARNAND
Here's a video screenshot of htop of growing memory usage by
mod-mono-server process...

http://dl.free.fr/aNKiwbO30/test-.mpeg

Le jeudi 13 septembre 2007 à 14:44 +0200, informatique internet a
écrit :

 pièce jointe message de courriel
 
   Message transféré 
  Sujet: 
  Date: Thu, 13 Sep 2007 14:54:24 +0200
  
  Hello,
  
  I've updated my production environment to mono 1.2.5 branch
  yesterday. As i'm monitoring memory usage on ASP.NET servers, i've
  seen this :
  
  
  It seems that all mod-mono-server process takes +4kb of memory by
  second... I'll send an animated screenshot of htop...
  I think i'll downgrade to mono 1.2.4, it was very stable... (as you
  can see before 12/09/07)
  
  I'll try to report the problem better after more investigation!
  
  Thanks
  
  ___
  Ce message et les ventuels documents joints peuvent contenir des
  informations confidentielles.
  Au cas o╈ il ne vous serait pas destin, nous vous remercions de bien
  vouloir le supprimer et en aviser imm㝸diatement l'expditeur. Toute
  utilisation de ce message non conforme 棥 sa destination, toute
  diffusion ou publication, totale ou partielle et quel qu'en soit le
  moyen est formellement interdite.
  Les communications sur internet n'tant pas s?curises, l'int䣺grit de
  ce message n'est pas assur쑑e et la socit齧 mettrice ne peut 祬tre
  tenue pour responsable de son contenu.
___
Ce message et les �ventuels documents joints peuvent contenir des informations 
confidentielles.
Au cas o� il ne vous serait pas destin�, nous vous remercions de bien vouloir 
le supprimer et en aviser imm�diatement l'exp�diteur. Toute utilisation de ce 
message non conforme � sa destination, toute diffusion ou publication, totale 
ou partielle et quel qu'en soit le moyen est formellement interdite.
Les communications sur internet n'�tant pas s�curis�es, l'int�grit� de ce 
message n'est pas assur�e et la soci�t� �mettrice ne peut �tre tenue pour 
responsable de son contenu.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Compiling mono under windows

2007-09-13 Thread olivier dufour
So,

I have found the error for resource temporary unavailable.
In fact, I have antivirus, antispyware,... which try to analyse all done by
make...
So; it have well started but not succeed thanks to error in mono/mono/utils:
I have try to fill a bug in novell bugzilla without succeed ;( (mono is not
in list)

I send you a part of my log.

/bin/sh ../../libtool --tag=CC   --mode=compile gcc -mno-cygwin -g
-DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../mono -I../../libgc/include
-I/devel/target/glib-2.6.6/include/glib-2.0 -I/devel/target/glib-2.6.6
/lib/glib-2.0/include-DWIN32_THREADS -DFD_SETSIZE=1024 -DUNICODE
-D_UNICODE  -g -O2 -fno-strict-aliasing -Wdeclaration-after-statement -g
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations
-Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith
-Wno-cast-qual -Wcast-align -Wwrite-strings -mno-tls-direct-seg-refs -MT
mono-hash.lo -MD -MP -MF .deps/mono-hash.Tpo -c -o mono-hash.lo mono-hash.c
 gcc -mno-cygwin -g -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../mono
-I../../libgc/include
-I/devel/target/glib-2.6.6/include/glib-2.0-I/devel/target/glib-
2.6.6/lib/glib-2.0/include -DWIN32_THREADS -DFD_SETSIZE=1024 -DUNICODE
-D_UNICODE -g -O2 -fno-strict-aliasing -Wdeclaration-after-statement -g
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations
-Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith
-Wno-cast-qual -Wcast-align -Wwrite-strings -mno-tls-direct-seg-refs -MT
mono-hash.lo -MD -MP -MF .deps/mono-hash.Tpo -c mono-hash.c  -DDLL_EXPORT
-DPIC -o .libs/mono-hash.o
mono-hash.c:39:18: glib.h: No such file or directory
In file included from ../../mono/os/gc_wrapper.h:37,
 from mono-hash.c:40:
../../libgc/include/gc.h:1008: warning: function declaration isn't a
prototype
In file included from mono-hash.c:41:
mono-hash.h:40: error: syntax error before typedef
mono-hash.h:42: error: parse error before '*' token
mono-hash.h:42: error: parse error before key
mono-hash.h:43: warning: type defaults to `int' in declaration of `gpointer'
mono-hash.h:43: warning: function declaration isn't a prototype
mono-hash.h:43: error: `gpointer' declared as function returning a function
mono-hash.h:43: warning: function declaration isn't a prototype
mono-hash.h:55: error: parse error before hash_func
mono-hash.h:56: warning: function declaration isn't a prototype
mono-hash.h:57: error: parse error before hash_func
mono-hash.h:59: warning: function declaration isn't a prototype
mono-hash.h:60: error: parse error before hash_func
mono-hash.h:63: warning: function declaration isn't a prototype
mono-hash.h:71: error: parse error before mono_g_hash_table_remove
mono-hash.h:72: error: parse error before gconstpointer
mono-hash.h:72: warning: type defaults to `int' in declaration of
`mono_g_hash_table_remove'
mono-hash.h:72: warning: function declaration isn't a prototype
mono-hash.h:72: warning: data definition has no type or storage class
mono-hash.h:73: error: parse error before mono_g_hash_table_steal
mono-hash.h:74: error: parse error before gconstpointer
mono-hash.h:74: warning: type defaults to `int' in declaration of
`mono_g_hash_table_steal'
mono-hash.h:74: warning: function declaration isn't a prototype
mono-hash.h:74: warning: data definition has no type or storage class
mono-hash.h:76: error: parse error before gconstpointer
mono-hash.h:76: error: `mono_g_hash_table_lookup' declared as function
returning a function
mono-hash.h:76: warning: function declaration isn't a prototype
mono-hash.h:77: error: parse error before
mono_g_hash_table_lookup_extended
mono-hash.h:78: error: parse error before gconstpointer
mono-hash.h:80: warning: type defaults to `int' in declaration of
`mono_g_hash_table_lookup_extended'
mono-hash.h:80: warning: function declaration isn't a prototype
mono-hash.h:80: warning: data definition has no type or storage class
mono-hash.h:82: error: parse error before GHFunc
mono-hash.h:83: warning: function declaration isn't a prototype
mono-hash.h:84: error: parse error before mono_g_hash_table_foreach_remove
mono-hash.h:85: error: parse error before GHRFunc
mono-hash.h:86: warning: type defaults to `int' in declaration of
`mono_g_hash_table_foreach_remove'
mono-hash.h:86: warning: function declaration isn't a prototype
mono-hash.h:86: warning: data definition has no type or storage class
mono-hash.h:87: error: parse error before mono_g_hash_table_foreach_steal
mono-hash.h:88: error: parse error before GHRFunc
mono-hash.h:89: warning: type defaults to `int' in declaration of
`mono_g_hash_table_foreach_steal'
mono-hash.h:89: warning: function declaration isn't a prototype
mono-hash.h:89: warning: data definition has no type or storage class
mono-hash.h:90: error: parse error before mono_g_hash_table_size
mono-hash.h:90: warning: type defaults to `int' in declaration of
`mono_g_hash_table_size'
mono-hash.h:90: warning: data definition has no type or storage class
mono-hash.h:93: error: parse error before 

Re: [Mono-dev] Compiling mono under windows

2007-09-13 Thread Robert Jordan
Hi,

olivier dufour wrote:
 
 I send you a part of my log.
 

[...]

That's the problem:

 mono-hash.c:39:18: glib.h: No such file or directory


Please make yourself a favor and read this fine tutorial:

http://shana.iidbbs.com/en/mono_cygwin_tutorial.html

Robert

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Mono-devel-list Digest, Vol 29, Issue 21

2007-09-13 Thread olivier dufour
I have used this tutorial and I have never install glib.
I do not find why it do it...
Is there any flags to say that I do not want to use glib?
Because, I have never install it and tutorial say to not install it.


2007/9/13, [EMAIL PROTECTED] 
[EMAIL PROTECTED]:

 Send Mono-devel-list mailing list submissions to
 mono-devel-list@lists.ximian.com

 To subscribe or unsubscribe via the World Wide Web, visit
 http://lists.ximian.com/mailman/listinfo/mono-devel-list
 or, via email, send a message with subject or body 'help' to
 [EMAIL PROTECTED]

 You can reach the person managing the list at
 [EMAIL PROTECTED]

 When replying, please edit your Subject line so it is more specific
 than Re: Contents of Mono-devel-list digest...


 Today's Topics:

1. Re:  WARNING : Memory leak with ASP.NET on mono 1.2.5
   (Hubert FONGARNAND)
2.  Compiling mono under windows (olivier dufour)
3. Re:  Compiling mono under windows (Robert Jordan)


 --

 Message: 1
 Date: Thu, 13 Sep 2007 15:04:20 +0200
 From: Hubert FONGARNAND [EMAIL PROTECTED]
 Subject: Re: [Mono-dev] WARNING : Memory leak with ASP.NET on mono
 1.2.5
 To: mono-devel-list@lists.ximian.com
 mono-devel-list@lists.ximian.com
 Message-ID: [EMAIL PROTECTED]
 Content-Type: text/plain; charset=utf-8

 Here's a video screenshot of htop of growing memory usage by
 mod-mono-server process...

 http://dl.free.fr/aNKiwbO30/test-.mpeg

 Le jeudi 13 septembre 2007 ? 14:44 +0200, informatique internet a
 ?crit :

  pi?ce jointe message de courriel
 
    Message transf?r? 
   Sujet:
   Date: Thu, 13 Sep 2007 14:54:24 +0200
  
   Hello,
  
   I've updated my production environment to mono 1.2.5 branch
   yesterday. As i'm monitoring memory usage on ASP.NET servers, i've
   seen this :
  
  
   It seems that all mod-mono-server process takes +4kb of memory by
   second... I'll send an animated screenshot of htop...
   I think i'll downgrade to mono 1.2.4, it was very stable... (as you
   can see before 12/09/07)
  
   I'll try to report the problem better after more investigation!
  
   Thanks
  
   ___
   Ce message et les ventuels documents joints peuvent contenir des
   informations confidentielles.
   Au cas o? il ne vous serait pas destin, nous vous remercions de bien
   vouloir le supprimer et en aviser imm?diatement l'expditeur. Toute
   utilisation de ce message non conforme ? sa destination, toute
   diffusion ou publication, totale ou partielle et quel qu'en soit le
   moyen est formellement interdite.
   Les communications sur internet n'tant pas s?curises, l'int?grit de
   ce message n'est pas assur?e et la socit? mettrice ne peut ?tre
   tenue pour responsable de son contenu.
 ___
 Ce message et les ?ntuels documents joints peuvent contenir des
 informations confidentielles.
 Au cas o?ne vous serait pas destin?nous vous remercions de bien vouloir le
 supprimer et en aviser imm?atement l'exp?teur. Toute utilisation de ce
 message non conforme ?a destination, toute diffusion ou publication, totale
 ou partielle et quel qu'en soit le moyen est formellement interdite.
 Les communications sur internet n'?nt pas s?ris?, l'int?it?e ce message
 n'est pas assur?et la soci? ?ttrice ne peut ?e tenue pour responsable de son
 contenu.
 -- next part --
 An HTML attachment was scrubbed...
 URL:
 http://lists.ximian.com/pipermail/mono-devel-list/attachments/20070913/4eb1c447/attachment-0001.html

 --

 Message: 2
 Date: Thu, 13 Sep 2007 19:55:24 +0200
 From: olivier dufour [EMAIL PROTECTED]
 Subject: [Mono-dev] Compiling mono under windows
 To: mono-devel-list@lists.ximian.com
 Message-ID:
 [EMAIL PROTECTED]
 Content-Type: text/plain; charset=iso-8859-1

 So,

 I have found the error for resource temporary unavailable.
 In fact, I have antivirus, antispyware,... which try to analyse all done
 by
 make...
 So; it have well started but not succeed thanks to error in
 mono/mono/utils:
 I have try to fill a bug in novell bugzilla without succeed ;( (mono is
 not
 in list)

 I send you a part of my log.

 /bin/sh ../../libtool --tag=CC   --mode=compile gcc -mno-cygwin -g
 -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../mono -I../../libgc/include
 -I/devel/target/glib-2.6.6/include/glib-2.0 -I/devel/target/glib-2.6.6
 /lib/glib-2.0/include-DWIN32_THREADS -DFD_SETSIZE=1024 -DUNICODE
 -D_UNICODE  -g -O2 -fno-strict-aliasing -Wdeclaration-after-statement -g
 -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations
 -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith
 -Wno-cast-qual -Wcast-align -Wwrite-strings -mno-tls-direct-seg-refs -MT
 mono-hash.lo -MD -MP -MF .deps/mono-hash.Tpo -c -o mono-hash.lo
 mono-hash.c
 gcc -mno-cygwin -g -DHAVE_CONFIG_H -I. -I../.. -I

Re: [Mono-dev] Mono-devel-list Digest, Vol 29, Issue 21

2007-09-13 Thread Miguel de Icaza

 I have used this tutorial and I have never install glib.
 I do not find why it do it...
 Is there any flags to say that I do not want to use glib?
 Because, I have never install it and tutorial say to not install it. 

GLIB is a requirement for Mono (there are some efforts to switch to an
embedded version of it, but as of today you need it).

 
 
 2007/9/13, [EMAIL PROTECTED]
 [EMAIL PROTECTED]:
 Send Mono-devel-list mailing list submissions to
 mono-devel-list@lists.ximian.com
 
 To subscribe or unsubscribe via the World Wide Web, visit
 http://lists.ximian.com/mailman/listinfo/mono-devel-list
 or, via email, send a message with subject or body 'help' to
 [EMAIL PROTECTED]
 
 You can reach the person managing the list at 
 [EMAIL PROTECTED]
 
 When replying, please edit your Subject line so it is more
 specific
 than Re: Contents of Mono-devel-list digest... 
 
 
 Today's Topics:
 
1. Re:  WARNING : Memory leak with ASP.NET on mono 1.2.5
   (Hubert FONGARNAND)
2.  Compiling mono under windows (olivier dufour)
3. Re:  Compiling mono under windows (Robert Jordan) 
 
 
 --
 
 Message: 1
 Date: Thu, 13 Sep 2007 15:04:20 +0200
 From: Hubert FONGARNAND [EMAIL PROTECTED]
 Subject: Re: [Mono-dev] WARNING : Memory leak with ASP.NET on
 mono
 1.2.5
 To: mono-devel-list@lists.ximian.com
 mono-devel-list@lists.ximian.com
 Message-ID: [EMAIL PROTECTED]
 Content-Type: text/plain; charset=utf-8
 
 Here's a video screenshot of htop of growing memory usage by
 mod-mono-server process...
 
 http://dl.free.fr/aNKiwbO30/test-.mpeg
 
 Le jeudi 13 septembre 2007 ? 14:44 +0200, informatique
 internet a
 ?crit :
 
  pi?ce jointe message de courriel
 
    Message transf?r?  
   Sujet:
   Date: Thu, 13 Sep 2007 14:54:24 +0200
  
   Hello,
  
   I've updated my production environment to mono 1.2.5
 branch
   yesterday. As i'm monitoring memory usage on ASP.NET
 servers, i've
   seen this :
  
  
   It seems that all mod-mono-server process takes +4kb of
 memory by
   second... I'll send an animated screenshot of htop... 
   I think i'll downgrade to mono 1.2.4, it was very
 stable... (as you
   can see before 12/09/07)
  
   I'll try to report the problem better after more
 investigation!
  
   Thanks
  
   ___
   Ce message et les ventuels documents joints peuvent
 contenir des
   informations confidentielles. 
   Au cas o? il ne vous serait pas destin, nous vous
 remercions de bien
   vouloir le supprimer et en aviser imm?diatement
 l'expditeur. Toute
   utilisation de ce message non conforme ? sa destination,
 toute 
   diffusion ou publication, totale ou partielle et quel
 qu'en soit le
   moyen est formellement interdite.
   Les communications sur internet n'tant pas s?curises,
 l'int?grit de 
   ce message n'est pas assur?e et la socit? mettrice ne
 peut ?tre
   tenue pour responsable de son contenu.
 ___
 Ce message et les ?ntuels documents joints peuvent contenir
 des informations confidentielles. 
 Au cas o?ne vous serait pas destin?nous vous remercions de
 bien vouloir le supprimer et en aviser imm?atement l'exp?teur.
 Toute utilisation de ce message non conforme ?a destination,
 toute diffusion ou publication, totale ou partielle et quel
 qu'en soit le moyen est formellement interdite. 
 Les communications sur internet n'?nt pas s?ris?, l'int?it?e
 ce message n'est pas assur?et la soci? ?ttrice ne peut ?e
 tenue pour responsable de son contenu.
 -- next part --
 An HTML attachment was scrubbed... 
 URL:
 
 http://lists.ximian.com/pipermail/mono-devel-list/attachments/20070913/4eb1c447/attachment-0001.html
  
 
 --
 
 Message: 2
 Date: Thu, 13 Sep 2007 19:55:24 +0200
 From: olivier dufour [EMAIL PROTECTED]
 Subject: [Mono-dev] Compiling mono under windows 
 To: mono-devel-list@lists.ximian.com
 Message-ID:
 [EMAIL

Re: [Mono-dev] Mono-devel-list Digest, Vol 29, Issue 21

2007-09-13 Thread Robert Jordan
olivier dufour wrote:
 I have used this tutorial and I have never install glib.
 I do not find why it do it...
 Is there any flags to say that I do not want to use glib?
 Because, I have never install it and tutorial say to not install it.

GLib will be installed with Mono for Windows, which is the
first requirement of this tutorial.

Just in case you got it wrong: Mono for Windows is
this package:

ftp://www.go-mono.com/archive/1.2.5/windows-installer/5/mono-1.2.5-gtksharp-2.10.2-win32-5.exe

as linked from

http://www.mono-project.com/Downloads

Robert

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Mono-devel-list Digest, Vol 29, Issue 21

2007-09-13 Thread Atsushi Eno
Hello,

olivier dufour wrote:
 I have used this tutorial and I have never install glib.
 I do not find why it do it...
 Is there any flags to say that I do not want to use glib?
 Because, I have never install it and tutorial say to not install it.

This glib (to not install) means glib as a cygwin component.
You indeed need glib for *Windows*.

If you learn more about difference between cygwin and mingw you
might get it. Anyways, you can't avoid glib on Windows.

Atsushi Eno

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list