After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 155300 - Monodoc does not run
Monodoc does not run
Status: RESOLVED FIXED
Product: GARNOME
Classification: Deprecated
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: GARNOME Maintainers
garnome list
Depends on:
Blocks:
 
 
Reported: 2004-10-13 12:40 UTC by Juan Carlos Inostroza
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Juan Carlos Inostroza 2004-10-13 12:40:54 UTC
a) compile everything on desktop/* (make paranoid-install)
b) compile mono from mono/mono
c) compile monodoc
d) execute monodoc

Unhandled Exception: System.DllNotFoundException: gtkhtml-3.0
in <0x00053> (wrapper managed-to-native) Gtk.HTML:gtk_html_new ()
in <0x0007d> Gtk.HTML:.ctor ()
in [0x001aa] (at
/BUILD/mono/monodoc/work/main.d/monodoc-1.0.1/browser/browser.cs:214)
Monodoc.Browser:.ctor ()
in [0x00125] (at
/BUILD/mono/monodoc/work/main.d/monodoc-1.0.1/browser/browser.cs:84)
Monodoc.Driver:Main (string[])
Comment 1 Juan Carlos Inostroza 2004-10-13 12:53:18 UTC
The error is due a bad library assignment in
$GARNOME/lib/mono/gac/gtkhtml-sharp/1.0.0.0__35e10195dab3c99f/gtkhtml-sharp.dll.config:

It reads:
<configuration>
  <dllmap dll="gtkhtml-3.0" target="libgtkhtml-3.1.so.7"/>
</configuration>

It must read:
<configuration>
  <dllmap dll="gtkhtml-3.0" target="libgtkhtml-3.1.so.11"/>
</configuration>

Finally, it works.