Re: [Mono-list] Mono Beta 1.0

2004-05-05 Thread Mark Gimelfarb
Miguel,
 If you can either publish the .spec files from RH or SUSE RPMs, I'm 
sure we could build Mandrake packages easily. The differences b/w RH and MDK 
distros aren't all that great after all. Maybe we can coordinate with Duncan, 
and even get a more or less current packages on the Mono website?

Tracy, if you do it all from Cooker and CVS/source, it's much more fun :)

Regards,
  Mark.

Quoting Miguel de Icaza [EMAIL PROTECTED]:

 Hello,
 
  I notice that once again there are no rpms for Mandrake. Will there ever 
  be rpms for Mandrake?
 
 We do not have Mandrake machines in my team currently, but one thing we
 could do is publish the build-buddy description files, so third parties
 could build their own packages with the same configuration options that
 we have on their distros.
 
 Miguel
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list
 



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


[Mono-list] Problem with Mono-Develop gtk-sharp-0.18.tar.gz

2004-05-05 Thread beniniva
I've downloaded mono packages required for MonoDevelop but when I try to run
make 
the compiler say: 
 
 
ditors.dll /r:System.Drawing /resource:./sample.glade 
error CS0006: Cannot find assembly `../../gnome/gnome-sharp.dll' 
Log: 
  
error CS0006: Cannot find assembly
`../../gconf/GConf.PropertyEditors/gconf-sharp-peditors.dll' 
Log: 
  
Compilation failed: 2 error(s), 0 warnings 
make[3]: *** [sample.exe] Error 1 
make[3]: Leaving directory
`/root/Desktop/DaInstallare/Mono_develop/gtk-sharp-0.18/sample/gconf' 
make[2]: *** [all-recursive] Error 1 
make[2]: Leaving directory
`/root/Desktop/DaInstallare/Mono_develop/gtk-sharp-0.18/sample' 
make[1]: *** [all-recursive] Error 1 
make[1]: Leaving directory
`/root/Desktop/DaInstallare/Mono_develop/gtk-sharp-0.18' 
make: *** [all] Error 2 
 
* 
What can I do ? 
 
Thanks, 
 
Vale
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Looking for a Colombian Mono speaker

2004-05-05 Thread Ismael Olea

This text is in Spanish, if you don't understand it you can be safe
about not missing anything important :-)

Hola:

Estamos buscando una persona capaz de hablar con solvencia sobre el
proyecto Mono y explicarlo con solvencia a una comunidad de
profesionales e ingenieros de informática dentro de unas charlas que
tendrán lugar en Bogotá dentro de unos meses.

Se trata de una oportunidad muy buena que sería maravilloso aprovechar.

Un saludo.


-- 
A.Ismael Olea González

mailto:[EMAIL PROTECTED]  http://www.olea.org
http://aduaneros.olea.org, la ONG sin futuro.

El mundo debe empezar a tener miedo a un planeta OLEA
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Re: GC issue in mono 0.31

2004-05-05 Thread Nikolai Zhubr
Hello Hans,

I think my binutils are just of regular Redhat 7.1 linux:
binutils-2.10.91.0.2-3
GNU ld 2.10.91
Copyright 2001 Free Software Foundation, Inc.

I've just checked, there are no occurencies of Bsymbolic
anywhere within mono build tree.
The output of nm is attached.
-- 
Best regards,
 Nikolai Zhubr

Tuesday, 04 May, 2004, 1:41:32, you wrote:

 The problem is pretty clear:  The GC is treating the region
 between __data_start (0x80497b0) and the end of the libmono data segment
 (0x401851a0) as a single traceable data region.  That probably means
 _end is somehow defined by the linker to be the end of the libmono
 data segment instead of the end of the main data segment.  This
 is not how Linux linkers are supposed to behave, though I've
 seen similar behavior on other operating systems.  (This assumes that
 libmono doesn't use some other mechanism for setting DATAEND.)

 If your binutils and linker script came from a standard Linux distribution,
 it would be nice to track down how this happened.  If not, that's almost
 certainly the source of the problem.

 Another possible cause of the problem might be if the gc is linked into
 libmono, and that's linked with -Bsymbolic.  (That's probably
 not an unreasonable thing to do.  If so, there's probably a way to
 work around this.)

 The output of nm on the main executable and libmono might be useful
 in tracking this down further.

 Hans

nm_mono.txt.gz
Description: GNU Zip compressed data


nm_libmono.txt.gz
Description: GNU Zip compressed data


[Mono-list] RE: GC issue in mono 0.31

2004-05-05 Thread Boehm, Hans
I assume nothing is prelinked?  I don't think that was even an option
on RedHat 7.1.

It would be helpful to set a breakpoint in GC_add_roots_inner, and
verify that it's actually being called with (DATAEND, which is
defined to be) _end as its middle argument.

It looks like both mono and libmono define _end.  By the normal ELF
default symbol lookup rules, I believe libmono references to _end should see the
definition in the main program.  If this is indeed not happening, and if the
libmono developers aren't aware of other relevant issues, I would ask
on a binutils mailing list for ideas.

Hans

 -Original Message-
 From: Nikolai Zhubr [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, May 04, 2004 12:53 PM
 To: Boehm, Hans
 Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: Re: GC issue in mono 0.31
 
 
 Hello Hans,
 I think my binutils are just of regular Redhat 7.1 linux:
 binutils-2.10.91.0.2-3
 GNU ld 2.10.91
 Copyright 2001 Free Software Foundation, Inc.
 I've just checked, there are no occurencies of Bsymbolic
 anywhere within mono build tree.
 The output of nm is attached.
 -- 
 Best regards,
  Nikolai Zhubr
 Tuesday, 04 May, 2004, 1:41:32, you wrote:
  The problem is pretty clear:  The GC is treating the region
  between __data_start (0x80497b0) and the end of the libmono 
 data segment
  (0x401851a0) as a single traceable data region.  That probably means
  _end is somehow defined by the linker to be the end of the libmono
  data segment instead of the end of the main data segment.  This
  is not how Linux linkers are supposed to behave, though I've
  seen similar behavior on other operating systems.  (This 
 assumes that
  libmono doesn't use some other mechanism for setting DATAEND.)
  If your binutils and linker script came from a standard 
 Linux distribution,
  it would be nice to track down how this happened.  If not, 
 that's almost
  certainly the source of the problem.
  Another possible cause of the problem might be if the gc is 
 linked into
  libmono, and that's linked with -Bsymbolic.  (That's probably
  not an unreasonable thing to do.  If so, there's probably a way to
  work around this.)
  The output of nm on the main executable and libmono might be useful
  in tracking this down further.
  Hans
 
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


RE: [Mono-list] Getting started

2004-05-05 Thread Abhishek Srivastava
Hello All,

Red Carpet seems to be the favorite mode of installing mono.
However I have two questions

1. Will it work on Mandrake / Red Hat? (If not, is there an equivalent of
redcarpet on these flavors).
2.  Is it free?

Regards,
Abhishek.

-Original Message-
From: Jonathan Pryor [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 04, 2004 6:21 PM
To: abhishek srivastava
Cc: [EMAIL PROTECTED]
Subject: Re: [Mono-list] Getting started

On Tue, 2004-05-04 at 05:45, abhishek srivastava wrote:
snip/
 I have downloaded all the rpms. Is there any document giving me the 
 steps of installing mono?

Generally, the recommendation is to use Ximian Red Carpet, but manual RPM
installation is fairly straightforward.

 Sorry if this repeated question annoys you. Please give me the steps 
 of installation. I have dowloaded the rpms
 
 cairo-0.1.17-0.ximian.6.1.i386.rpm   
 mod_mono-0.7-0.ximian.6.0.i386.rpm
 cairo-devel-0.1.17-0.ximian.6.1.i386.rpm
mono-0.31-1.ximian.6.0.i386.rpm
 gtk-sharp-0.17-0.ximian.6.0.i386.rpm 
 mono-devel-0.31-1.ximian.6.0.i386.rpm
 gtk-sharp-gapi-0.17-0.ximian.6.0.i386.rpm
 monodoc-0.11-0.ximian.6.0.i386.rpm
 icu-2.6.1-1.ximian.6.3.i386.rpm  
 perl-XML-LibXML-1.54-1.ximian.6.1.i386.rpm
 libgdiplus-0.2-0.ximian.6.0.i386.rpm 
 perl-XML-LibXML-Common-0.13-1.ximian.6.1.i386.rpm
 libgdiplus-devel-0.2-0.ximian.6.0.i386.rpm   
 perl-XML-NamespaceSupport-1.08-1.ximian.6.1.i386.rpm
 libicu26-2.6.1-1.ximian.6.3.i386.rpm 
 perl-XML-NodeFilter-0.01-1.ximian.6.1.i386.rpm
 libicu-devel-2.6.1-1.ximian.6.3.i386.rpm 
 perl-XML-SAX-0.12-1.ximian.6.1.i386.rpm
 libpixman-0.1.0-1.ximian.6.2.i386.rpmxsp-0.9-0.ximian.6.0.i386.rpm
 libpixman-devel-0.1.0-1.ximian.6.2.i386.rpm

The short answer is that you don't worry about the install order.  Let RPM
worry about that. :-)

In principal, you should be able to do this:

$ rpm -ivh *.rpm

In practice, you might not be able to, as you might be missing required
packages.  For example, when I did this with the beta 1 take-3 packages, RPM
gave me errors for gtk-sharp-gapi, as I was missing a bunch of
perl-XML-* packages (which I see you have, but I didn't).  I wasn't
interested in installing all those packages, which brings us to an
alternative setup:

# Get an editable list of all the RPMs
$ ls -1 *.rpm  rpms.txt
# edit rpms.txt to include only the RPMs that are easily 
# installable
$ rpm -ivh `cat rpms.txt`

The backtick (`) operator, not to be confused with a normal single quote
(it's the key to the left of `1'), executes the command within the
backticks, and substitutes the command's standard output in-place.  This
allows us to easily trim down the set of packages to install, so that you
minimize the extra packages you require.

Some of the required packages aren't part of mono.  For example, glib2-devel
may be required for some of the packages.  You'll have to manually install
such external dependencies.

If the RPMs you downloaded are for you distribution, that should be it. 
Edit rpms.txt to include the packages you want, use `rpm -i', and you're
done.

If the RPMs aren't for your distribution, it may be impossible or you may
need to do more work.  (For example, I installed the Red Hat 9 RPMs on
Fedora Core 2 Test 2, and they weren't a complete match.)  `rpm --nodeps'
can be your friend.  (FC2T2 has a gtkhtml3 package installed, but
gtk-sharp wanted gtkhtml3.0, even though they appear to be the same.  I
just installed gtk-sharp with --nodeps to permit
installation.)

 - Jon


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


RE: [Mono-list] Getting started

2004-05-05 Thread Ravindra Kumar
Hello,
You get it along with XD desktop. However, for installing it
separately, you can have a look at http://www.ximian.com

-Ravindra

 Abhishek Srivastava [EMAIL PROTECTED] 5/5/2004 3:16:09 PM

Hello All,

Red Carpet seems to be the favorite mode of installing mono.
However I have two questions

1. Will it work on Mandrake / Red Hat? (If not, is there an equivalent
of
redcarpet on these flavors).
2.  Is it free?

Regards,
Abhishek.

-Original Message-
From: Jonathan Pryor [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 04, 2004 6:21 PM
To: abhishek srivastava
Cc: [EMAIL PROTECTED] 
Subject: Re: [Mono-list] Getting started

On Tue, 2004-05-04 at 05:45, abhishek srivastava wrote:
snip/
 I have downloaded all the rpms. Is there any document giving me the 
 steps of installing mono?

Generally, the recommendation is to use Ximian Red Carpet, but manual
RPM
installation is fairly straightforward.

 Sorry if this repeated question annoys you. Please give me the steps

 of installation. I have dowloaded the rpms
 
 cairo-0.1.17-0.ximian.6.1.i386.rpm   
 mod_mono-0.7-0.ximian.6.0.i386.rpm
 cairo-devel-0.1.17-0.ximian.6.1.i386.rpm
mono-0.31-1.ximian.6.0.i386.rpm
 gtk-sharp-0.17-0.ximian.6.0.i386.rpm 
 mono-devel-0.31-1.ximian.6.0.i386.rpm
 gtk-sharp-gapi-0.17-0.ximian.6.0.i386.rpm
 monodoc-0.11-0.ximian.6.0.i386.rpm
 icu-2.6.1-1.ximian.6.3.i386.rpm  
 perl-XML-LibXML-1.54-1.ximian.6.1.i386.rpm
 libgdiplus-0.2-0.ximian.6.0.i386.rpm 
 perl-XML-LibXML-Common-0.13-1.ximian.6.1.i386.rpm
 libgdiplus-devel-0.2-0.ximian.6.0.i386.rpm   
 perl-XML-NamespaceSupport-1.08-1.ximian.6.1.i386.rpm
 libicu26-2.6.1-1.ximian.6.3.i386.rpm 
 perl-XML-NodeFilter-0.01-1.ximian.6.1.i386.rpm
 libicu-devel-2.6.1-1.ximian.6.3.i386.rpm 
 perl-XML-SAX-0.12-1.ximian.6.1.i386.rpm
 libpixman-0.1.0-1.ximian.6.2.i386.rpm   
xsp-0.9-0.ximian.6.0.i386.rpm
 libpixman-devel-0.1.0-1.ximian.6.2.i386.rpm

The short answer is that you don't worry about the install order.  Let
RPM
worry about that. :-)

In principal, you should be able to do this:

$ rpm -ivh *.rpm

In practice, you might not be able to, as you might be missing
required
packages.  For example, when I did this with the beta 1 take-3
packages, RPM
gave me errors for gtk-sharp-gapi, as I was missing a bunch of
perl-XML-* packages (which I see you have, but I didn't).  I wasn't
interested in installing all those packages, which brings us to an
alternative setup:

# Get an editable list of all the RPMs
$ ls -1 *.rpm  rpms.txt
# edit rpms.txt to include only the RPMs that are easily 
# installable
$ rpm -ivh `cat rpms.txt`

The backtick (`) operator, not to be confused with a normal single
quote
(it's the key to the left of `1'), executes the command within the
backticks, and substitutes the command's standard output in-place. 
This
allows us to easily trim down the set of packages to install, so that
you
minimize the extra packages you require.

Some of the required packages aren't part of mono.  For example,
glib2-devel
may be required for some of the packages.  You'll have to manually
install
such external dependencies.

If the RPMs you downloaded are for you distribution, that should be it.

Edit rpms.txt to include the packages you want, use `rpm -i', and
you're
done.

If the RPMs aren't for your distribution, it may be impossible or you
may
need to do more work.  (For example, I installed the Red Hat 9 RPMs on
Fedora Core 2 Test 2, and they weren't a complete match.)  `rpm
--nodeps'
can be your friend.  (FC2T2 has a gtkhtml3 package installed, but
gtk-sharp wanted gtkhtml3.0, even though they appear to be the same. 
I
just installed gtk-sharp with --nodeps to permit
installation.)

 - Jon


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


[Mono-list] Re: [Gtk-sharp-list] Gtk# 0.91.1 released

2004-05-05 Thread Rodrigo Moya
Hi Mike!

On Tue, 2004-05-04 at 23:20 -0500, Mike Kestner wrote:
 Announcing release 0.91.1 of Gtk#, codenamed Chicken Stuffed
 Sandwich.  
 
congratulations!!

Only one thing though, which is that I think you should announce GTK#
releases in the GNOME lists also, as people do with python/C++/etc
bindings.

cheers

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


Re: [Mono-list] Re: [Gtk-sharp-list] Gtk# 0.91.1 released

2004-05-05 Thread Michal Moskal
On Wed, May 05, 2004 at 12:20:26PM +0200, Rodrigo Moya wrote:
 Hi Mike!
 
 On Tue, 2004-05-04 at 23:20 -0500, Mike Kestner wrote:
  Announcing release 0.91.1 of Gtk#, codenamed Chicken Stuffed
  Sandwich.  
  
 congratulations!!
 
 Only one thing though, which is that I think you should announce GTK#
 releases in the GNOME lists also, as people do with python/C++/etc
 bindings.

BTW. there is mutual dependency between gtk# and monodoc. monodoc is
optional for gtk#, so the cycle can be broken. But only way to get it to
compile is to first remove monodoc installed in old version and then
compile gtk-sharp. I guess there should be an option to Gtk#'s configure
to disable monodoc on damand.

-- 
: Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e+++ b++
: When in doubt, use brute force. -- Ken Thompson :: UL$ C++ E--- a?
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Mono path for mod_mono

2004-05-05 Thread amerigo5 amerigo5
Hi,
I am getting the following error on Apache/mod_mono:
Failed running '/usr/bin/mono /usr/bin/mod-mono-server.exe --filename 
/tmp/mod_mono_server --applications /'

I get the above error when I install mono using:
#./configure
#make
#make install
However, when I do:
#./configure --prefix=/usr
#make
#make install
Apache/mod_mono works fine.
Is anyone getting the same behavior?
Thanks.
George
_
MSN Toolbar provides one-click access to Hotmail from any Web page – FREE 
download! http://toolbar.msn.com/go/onm00200413ave/direct/01/

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


[Mono-list] mod_mono problems after upgrade to beta1

2004-05-05 Thread Trond Arve Nordheim
Hi!
After upgrading from mcs-0.31, mono-0.31, xsp-0.12 and mod_mono-0.8 to 
the beta1-versions (mcs-0.91, mono-0.91, xsp-0.13, mod_mono-0.9) I'm 
having some problems with the mod-mono-server.exe spawned by Apache upon 
the first request to a mono-handler.

This is what I get in my error-log:
** (/usr/bin/mod-mono-server.exe:4295): WARNING **: cant resolve 
internal call to 
System.Net.Sockets.Socket::Socket_internal(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType) 
(tested without signature also)

** (/usr/bin/mod-mono-server.exe:4295): WARNING **: cant resolve 
internal call to 
System.Net.Sockets.Socket::Socket_internal(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType) 
(tested without signature also)

** (/usr/bin/mod-mono-server.exe:4294): WARNING **: cant resolve 
internal call to System.Net.Sockets.Socket::Close_internal(intptr) 
(tested without signature also)

** (/usr/bin/mod-mono-server.exe:4294): WARNING **: cant resolve 
internal call to System.Net.Sockets.Socket::Close_internal(intptr) 
(tested without signature also)
[Wed May 05 12:05:40 2004] [error] Failed connecting and child didn't exit!

I've added some debugging to mod_mono.c to print the command before it's 
executed:
[Wed May 05 12:05:37 2004] [error] running '/usr/bin/mono 
/usr/bin/mod-mono-server.exe --filename /tmp/mod_mono_server 
--applications /mono:/usr/share/doc/xsp/test,/trond:/home/trond/mono 
--nonstop'

If I execute this manually (either as root or as the user Apache 2 is 
running as), it works.. That is, as long as I change the mode on 
/tmp/mod_mono_server. All mono-requests against the Apache server is 
working.

My system is Debian Testing (fully updated) running Apache 2.0.49. All 
Mono-packages are compiled from source.

Anyone know what might cause this?
--
Trond Arve Nordheim
 - This message is ROT13-encrypted twice for extra security
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problem with Mono-Develop gtk-sharp-0.18.tar.gz

2004-05-05 Thread Mike Kestner
On Wed, 2004-05-05 at 01:35, [EMAIL PROTECTED] wrote:
 I've downloaded mono packages required for MonoDevelop but when I try to run
 make 
 the compiler say: 
  
  
 ditors.dll /r:System.Drawing /resource:./sample.glade 
 error CS0006: Cannot find assembly `../../gnome/gnome-sharp.dll' 

This is fixed in version 0.91.1 which was released yesterday.

-- 
Mike Kestner [EMAIL PROTECTED]

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


[Mono-list] windows code pages?

2004-05-05 Thread Jaroslaw Kowalski



Hi!

I've noticed that I'm no longer able to process XML 
files encoded using windows-1252 and windows-1250 codepages. This applies to 
web.config, *.exe.config and any xml files I read. iso-8859-1, iso-8859-2 and 
utf-8 work fine.

I have ICU 2.8 installed from source and mono says 
it's using it. I wanted to check if the icudata contains the codepages so I've 
run:

# strings /opt/mono/lib/libicudata.so | grep 
"windows-125" | more

and it produced:

windows-1250windows-1251windows-1252windows-1253windows-1254windows-1255windows-1256-2000windows-1256windows-1257windows-1258windows-1250windows-1251windows-1252windows-1253windows-1254windows-1255windows-1256windows-1257windows-1258windows-1256-2000

which suggests that ICU is compiled with the 
appropriate support for windows codepages.

Do you have any idea what might have happened ? I 
remember it working correctly about 2 months ago.

Jarek


Re: [Mono-list] Re: [Gtk-sharp-list] Gtk# 0.91.1 released

2004-05-05 Thread Mike Kestner
On Wed, 2004-05-05 at 05:31, Michal Moskal wrote:

 BTW. there is mutual dependency between gtk# and monodoc. monodoc is
 optional for gtk#, so the cycle can be broken. But only way to get it to
 compile is to first remove monodoc installed in old version and then
 compile gtk-sharp. I guess there should be an option to Gtk#'s configure
 to disable monodoc on damand.

Yeah, this will hopefully be fixed in the next beta.  I think we need to
split the monodoc module into a tools and a browser module, but it
remains to be seen if Miguel agrees.  ;-)

-- 
Mike Kestner [EMAIL PROTECTED]

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


[Mono-list] Problem with Monodevelop gtk-sharp 0.91.1

2004-05-05 Thread beniniva

I've downloaded mono packages required for MonoDevelop but when I try to run
make also version 0.91.1 give me problems...
the compiler say:

*
make[3]: Entering directory
`/root/Desktop/DaInstallare/Mono_develop/gtk-sharp-0.91.1/glib'
/usr/local/bin/mcs /out:glib-sharp.dll /target:library  ./Boxed.cs
./ConnectBeforeAttribute.cs ./DefaultSignalHandlerAttribute.cs
./DelegateWrapper.cs ./EnumWrapper.cs ./FileUtils.cs ./GException.cs ./Idle.cs
./IWrapper.cs ./ListBase.cs ./List.cs ./Log.cs ./MainContext.cs
./ManagedValue.cs ./Markup.cs ./Marshaller.cs ./Object.cs ./ObjectManager.cs
./Opaque.cs ./SignalArgs.cs ./SignalAttribute.cs ./SignalCallback.cs ./SList.cs
./Source.cs ./Thread.cs ./Timeout.cs ./time_t_CustomMarshaler.cs
./TypeConverter.cs ./Type.cs ./TypeFundamentals.cs ./UnwrappedObject.cs
./ValueArray.cs ./Value.cs AssemblyInfo.cs
 
Unhandled Exception: System.NullReferenceException: A null value was found where
an object instance was required.
in 0x0002e Mono.Security.Cryptography.CryptoConvert:ToCapiKeyBlob
(System.Security.Cryptography.RSA,bool)
in 0x00032 Mono.Security.StrongName:get_PublicKey ()
in 0x00769 System.Reflection.Emit.AssemblyBuilder:Save (string)
in 0x00036 Mono.CSharp.CodeGen:Save (string)
in 0x014cb Mono.CSharp.Driver:MainDriver (string[])
in 0x00020 Mono.CSharp.Driver:Main (string[])
 
make[3]: *** [glib-sharp.dll] Error 1
make[3]: Leaving directory
`/root/Desktop/DaInstallare/Mono_develop/gtk-sharp-0.91.1/glib'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory
`/root/Desktop/DaInstallare/Mono_develop/gtk-sharp-0.91.1/glib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
`/root/Desktop/DaInstallare/Mono_develop/gtk-sharp-0.91.1'
make: *** [all] Error 2
[EMAIL PROTECTED] gtk-sharp-0.91.1]#

*
What can I do ?
 
Thanks,
 
Vale
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Mono 0.91 on Mac OS X 10.3

2004-05-05 Thread Peter Moffe
$ uname -a
Darwin Gentle.local 7.3.0 Darwin Kernel Version 7.3.0: Fri Mar  5 
14:22:55 PST 2004; root:xnu/xnu-517.3.15.obj~4/RELEASE_PPC  Power 
Macintosh powerpc

$ gcc --version
gcc (GCC) 3.3 20030304 (Apple Computer, Inc. build 1495)
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is 
NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR 
PURPOSE.

$ dpkg --list | grep glib
ii  glib   1.2.10-18  Common C routines used by Gtk+ and 
other lib
ii  glib-shlibs1.2.10-18  Common C routines used by Gtk+ and 
other lib
ii  glib2  2.2.3-2GTK+ - low-level core shared libraries
ii  glib2-dev  2.2.3-2GTK+ - low-level core development 
libraries
ii  glib2-shlibs   2.2.3-2GTK+ - low-level core libraries

$ ./configure --with-gc=included
.
.
.
GC:  included
ICU: yes. Version: 2.8
NPTL:yes
SIGALTSTACK: no
Engine:  Building and using the JIT
2.0 Alpha:   no
JNI support: no
$ make
.
.
.
creating libMonoPosixHelper.la
(cd .libs  rm -f libMonoPosixHelper.la  ln -s 
../libMonoPosixHelper.la libMonoPosixHelper.la)
Making all in web
make[2]: Nothing to be done for `all'.

$ sudo make install
.
.
.
Making install in net_1_1
make[3]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /usr/local/lib
 /usr/bin/install -c -m 644 mscorlib.dll /usr/local/lib/mscorlib.dll
MONO_PATH=. ../../mono/mini/mono --config ../../data/config 
./../gacutil.exe /i ./Accessibility.dll /f /package 1.0 /root 
/usr/local/lib
make[3]: *** [install-data-local] Error 1
make[2]: *** [install-am] Error 2
make[1]: *** [install-recursive] Error 1
make: *** [install-recursive] Error 1

It built fine without the --with-gc=included switch, but some of my 
code exits with a NoGCHandler error.  Any ideas to get around the 
compilation issue, but still use GC?

--
Peter Moffe
Software Engineer/IT Specialist
The McFaul  Lyons Group, LLC
215-441-4041 x1110
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono 0.91 on Mac OS X 10.3

2004-05-05 Thread Benjamin Reed
Peter Moffe wrote:
It built fine without the --with-gc=included switch, but some of my code 
exits with a NoGCHandler error.  Any ideas to get around the compilation 
issue, but still use GC?

read the readme, that says to use an external libgc?  =)
--
Benjamin Reed, a.k.a. RangerRick
[EMAIL PROTECTED] / http://ranger.befunk.com/
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] gentoo specific: ebuilds for mono and related packages

2004-05-05 Thread Richard Torkar

As Gentooers might have seen, Peter (a.k.a. latexer) et al., have kindly
provided ebuilds for mono and related packages.

However since the GAC is now in place there might be some problems doing
a simple emerge -uDv world. If you encounter a compile-time error then
try to unmerge the old version first.

I encountered this problem with the gecko-sharp-0.2.ebuild, but a simple
emerge unmerge gecko-sharp fixed it (as suggested by Peter).

This is posted to the list only as a FYI - if people will search the
archive.

/Richard

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


[Mono-list] version and release question

2004-05-05 Thread felipe maya
1)  Mono is released to 0.91 from 0.31?

2)  GTK# is released to 0.91 from 0.18?

3)  ByteFX sourceforge repository has released 0.76, now 0.91?

4)  Mono ByteFX is the same that mysqlnet?



THANKS
Consigue tu correo GRATIS en Manizales.com,
dale vida a tus mensajes con ms de 300 motivos gráficos.
Busca el portal de tu ciudad en http://66.216.122.105

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


Re: [Mono-list] Mono 0.91 on Mac OS X 10.3

2004-05-05 Thread Peter Moffe
Attila  Ben,
Thanks for your responses.
I got the latest stable sources from the link you posted for Boehm GC - 
6.2.  I configured it with the --enable-threads=pthreads switch and 
compiled and installed them without a hitch.

Here is the configuration, compilation, and installation output of 
mono-0.91.  I received a different error this time when doing the make 
install portion:

$ ./configure --with-gc=boehm
.
.
.
GC:  boehm
ICU: yes. Version: 2.8
NPTL:yes
SIGALTSTACK: no
Engine:  Building and using the JIT
2.0 Alpha:   no
JNI support: no
$ make
.
.
.
Making all in web
make[2]: Nothing to be done for `all'.
$ sudo make install
.
.
.
Unhandled Exception: System.NullReferenceException: Object reference 
not set to an instance of an object
make[3]: *** [install-data-local] Error 1
make[2]: *** [install-am] Error 2
make[1]: *** [install-recursive] Error 1
make: *** [install-recursive] Error 1


On May 5, 2004, at 12:29 PM, Attila Balogh wrote:
Peter Moffe wrote:
$ uname -a
Darwin Gentle.local 7.3.0 Darwin Kernel Version 7.3.0: Fri Mar  5 
14:22:55 PST 2004; root:xnu/xnu-517.3.15.obj~4/RELEASE_PPC  Power 
Macintosh powerpc

$ gcc --version
gcc (GCC) 3.3 20030304 (Apple Computer, Inc. build 1495)
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There 
is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR 
PURPOSE.

$ dpkg --list | grep glib
ii  glib   1.2.10-18  Common C routines used by Gtk+ and 
other lib
ii  glib-shlibs1.2.10-18  Common C routines used by Gtk+ and 
other lib
ii  glib2  2.2.3-2GTK+ - low-level core shared 
libraries
ii  glib2-dev  2.2.3-2GTK+ - low-level core development 
libraries
ii  glib2-shlibs   2.2.3-2GTK+ - low-level core libraries

$ ./configure --with-gc=included
.
hello,
use boehm gc. either from fink or build it for yourself 
(http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/, in this case 
at building use the --enable-thread=pthreads switch), and then use the 
switch --with-gc=boehm.

hth,
Attila
--
Peter Moffe
Software Engineer/IT Specialist
The McFaul  Lyons Group, LLC
215-441-4041 x1110
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] mod-mono-server problem

2004-05-05 Thread Jaroslaw Kowalski
I'm getting this error on each ASP.NET request. This causes httpd to return
a zero-length stream.

System.IO.FileNotFoundException: File 'mod-mono-server, Version=0.13.0.0,
Culture=neutral, PublicKeyToken=null' not found.
in 0x001ff System.Runtime.Remoting.Proxies.RealProxy:PrivateInvoke
(System.Runtime.Remoting.Proxies.RealProxy,System.Runtime.Remoting.Messaging
.IMessage,System.Exception,object[])

Any ideas? It worked fine until I rebuilt from CVS (make fullbuild) 3 hours
ago.

Jarek

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


Re: [Mono-list] Mono 0.91 on Mac OS X 10.3

2004-05-05 Thread Attila Balogh
Peter Moffe wrote:
Attila  Ben,
Thanks for your responses.
I got the latest stable sources from the link you posted for Boehm GC 
- 6.2.  I configured it with the --enable-threads=pthreads switch and 
compiled and installed them without a hitch.

Here is the configuration, compilation, and installation output of 
mono-0.91.  I received a different error this time when doing the 
make install portion:

hi Peter,
first of all, try this instead of 6.2: 
http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.3alpha5.tar.gz
(don't worry about it being unstable).
second, i always used autogen.sh instead of configure, plus i prefer the 
cvs version always:
if You're not familiar with cvs:
export CVSROOT=:pserver:[EMAIL PROTECTED]:/mono
cvs login
cvs -z3 co mono mcs gtk-sharp

(using cvs co -c  You get a list of all the packages available)
good luck ;]
Attila
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Compiling Beta on MacOS

2004-05-05 Thread Abram Gillespie
Hey guys,
I can finally get a successful make but, during make install I'm 
seeing this:

MONO_PATH=. ../../mono/mini/mono --config ../../data/config 
./../gacutil.exe /i ./Accessibility.dll /f /package 1.0 /root 
/usr/local/lib

Unhandled Exception: System.DllNotFoundException: libc
in 0x000e0 (wrapper managed-to-native) Mono.Tools.Driver:symlink 
(string,string)
in 0x00b04 Mono.Tools.Driver:InstallAssembly (string[])
in 0x007f4 Mono.Tools.Driver:Run (string[])
in 0x0005c Mono.Tools.Driver:Main (string[])

make[3]: *** [install-data-local] Error 1
make[2]: *** [install-am] Error 2
make[1]: *** [install-recursive] Error 1
make: *** [install-recursive] Error 1
I did a find / -name libc -print and came up with nothing.  Where can 
I get this library?  Is there a fink package I can install?

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


[Mono-list] Shell script for downloading mono packages

2004-05-05 Thread Antonio Ognio
Hi everyone,

Told Duncan Mak on irc I had done a simple shell
script to download Mono Beta 1 packages from the web
using wget. He suggested I could post it here on the
list, so here it is.

I guess it could be posted on the Mono download page
and even run from the web using wget or lynx. I've
uploaded it to my site so you can run it like this:

lynx -source http://gnrfan.org/go-Mono-Beta1-FC1.sh | sh

or

wget -q -O - http://gnrfan.org/go-Mono-Beta1-FC1.sh | sh

Please try it if it's helpful to you and if it's helpful
to post it on the mono website please lemme know to
modify it for the other distributions..

Bye,

Antonio
Lima-Peru.



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


Re: [Mono-list] mod-mono-server problem

2004-05-05 Thread Jaroslaw Kowalski
BTW. Same error with 'xsp'.

This looks like a GAC/strongnaming/assembly resolver issue.

I found a workaround - when I give 'xsp.exe' and 'mod-mono-server.exe' the
strong name (by signing it with a generated key) the problem goes away.

Jarek

- Original Message - 
From: Jaroslaw Kowalski [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 05, 2004 7:31 PM
Subject: [Mono-list] mod-mono-server problem


 I'm getting this error on each ASP.NET request. This causes httpd to
return
 a zero-length stream.

 System.IO.FileNotFoundException: File 'mod-mono-server, Version=0.13.0.0,
 Culture=neutral, PublicKeyToken=null' not found.
 in 0x001ff System.Runtime.Remoting.Proxies.RealProxy:PrivateInvoke

(System.Runtime.Remoting.Proxies.RealProxy,System.Runtime.Remoting.Messaging
 .IMessage,System.Exception,object[])

 Any ideas? It worked fine until I rebuilt from CVS (make fullbuild) 3
hours
 ago.

 Jarek

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


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


Re: [Mono-list] mod-mono-server problem

2004-05-05 Thread yoros

How can we do that ?

Regards,

Pedro


On Wed, May 05, 2004 at 09:16:09PM +0200, Jaroslaw Kowalski wrote:
 BTW. Same error with 'xsp'.
 
 This looks like a GAC/strongnaming/assembly resolver issue.
 
 I found a workaround - when I give 'xsp.exe' and 'mod-mono-server.exe' the
 strong name (by signing it with a generated key) the problem goes away.
 
 Jarek
 
 - Original Message - 
 From: Jaroslaw Kowalski [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, May 05, 2004 7:31 PM
 Subject: [Mono-list] mod-mono-server problem
 
 
  I'm getting this error on each ASP.NET request. This causes httpd to
 return
  a zero-length stream.
 
  System.IO.FileNotFoundException: File 'mod-mono-server, Version=0.13.0.0,
  Culture=neutral, PublicKeyToken=null' not found.
  in 0x001ff System.Runtime.Remoting.Proxies.RealProxy:PrivateInvoke
 
 (System.Runtime.Remoting.Proxies.RealProxy,System.Runtime.Remoting.Messaging
  .IMessage,System.Exception,object[])
 
  Any ideas? It worked fine until I rebuilt from CVS (make fullbuild) 3
 hours
  ago.
 
  Jarek
 
  ___
  Mono-list maillist  -  [EMAIL PROTECTED]
  http://lists.ximian.com/mailman/listinfo/mono-list
 
 
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list

-- 
Pedro Martínez Juliá
\  [EMAIL PROTECTED]
)|[EMAIL PROTECTED]
/http://yoros.dyndns.org
Socio HispaLinux #311
Usuario Linux #275438 - http://counter.li.org
GnuPG public information:  pub  1024D/74F1D3AC
Key fingerprint = 8431 7B47 D2B4 5A46 5F8E  534F 588B E285 74F1 D3AC
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] mod-mono-server problem

2004-05-05 Thread Jaroslaw Kowalski
I did:

$ sn -k test.snk

and added

[assembly: AssemblyKeyFile(test.snk)]

at the beginning of xsp/src/server.cs file.

Jarek
- Original Message - 
From: [EMAIL PROTECTED]
To: Jaroslaw Kowalski [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, May 05, 2004 9:22 PM
Subject: Re: [Mono-list] mod-mono-server problem



 How can we do that ?

 Regards,

 Pedro


 On Wed, May 05, 2004 at 09:16:09PM +0200, Jaroslaw Kowalski wrote:
  BTW. Same error with 'xsp'.
 
  This looks like a GAC/strongnaming/assembly resolver issue.
 
  I found a workaround - when I give 'xsp.exe' and 'mod-mono-server.exe'
the
  strong name (by signing it with a generated key) the problem goes away.
 
  Jarek
 
  - Original Message - 
  From: Jaroslaw Kowalski [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Wednesday, May 05, 2004 7:31 PM
  Subject: [Mono-list] mod-mono-server problem
 
 
   I'm getting this error on each ASP.NET request. This causes httpd to
  return
   a zero-length stream.
  
   System.IO.FileNotFoundException: File 'mod-mono-server,
Version=0.13.0.0,
   Culture=neutral, PublicKeyToken=null' not found.
   in 0x001ff System.Runtime.Remoting.Proxies.RealProxy:PrivateInvoke
  
 
(System.Runtime.Remoting.Proxies.RealProxy,System.Runtime.Remoting.Messaging
   .IMessage,System.Exception,object[])
  
   Any ideas? It worked fine until I rebuilt from CVS (make fullbuild) 3
  hours
   ago.
  
   Jarek
  
   ___
   Mono-list maillist  -  [EMAIL PROTECTED]
   http://lists.ximian.com/mailman/listinfo/mono-list
  
 
  ___
  Mono-list maillist  -  [EMAIL PROTECTED]
  http://lists.ximian.com/mailman/listinfo/mono-list

 -- 
 Pedro Martínez Juliá
 \  [EMAIL PROTECTED]
 )|[EMAIL PROTECTED]
 /http://yoros.dyndns.org
 Socio HispaLinux #311
 Usuario Linux #275438 - http://counter.li.org
 GnuPG public information:  pub  1024D/74F1D3AC
 Key fingerprint = 8431 7B47 D2B4 5A46 5F8E  534F 588B E285 74F1 D3AC


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


Re: [Mono-list] version and release question

2004-05-05 Thread Erik Dasque
Yes we moved everything to .91 to mark Beta 1 for 1.0 

Erik

On May 5, 2004, at 2:01 PM, felipe maya wrote:

x-tad-smaller1) Mono is released to 0.91 from 0.31? /x-tad-smallerx-tad-smaller 2) GTK# is released to 0.91 from 0.18? /x-tad-smallerx-tad-smaller 3) ByteFX sourceforge repository has released 0.76, now 0.91? /x-tad-smallerx-tad-smaller 4) Mono ByteFX is the same that mysqlnet? /x-tad-smallerx-tad-smaller THANKS/x-tad-smallerx-tad-smallerConsigue tu correo GRATIS en /x-tad-smallerx-tad-smallerManizales.com/x-tad-smallerx-tad-smaller,/x-tad-smallerx-tad-smaller dale vida a tus mensajes con más de 300 motivos gráficos./x-tad-smallerx-tad-smaller Busca el portal de tu ciudad en /x-tad-smallerx-tad-smallerhttp://66.216.122.105/x-tad-smallerx-tad-smaller ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list/x-tad-smaller

Re: [Mono-list] mod-mono-server problem

2004-05-05 Thread yoros

Thank you, it worked right.

See you,

Pedro


On Wed, May 05, 2004 at 09:25:04PM +0200, Jaroslaw Kowalski wrote:
 I did:
 
 $ sn -k test.snk
 
 and added
 
 [assembly: AssemblyKeyFile(test.snk)]
 
 at the beginning of xsp/src/server.cs file.
 
 Jarek
 - Original Message - 
 From: [EMAIL PROTECTED]
 To: Jaroslaw Kowalski [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Wednesday, May 05, 2004 9:22 PM
 Subject: Re: [Mono-list] mod-mono-server problem
 
 
 
  How can we do that ?
 
  Regards,
 
  Pedro
 
 
  On Wed, May 05, 2004 at 09:16:09PM +0200, Jaroslaw Kowalski wrote:
   BTW. Same error with 'xsp'.
  
   This looks like a GAC/strongnaming/assembly resolver issue.
  
   I found a workaround - when I give 'xsp.exe' and 'mod-mono-server.exe'
 the
   strong name (by signing it with a generated key) the problem goes away.
  
   Jarek
  
   - Original Message - 
   From: Jaroslaw Kowalski [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Sent: Wednesday, May 05, 2004 7:31 PM
   Subject: [Mono-list] mod-mono-server problem
  
  
I'm getting this error on each ASP.NET request. This causes httpd to
   return
a zero-length stream.
   
System.IO.FileNotFoundException: File 'mod-mono-server,
 Version=0.13.0.0,
Culture=neutral, PublicKeyToken=null' not found.
in 0x001ff System.Runtime.Remoting.Proxies.RealProxy:PrivateInvoke
   
  
 (System.Runtime.Remoting.Proxies.RealProxy,System.Runtime.Remoting.Messaging
.IMessage,System.Exception,object[])
   
Any ideas? It worked fine until I rebuilt from CVS (make fullbuild) 3
   hours
ago.
   
Jarek
   
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list
   
  
   ___
   Mono-list maillist  -  [EMAIL PROTECTED]
   http://lists.ximian.com/mailman/listinfo/mono-list
 
  -- 
  Pedro Martínez Juliá
  \  [EMAIL PROTECTED]
  )|[EMAIL PROTECTED]
  /http://yoros.dyndns.org
  Socio HispaLinux #311
  Usuario Linux #275438 - http://counter.li.org
  GnuPG public information:  pub  1024D/74F1D3AC
  Key fingerprint = 8431 7B47 D2B4 5A46 5F8E  534F 588B E285 74F1 D3AC
 
 
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list

-- 
Pedro Martínez Juliá
\  [EMAIL PROTECTED]
)|[EMAIL PROTECTED]
/http://yoros.dyndns.org
Socio HispaLinux #311
Usuario Linux #275438 - http://counter.li.org
GnuPG public information:  pub  1024D/74F1D3AC
Key fingerprint = 8431 7B47 D2B4 5A46 5F8E  534F 588B E285 74F1 D3AC
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problem with Mono-Develop gtk-sharp-0.18.tar.gz

2004-05-05 Thread Todd Berman
You need gnome-sharp to be built.

if you run autogen.sh it most likely says something like:

* gnome-sharp: no

You need to install -dev packages until it says yes. I am not 100% sure
(you can look at config.log to see what you are missing specifically)
but I believe you need:

libgnome2-dev libgnomeui2-dev libgnomeprintui22-dev libgnomecanvas2-dev 

depending on your distro they might be named something different.

--Todd

On Wed, 2004-05-05 at 08:35 +0200, [EMAIL PROTECTED] wrote:
 I've downloaded mono packages required for MonoDevelop but when I try to run
 make 
 the compiler say: 
  
  
 ditors.dll /r:System.Drawing /resource:./sample.glade 
 error CS0006: Cannot find assembly `../../gnome/gnome-sharp.dll' 
 Log: 
   
 error CS0006: Cannot find assembly
 `../../gconf/GConf.PropertyEditors/gconf-sharp-peditors.dll' 
 Log: 
   
 Compilation failed: 2 error(s), 0 warnings 
 make[3]: *** [sample.exe] Error 1 
 make[3]: Leaving directory
 `/root/Desktop/DaInstallare/Mono_develop/gtk-sharp-0.18/sample/gconf' 
 make[2]: *** [all-recursive] Error 1 
 make[2]: Leaving directory
 `/root/Desktop/DaInstallare/Mono_develop/gtk-sharp-0.18/sample' 
 make[1]: *** [all-recursive] Error 1 
 make[1]: Leaving directory
 `/root/Desktop/DaInstallare/Mono_develop/gtk-sharp-0.18' 
 make: *** [all] Error 2 
  
 * 
 What can I do ? 
  
 Thanks, 
  
 Vale
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list

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


Re: [Mono-list] mod-mono-server problem

2004-05-05 Thread Jaroslaw Kowalski
It works again after Jackson's patch. Thanks.

Jarek

- Original Message - 
From: [EMAIL PROTECTED]
To: Jaroslaw Kowalski [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Wednesday, May 05, 2004 9:54 PM
Subject: Re: [Mono-list] mod-mono-server problem



 Thank you, it worked right.

 See you,

 Pedro


 On Wed, May 05, 2004 at 09:25:04PM +0200, Jaroslaw Kowalski wrote:
  I did:
 
  $ sn -k test.snk
 
  and added
 
  [assembly: AssemblyKeyFile(test.snk)]
 
  at the beginning of xsp/src/server.cs file.
 
  Jarek
  - Original Message - 
  From: [EMAIL PROTECTED]
  To: Jaroslaw Kowalski [EMAIL PROTECTED]
  Cc: [EMAIL PROTECTED]
  Sent: Wednesday, May 05, 2004 9:22 PM
  Subject: Re: [Mono-list] mod-mono-server problem
 
 
  
   How can we do that ?
  
   Regards,
  
   Pedro
  
  
   On Wed, May 05, 2004 at 09:16:09PM +0200, Jaroslaw Kowalski wrote:
BTW. Same error with 'xsp'.
   
This looks like a GAC/strongnaming/assembly resolver issue.
   
I found a workaround - when I give 'xsp.exe' and
'mod-mono-server.exe'
  the
strong name (by signing it with a generated key) the problem goes
away.
   
Jarek
   
- Original Message - 
From: Jaroslaw Kowalski [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 05, 2004 7:31 PM
Subject: [Mono-list] mod-mono-server problem
   
   
 I'm getting this error on each ASP.NET request. This causes httpd
to
return
 a zero-length stream.

 System.IO.FileNotFoundException: File 'mod-mono-server,
  Version=0.13.0.0,
 Culture=neutral, PublicKeyToken=null' not found.
 in 0x001ff
System.Runtime.Remoting.Proxies.RealProxy:PrivateInvoke

   
 
(System.Runtime.Remoting.Proxies.RealProxy,System.Runtime.Remoting.Messaging
 .IMessage,System.Exception,object[])

 Any ideas? It worked fine until I rebuilt from CVS (make
fullbuild) 3
hours
 ago.

 Jarek

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

   
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list
  
   -- 
   Pedro Martínez Juliá
   \  [EMAIL PROTECTED]
   )|[EMAIL PROTECTED]
   /http://yoros.dyndns.org
   Socio HispaLinux #311
   Usuario Linux #275438 - http://counter.li.org
   GnuPG public information:  pub  1024D/74F1D3AC
   Key fingerprint = 8431 7B47 D2B4 5A46 5F8E  534F 588B E285 74F1 D3AC
  
 
  ___
  Mono-list maillist  -  [EMAIL PROTECTED]
  http://lists.ximian.com/mailman/listinfo/mono-list

 -- 
 Pedro Martínez Juliá
 \  [EMAIL PROTECTED]
 )|[EMAIL PROTECTED]
 /http://yoros.dyndns.org
 Socio HispaLinux #311
 Usuario Linux #275438 - http://counter.li.org
 GnuPG public information:  pub  1024D/74F1D3AC
 Key fingerprint = 8431 7B47 D2B4 5A46 5F8E  534F 588B E285 74F1 D3AC
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list


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


Re: [Mono-list] Socket.Select problem

2004-05-05 Thread Dennis Jarosch
Hi Guys!

Thanx for your answers! I actually found out what my major mistake was:

 2) the time is in *microseconds*, so your code waits for a total of 5

I actually missed this *microseconds* point! :-/ No wonder my transfers
were borked, 5 milliseconds isn't even enough for my local network. :)

Using select seemed straight-forward to me, being a C++ hacker. I have
used Poll() now with a longer timeout and it works.

 You said that Select does not work correctly, I think it is because
 after one timeout it quits.

Yupp, I posted very simple alpha-code and I was aware of that. I'll
implemented error-checking and re-reads now.

Thanks again!
Dennis

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


[Mono-list] TLS problems with Red Hat 9 rpms.

2004-05-05 Thread Kenneth Rohde Christiansen
Hi there,

The new Mono Beta 1 RPMS for Red Hat 9 doesn't seem to work.

I get the following error upon running 'mono':

$ mono
mono: error while loading shared libraries: libmono.so.0: cannot handle TLS data

Should I bugzilla this somewhere or doesn't anyone know what is wrong?

Cheers and thanks for a great product!
Kenneth 


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


Re: [Mono-list] cvs make fullbuild

2004-05-05 Thread Chris Turchin
hi,

if anyone else was having trouble building from cvs, Raja R Harinath
[EMAIL PROTECTED] posted a good tip on monday (which i missed last
night):

--

Edit Makefile.am and replace 'install-dist_monobinsDATA' with
'install-monobinsDATA' in the 'xinstall-runtime' rule.

--


 But to get it running for me, not only did I have to
'install-dist_monobinsDATA' but also the 'install-dist_corlibDATA'
statement on the following line with 'install-corlibDATA'. 

i hope that helps someone out there...

regards,
--chris

On Wed, 2004-05-05 at 01:05, Chris Turchin wrote:
 hi,
 
 for the last few days i have not gotten cvs to build correctly.  tonight
 i even installed the newest  monocharge (w/ recharge.sh) and checked out
 clean versions of mono and mcs from cvs. make fullbuild is  giving me:
 
 make[3]: Nothing to be done for `install-data-am'.
 make[3]: Leaving directory
 `/home/chris/Documents/dev/mono-cvs/mono/mono/profiler'
 make[2]: Leaving directory
 `/home/chris/Documents/dev/mono-cvs/mono/mono/profiler'
 make[2]: Entering directory
 `/home/chris/Documents/dev/mono-cvs/mono/mono'
 make[3]: Entering directory
 `/home/chris/Documents/dev/mono-cvs/mono/mono'
 make[3]: Nothing to be done for `install-exec-am'.
 make[3]: Nothing to be done for `install-data-am'.
 make[3]: Leaving directory
 `/home/chris/Documents/dev/mono-cvs/mono/mono'
 make[2]: Leaving directory
 `/home/chris/Documents/dev/mono-cvs/mono/mono'
 make[1]: Leaving directory
 `/home/chris/Documents/dev/mono-cvs/mono/mono'
 cd runtime  make dist_monobins_DATA=mcs.exe install-dist_monobinsDATA
 make[1]: Entering directory
 `/home/chris/Documents/dev/mono-cvs/mono/runtime'
 make[1]: *** No rule to make target `install-dist_monobinsDATA'.  Stop.
 make[1]: Leaving directory
 `/home/chris/Documents/dev/mono-cvs/mono/runtime'
 make: *** [xinstall-runtime] Error 2
 
 and regular make issues another error: 
 
 if test -f ../../mcs/mcs/mcs.exe; then f=../../mcs/mcs/mcs.exe; else
 f=/mcs.exe; fi; \
 echo cp -f $f .; \
 cp -f $f .
 cp -f ../../mcs/mcs/mcs.exe .
 if test -f ../../mcs/mbas/mbas.exe; then f=../../mcs/mbas/mbas.exe; else
 f=/mbas.exe; fi; \
 echo cp -f $f .; \
 cp -f $f .
 cp -f /mbas.exe .
 cp: cannot stat `/mbas.exe': No such file or directory
 make[3]: *** [mbas.exe] Error 1
 make[3]: Leaving directory
 `/home/chris/Documents/dev/mono-cvs/mono/runtime'
 make[2]: *** [all-recursive] Error 1
 make[2]: Leaving directory
 `/home/chris/Documents/dev/mono-cvs/mono/runtime'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory `/home/chris/Documents/dev/mono-cvs/mono'
 make: *** [all] Error 2
 
 
 i am out of ideas on my  end. can someone from the list offer an
 enlightening word  or two?
 
 thanks.
 
 regards,
 
 --chris
 
 ps. mdk 9.1, gcc 3.2.2, automake1.6-1.7.2-3mdk
 
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Mono Beta 1 RPMs

2004-05-05 Thread Tracy Barlow
For what reason are RPMS for Madrake not being built?
--
Regards
Tracy Barlow
TracyAnne Software
Phone  07 4124 5092
Mobile 0416 00 38 61
Email  [EMAIL PROTECTED]
Webwww.tracyannesoftware.com/
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] problem with mono beta running on cygwin console

2004-05-05 Thread Ricardo Varela [phobeo]
hallo,

I've just upgraded from 0.31 to beta1 on a WinXP machine. From XP's
cmd.exe console mono seems to run alright, but if I try to run from a
Cygwin console (on bash) I get the following:

$ mono
Pops up a windows alert with text: mono.exe - Unable to locate component.
This application has failed to start because libglib-2.0-0.dll was not
found. Re-installing the application may fix this problem)

$ mcs
export: Files/Mono-Beta1/lib: bad variable name
export: Files/Mono-Beta1/etc/mono: bad variable name
C:/Program: not found

(- I'd reckon this is due to mcs script exporting Windows-like path
variables with spaces without quoting)

And, talking about scripts...another thing: Mr. Icaza, better check the
beta bin/ directory, because i'd reckon there are lots of execs hard-coded
to your /home };P

p.e.
$ al
exec: /home/miguel/mono/mb/install/bin/mono: not found
$ cat al
#!/bin/sh
exec /home/miguel/mono/mb/install/bin/mono c:/mono/mb/install/lib/al.exe $@

This didn't happen in previous releases. (I think maybe these have slipped
through in the heat of the moment of the beta release)

Saludos!

---
Ricardo Varela



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


[PATCH] Re: [Mono-list] windows code pages?

2004-05-05 Thread Jaroslaw Kowalski
I found the solution to this problem. I18N was broken badly.
As one could expect it was related to GAC. I18N.Common.Manager called
Assembly.Load() without specifying the fully qualified name.

Patch is attached. Is it ok to commit?

Jarek

- Original Message - 
From: Jaroslaw Kowalski [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 05, 2004 4:11 PM
Subject: [Mono-list] windows code pages?


Hi!

I've noticed that I'm no longer able to process XML files encoded using
windows-1252 and windows-1250 codepages. This applies to web.config,
*.exe.config and any xml files I read. iso-8859-1, iso-8859-2 and utf-8 work
fine.

I have ICU 2.8 installed from source and mono says it's using it. I wanted
to check if the icudata contains the codepages so I've run:

# strings /opt/mono/lib/libicudata.so | grep windows-125 | more

and it produced:

windows-1250
windows-1251
windows-1252
windows-1253
windows-1254
windows-1255
windows-1256-2000
windows-1256
windows-1257
windows-1258
windows-1250
windows-1251
windows-1252
windows-1253
windows-1254
windows-1255
windows-1256
windows-1257
windows-1258
windows-1256-2000

which suggests that ICU is compiled with the appropriate support for windows
codepages.

Do you have any idea what might have happened ? I remember it working
correctly about 2 months ago.

Jarek


i18n.patch
Description: Binary data


Re: [Mono-list] Mono path for mod_mono

2004-05-05 Thread Gonzalo Paniagua Javier
El mié, 05-05-2004 a las 14:06, amerigo5 amerigo5 escribió:
 Hi,
 
 I am getting the following error on Apache/mod_mono:
 
 Failed running '/usr/bin/mono /usr/bin/mod-mono-server.exe --filename 
 /tmp/mod_mono_server --applications /'
 
 I get the above error when I install mono using:
 
 #./configure
 #make
 #make install

If you run configure without using --prefix option, it will install in
/usr/local and then, if the prefix for mod_mono is /usr, you need to
provide the full path to mono executable using the module configuration
directives (man mod_mono).

-Gonzalo


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


Re: [Mono-list] mod_mono problems after upgrade to beta1

2004-05-05 Thread Gonzalo Paniagua Javier
El mié, 05-05-2004 a las 14:16, Trond Arve Nordheim escribió:
 Hi!
 
 After upgrading from mcs-0.31, mono-0.31, xsp-0.12 and mod_mono-0.8 to 
 the beta1-versions (mcs-0.91, mono-0.91, xsp-0.13, mod_mono-0.9) I'm 
 having some problems with the mod-mono-server.exe spawned by Apache upon 
 the first request to a mono-handler.
 
 This is what I get in my error-log:
 
 ** (/usr/bin/mod-mono-server.exe:4295): WARNING **: cant resolve 
 internal call to 
 System.Net.Sockets.Socket::Socket_internal(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType)
  
 (tested without signature also)
 
 ** (/usr/bin/mod-mono-server.exe:4295): WARNING **: cant resolve 
 internal call to 
 System.Net.Sockets.Socket::Socket_internal(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType)
  
 (tested without signature also)
 
 ** (/usr/bin/mod-mono-server.exe:4294): WARNING **: cant resolve 
 internal call to System.Net.Sockets.Socket::Close_internal(intptr) 
 (tested without signature also)
 
 ** (/usr/bin/mod-mono-server.exe:4294): WARNING **: cant resolve 
 internal call to System.Net.Sockets.Socket::Close_internal(intptr) 
 (tested without signature also)
 [Wed May 05 12:05:40 2004] [error] Failed connecting and child didn't exit!
 
 I've added some debugging to mod_mono.c to print the command before it's 
 executed:
 [Wed May 05 12:05:37 2004] [error] running '/usr/bin/mono 
 /usr/bin/mod-mono-server.exe --filename /tmp/mod_mono_server 
 --applications /mono:/usr/share/doc/xsp/test,/trond:/home/trond/mono 
 --nonstop'
 
 If I execute this manually (either as root or as the user Apache 2 is 
 running as), it works.. That is, as long as I change the mode on 
 /tmp/mod_mono_server. All mono-requests against the Apache server is 
 working.
 
 My system is Debian Testing (fully updated) running Apache 2.0.49. All 
 Mono-packages are compiled from source.
 
 Anyone know what might cause this?

Mmm, weird problem. That internal call has been there for a long time
and hasn't changed. Ensure you don't have any other mono installation
around. Otherwise, looks like an installation problem.

-Gonzalo


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


Re: [PATCH] Re: [Mono-list] windows code pages?

2004-05-05 Thread Gonzalo Paniagua Javier
El jue, 06-05-2004 a las 00:26, Jaroslaw Kowalski escribió:
 I found the solution to this problem. I18N was broken badly.
 As one could expect it was related to GAC. I18N.Common.Manager called
 Assembly.Load() without specifying the fully qualified name.
 
 Patch is attached. Is it ok to commit?

I'd rather go for using Assembly.LoadWithPartialName.

-Gonzalo


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


[Mono-list] More getting started #2

2004-05-05 Thread doug Stewart
I have been using  *#develop (short for SharpDevelop)
* is there a mono +whatever  that is similar to *#develop *in the 
windows  environment
Doug Stewart
*
*
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono Beta 1.0

2004-05-05 Thread Miguel de Icaza
Hello,

 I notice that once again there are no rpms for Mandrake. Will there ever 
 be rpms for Mandrake?

We do not have Mandrake machines in my team currently, but one thing we
could do is publish the build-buddy description files, so third parties
could build their own packages with the same configuration options that
we have on their distros.

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


Re: [Mono-list] cvs make fullbuild

2004-05-05 Thread Robert Shade
It's not working for me either.  There must be something wrong if it's 
working for some and not for others.

My autoconf is 2.59 and my automake is 1.7.6.  Can someone who's cvs is 
working for please send in their versions?

rob
On May 5, 2004, at 5:40 PM, Chris Turchin wrote:
hi,
if anyone else was having trouble building from cvs, Raja R Harinath
[EMAIL PROTECTED] posted a good tip on monday (which i missed last
night):
--
Edit Makefile.am and replace 'install-dist_monobinsDATA' with
'install-monobinsDATA' in the 'xinstall-runtime' rule.
--
 But to get it running for me, not only did I have to
'install-dist_monobinsDATA' but also the 'install-dist_corlibDATA'
statement on the following line with 'install-corlibDATA'.
i hope that helps someone out there...
regards,
--chris
On Wed, 2004-05-05 at 01:05, Chris Turchin wrote:
hi,
for the last few days i have not gotten cvs to build correctly.  
tonight
i even installed the newest  monocharge (w/ recharge.sh) and checked 
out
clean versions of mono and mcs from cvs. make fullbuild is  giving me:

make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/home/chris/Documents/dev/mono-cvs/mono/mono/profiler'
make[2]: Leaving directory
`/home/chris/Documents/dev/mono-cvs/mono/mono/profiler'
make[2]: Entering directory
`/home/chris/Documents/dev/mono-cvs/mono/mono'
make[3]: Entering directory
`/home/chris/Documents/dev/mono-cvs/mono/mono'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/home/chris/Documents/dev/mono-cvs/mono/mono'
make[2]: Leaving directory
`/home/chris/Documents/dev/mono-cvs/mono/mono'
make[1]: Leaving directory
`/home/chris/Documents/dev/mono-cvs/mono/mono'
cd runtime  make dist_monobins_DATA=mcs.exe 
install-dist_monobinsDATA
make[1]: Entering directory
`/home/chris/Documents/dev/mono-cvs/mono/runtime'
make[1]: *** No rule to make target `install-dist_monobinsDATA'.  
Stop.
make[1]: Leaving directory
`/home/chris/Documents/dev/mono-cvs/mono/runtime'
make: *** [xinstall-runtime] Error 2

and regular make issues another error:
if test -f ../../mcs/mcs/mcs.exe; then f=../../mcs/mcs/mcs.exe; else
f=/mcs.exe; fi; \
echo cp -f $f .; \
cp -f $f .
cp -f ../../mcs/mcs/mcs.exe .
if test -f ../../mcs/mbas/mbas.exe; then f=../../mcs/mbas/mbas.exe; 
else
f=/mbas.exe; fi; \
echo cp -f $f .; \
cp -f $f .
cp -f /mbas.exe .
cp: cannot stat `/mbas.exe': No such file or directory
make[3]: *** [mbas.exe] Error 1
make[3]: Leaving directory
`/home/chris/Documents/dev/mono-cvs/mono/runtime'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory
`/home/chris/Documents/dev/mono-cvs/mono/runtime'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/chris/Documents/dev/mono-cvs/mono'
make: *** [all] Error 2

i am out of ideas on my  end. can someone from the list offer an
enlightening word  or two?
thanks.
regards,
--chris
ps. mdk 9.1, gcc 3.2.2, automake1.6-1.7.2-3mdk
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Npgsql and the new mono beta.

2004-05-05 Thread Roberto Jimeno
Hi all,

I've just upgraded to the beta version of mono. Some of my programs are
not compiling anymore because the assembly for Npgsql can't be found.

Please tell me what should I do in order to make my Npgsql programs able
to compile again.

TIA.


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


Re: [Mono-list] Mono 0.91 on Mac OS X 10.3

2004-05-05 Thread Peter Moffe
After using gc6.3alpha5, everything worked great.  Thanks for all your  
help, Attila!

On May 5, 2004, at 2:00 PM, Attila Balogh wrote:
Peter Moffe wrote:
Attila  Ben,
Thanks for your responses.
I got the latest stable sources from the link you posted for Boehm GC  
- 6.2.  I configured it with the --enable-threads=pthreads switch and  
compiled and installed them without a hitch.

Here is the configuration, compilation, and installation output of  
mono-0.91.  I received a different error this time when doing the  
make install portion:

hi Peter,
first of all, try this instead of 6.2:  
http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/ 
gc6.3alpha5.tar.gz
(don't worry about it being unstable).
second, i always used autogen.sh instead of configure, plus i prefer  
the cvs version always:
if You're not familiar with cvs:
export CVSROOT=:pserver:[EMAIL PROTECTED]:/mono
cvs login
cvs -z3 co mono mcs gtk-sharp

(using cvs co -c  You get a list of all the packages available)
good luck ;]
Attila
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list
--
Peter Moffe
Software Engineer/IT Specialist
The McFaul  Lyons Group, LLC
215-441-4041 x1110
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Mod_mono beta 1 problems

2004-05-05 Thread Jeff Love








I have installed the Redhat 9 RPMS for beta 1 along with mod_mono
version 9 compiled from source.



I installed from source using the install instructions
provided and made the necessary changes to httpd.conf. I am using apache
version 2.0.40.



When running any asp.net page I get the error child pid 1775
exit signal Segmentation fault. If I run mod-mono-server from command line I
get the following error when accessing an asp.net page:



System.NullReferenceException: Object reference not set to
an instance of an object



Server stack trace:

in 0x00061 System.Web.HttpRuntime:ProcessRequest
(System.Web.HttpWorkerRequest)

in 0xa
Mono.ASPNET.MonoWorkerRequest:ProcessRequest ()

in 0x00080 Mono.ASPNET.Worker:ProcessRequest ()

in 0x00044 (wrapper delegate-invoke)
System.MulticastDelegate:invoke_void ()

in 0x00025 System.AppDomain:DoCallBack
(System.CrossAppDomainDelegate)

in (unmanaged) /usr/lib/libmono.so.0 [0x4006586c]

in (unmanaged)
/usr/lib/libmono.so.0(mono_runtime_invoke+0x27) [0x400bc354]

in (unmanaged) /usr/lib/libmono.so.0(mono_runtime_invoke_array+0x20b)
[0x400bd49e]

in (unmanaged) /usr/lib/libmono.so.0 [0x400c5163]

in 0x00177
System.Runtime.Remoting.RemotingServices:InternalExecuteMessage
(System.MarshalByRefObject,System.Runtime.Remoting.Messaging.IMethodCallMessage)



Exception rethrown at [0]:



in 0x001ff
System.Runtime.Remoting.Proxies.RealProxy:PrivateInvoke
(System.Runtime.Remoting.Proxies.RealProxy,System.Runtime.Remoting.Messaging.IMessage,System.Exception,object[])



I only have one version of mod-mono-server installed, and
only one copy of the mod-mono module running. Has anyone run into this problem
or should I create a bug report?



Jeff Love








---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.676 / Virus Database: 438 - Release Date: 5/3/2004
 


Re: [Mono-list] Npgsql and the new mono beta.

2004-05-05 Thread Roberto Jimeno
Problem solved! :-)

Since I upgraded using red-carpet I didn't notice that now Npgsql has
moved out to other RPM (mono-data-postgres in this particular case).

Someone told me that this break up into modules is related to patents,
although to me, this looks more like a simple install-only-what-you-need
kind of separation.

Do any of you have a comment on that?


On Wed, 2004-05-05 at 21:20, Roberto Jimeno wrote:
 Hi all,
 
 I've just upgraded to the beta version of mono. Some of my programs are
 not compiling anymore because the assembly for Npgsql can't be found.
 
 Please tell me what should I do in order to make my Npgsql programs able
 to compile again.
 
 TIA.
 
 
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list
 

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