[Mono-list] Gtk-Sharp from CVS request

2003-08-22 Thread Willem . Smit
Hey guys,
can anyone please do me a huge favour and email me the cvs source of
gtk-sharp ? I'm parked off behind a corporate firewall at work, and my
phoneline isn't set up from home yet (and like i know our phone company
that's gonna take a while still). I really want to get the new monodoc
version working at home.

Pretty please ?
:-)
Willem Smit
SL IT
9471637
0724872442

***
Any views expressed in this message are those of the individual sender, and
Sanlam accepts no liability therefore, except where the sender specifically
states them to be those of Sanlam.
Enige sienswyses of stellings wat in hierdie boodskap uitgedruk word is dié
van die individuele afsender, en Sanlam aanvaar geen aanspreeklikheid
daarvoor nie, behalwe waar die afsender uitdruklik vermeld dat dit dié van
Sanlam is.


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Gtk-Sharp from CVS request

2003-08-22 Thread Willem . Smit
Thanx dude, you da man !

Willem Smit
SL IT
9471637
0724872442

***
Any views expressed in this message are those of the individual sender, and
Sanlam accepts no liability therefore, except where the sender specifically
states them to be those of Sanlam.
Enige sienswyses of stellings wat in hierdie boodskap uitgedruk word is dié
van die individuele afsender, en Sanlam aanvaar geen aanspreeklikheid
daarvoor nie, behalwe waar die afsender uitdruklik vermeld dat dit dié van
Sanlam is.


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] SOL_IP and SOL_IPV6 on FreeBSD

2003-08-22 Thread Chipzz
Well, it does compile now :)
But I'm having no joy compiling c#, mono just hangs in select state
(every now and then jumping to run state, but only eating 0,1% CPU which
is a bit little for a compiler), not even a trivial hello world. :/

But thx anyway :)

kr,

On Thu, 21 Aug 2003, Gonzalo Paniagua Javier wrote:

 From: Gonzalo Paniagua Javier [EMAIL PROTECTED]
 Subject: Re: [Mono-list] SOL_IP and SOL_IPV6 on FreeBSD

 El jue, 21-08-2003 a las 18:20, Chipzz escribió:
  Someone has been a little careless it appears...
 
  checking for SOL_IP... no
  checking for SOL_IPV6... no
 
  ...
 
  socket-io.c: In function `ves_icall_System_Net_Sockets_Socket_SetSocketOption_in
  ternal':
  socket-io.c:1513: `SOL_IPV6' undeclared (first use in this function)
  socket-io.c:1513: (Each undeclared identifier is reported only once
  socket-io.c:1513: for each function it appears in.)
  socket-io.c:1532: `SOL_IP' undeclared (first use in this function)
 
  System is FreeBSD, 5.1-RELEASE for base and 5.1-CURRENT for ports.
 
  Please CC me as I'm not subscribed to the list.

 Try this patch. If it works for you, I'll commit.

 -Gonzalo



Chipzz AKA
Jan Van Buggenhout
-- 


 UNIX isn't dead - It just smells funny
   [EMAIL PROTECTED]


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] mod_mono_unix installation

2003-08-22 Thread Gonzalo Paniagua Javier
Hi there!

I've been receiving reports of failures when installing mod_mono_unix
(stuff like: /usr/httpd/lib/libapr-0.so.0: undefined symbol:
mono_module).

It turns out that the instructions in mod_mono/install contained a
copypaste bug. The right lines to add to httpd.conf are:

  Listen 8080   
  LoadModule mono_unix_module
/home/user/mono/install/apache2/lib/libmod_mono_unix.so
  MonoApplicationUnix /mono /tmp/mod_mono_server

I've also updated the INSTALL file.

-Gonzalo


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] XmlInclude/XmlSerializer troubles, any workaround?

2003-08-22 Thread Steven Brown

To use XmlSerializer to serialize objects containing other untyped
objects, csc requires an [XmlInclude] attribute (as far as I know), but
it seems mono's XmlSerializer hasn't gotten to the point where it can
understand it (or is this a previously unknown issue?).  Is there a way
around this problem for now anyone can reccomend?  Here's a testcase
that throws with mono and passes with MS:


using System;
using System.Collections;
using System.Xml.Serialization;

public class Contained {
}

[XmlInclude(typeof(Contained))]
public class Container {
  public ArrayList contained = new ArrayList();
}

class Test {

  public static void Main(string[] args) {
XmlSerializer serializer = new XmlSerializer(typeof(Container));

Container container = new Container();
container.contained.Add(new Contained());

serializer.Serialize(Console.Out, container);
  }
}

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list