public inbox for gentoo-amd64@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-amd64]  Any success with monodevelop
@ 2007-06-08 18:14 Regis Decamps
  2007-06-08 23:51 ` Lorenzo Milesi
  0 siblings, 1 reply; 4+ messages in thread
From: Regis Decamps @ 2007-06-08 18:14 UTC (permalink / raw
  To: gentoo-amd64

Hi,

Have you been able to launch monodevelop on amd64?

On my system, it always fail with
System.DllNotFoundException: libgnomeui-2.so.0
   at (wrapper managed-to-native) 
Gnome.Modules:libgnomeui_module_info_get ()
   at Gnome.Modules.get_UI () [0x00000]
   at MonoDevelop.Ide.Gui.IdeStartup.Run (System.String[] args) [0x00000]

Thanks
-- 
Régis

-- 
gentoo-amd64@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [gentoo-amd64] Any success with monodevelop
  2007-06-08 18:14 [gentoo-amd64] Any success with monodevelop Regis Decamps
@ 2007-06-08 23:51 ` Lorenzo Milesi
  2007-06-09 21:43   ` [gentoo-amd64] " Regis Decamps
  0 siblings, 1 reply; 4+ messages in thread
From: Lorenzo Milesi @ 2007-06-08 23:51 UTC (permalink / raw
  To: gentoo-amd64

on my system it loads fine.

do you need any info?

maxxer

On 6/8/07, Regis Decamps <decamps@users.sf.net> wrote:
> Hi,
>
> Have you been able to launch monodevelop on amd64?
>
> On my system, it always fail with
> System.DllNotFoundException: libgnomeui-2.so.0
>    at (wrapper managed-to-native)
> Gnome.Modules:libgnomeui_module_info_get ()
>    at Gnome.Modules.get_UI () [0x00000]
>    at MonoDevelop.Ide.Gui.IdeStartup.Run (System.String[] args) [0x00000]
>
> Thanks
> --
> Régis
>
> --
> gentoo-amd64@gentoo.org mailing list
>
>
--
gentoo-amd64@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-amd64]  Re: Any success with monodevelop
  2007-06-08 23:51 ` Lorenzo Milesi
@ 2007-06-09 21:43   ` Regis Decamps
  2007-06-09 22:04     ` Lorenzo Milesi
  0 siblings, 1 reply; 4+ messages in thread
From: Regis Decamps @ 2007-06-09 21:43 UTC (permalink / raw
  To: gentoo-amd64

Lorenzo Milesi wrote:
> on my system it loads fine.
> 
> do you need any info?
> 

Hmm, yes please!

I have upgraded to ~amd64 and now have difficulties with libgnomevfs-2.so
{{{
regis ~ % monodevelop 

System.TypeInitializationException: An exception was thrown by the type 
initializer for Gnome.Vfs.Vfs ---> System.DllNotFoundException: 
libgnomevfs-2.so.0
   at (wrapper managed-to-native) Gnome.Vfs.Vfs:gnome_vfs_initialized ()
   at Gnome.Vfs.Vfs..cctor () [0x00000] --- End of inner exception stack 
trace ---
   at <0x00000> <unknown method>
   at MonoDevelop.Ide.Gui.IdeStartup.Run (System.String[] args) [0x00000]
   at MonoDevelop.Core.AddIns.AddInService.StartApplication 
(System.String addinId, System.String[] parameters) [0x00000]
}}}

Even on a simple test file...
{{{regis ~ % mono vfs.exe
Unhandled Exception: System.DllNotFoundException: libgnomevfs-2.so
   at (wrapper managed-to-native) test:gnome_vfs_initialized ()
   at test.Main (System.String[] argv) [0x00000]
}}}

This vfs.exe comes from this c# program:
{{{
using System;
using System.Runtime.InteropServices;

public class test {
   [DllImport ("gnomevfs-2")]
   private static extern bool gnome_vfs_initialized();

   public static void Main(String []argv) {
     gnome_vfs_initialized();
   }
}
}}}

And I have in /etc/mono/config:
{{{
<configuration>
         <dllmap dll="i:cygwin1.dll" target="libc.so.6" os="!windows" />
         <dllmap dll="libc" target="libc.so.6" os="!windows"/>
         <dllmap dll="intl" target="libc.so.6" os="!windows"/>
         <dllmap dll="libintl" target="libc.so.6" os="!windows"/>
         <dllmap dll="i:libxslt.dll" target="libxslt.so" os="!windows"/>
         <dllmap dll="i:odbc32.dll" target="libodbc.so" os="!windows"/>
         <dllmap dll="i:odbc32.dll" target="libiodbc.dylib" os="osx"/>
         <dllmap dll="oci" target="libclntsh.so" os="!windows"/>
         <dllmap dll="db2cli" target="libdb2_36.so" os="!windows"/>
         <dllmap dll="MonoPosixHelper" target="libMonoPosixHelper.so" 
os="!windows" />
         <dllmap dll="i:msvcrt" target="libc.so.6" os="!windows"/>
         <dllmap dll="i:msvcrt.dll" target="libc.so.6" os="!windows"/>
         <dllmap dll="sqlite" target="libsqlite.so.0" os="!windows"/>
         <dllmap dll="sqlite3" target="libsqlite3.so.0" os="!windows"/>
         <dllmap dll="libX11" target="libX11.so.6" os="!windows" />
         <dllmap dll="libcairo-2.dll" target="libcairo.so.2" os="!windows"/>
         <!--regis -->
         <dllmap dll="gnomevfs-2" target="libgnomevfs-2.so" os="!windows"/>
</configuration>
}}}

I have happended myself the last line

Thanks
-- 
régis

-- 
gentoo-amd64@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [gentoo-amd64] Re: Any success with monodevelop
  2007-06-09 21:43   ` [gentoo-amd64] " Regis Decamps
@ 2007-06-09 22:04     ` Lorenzo Milesi
  0 siblings, 0 replies; 4+ messages in thread
From: Lorenzo Milesi @ 2007-06-09 22:04 UTC (permalink / raw
  To: gentoo-amd64

> Hmm, yes please!

...

> I have happended myself the last line

you must ask me something more precisely, because I have no experience
with mono neither with monodevelop :-)
ciao
maxxer
-- 
gentoo-amd64@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-06-09 22:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-08 18:14 [gentoo-amd64] Any success with monodevelop Regis Decamps
2007-06-08 23:51 ` Lorenzo Milesi
2007-06-09 21:43   ` [gentoo-amd64] " Regis Decamps
2007-06-09 22:04     ` Lorenzo Milesi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox