From: Noah S. <ns...@gm...> - 2006-01-30 14:41:48
|
Hello, I have just successfully compiled and installed xmlroff with no problems, however when I run it from the command line I get the following error: xmlroff: error while loading shared libraries: libpangoxsl-1.0.so.0: cannot open shared object file: No such file or directory Is there something I am missing? Thanks, Noah -- "Creativity can be a social contribution, but only in so far as society is free to use the results." - R. Stallman |
From: Stefan S. <se...@sy...> - 2006-01-30 14:47:38
|
Noah Slater wrote: > xmlroff: error while loading shared libraries: libpangoxsl-1.0.so.0: > cannot open shared object file: No such file or directory That sounds like some libtool problem. What does 'ldd `which xmlroff`' tell about what libpangoxsl library is linked in ? Then, what does 'file' tell you when called with the full filename of the libpangoxsl library ? Regards, Stefan |
From: Noah S. <ns...@gm...> - 2006-01-30 15:01:40
|
'ldd `which xmlroff` =09libpangoxsl-1.0.so.0 =3D> not found =09libpangoft2-1.0.so.0 =3D> /usr/lib/libpangoft2-1.0.so.0 (0x0ffb9000) =09libfontconfig.so.1 =3D> /usr/lib/libfontconfig.so.1 (0x0ff60000) =09libpango-1.0.so.0 =3D> /usr/lib/libpango-1.0.so.0 (0x0ff00000) =09libz.so.1 =3D> /usr/lib/libz.so.1 (0x0fecb000) =09libgdk_pixbuf-2.0.so.0 =3D> /usr/lib/libgdk_pixbuf-2.0.so.0 (0x0fe91000) =09libm.so.6 =3D> /lib/tls/libm.so.6 (0x0fdfb000) =09libgobject-2.0.so.0 =3D> /usr/lib/libgobject-2.0.so.0 (0x0fd94000) =09libgmodule-2.0.so.0 =3D> /usr/lib/libgmodule-2.0.so.0 (0x0fd70000) =09libdl.so.2 =3D> /lib/tls/libdl.so.2 (0x0fd4c000) =09libglib-2.0.so.0 =3D> /usr/lib/libglib-2.0.so.0 (0x0fc8d000) =09libc.so.6 =3D> /lib/tls/libc.so.6 (0x0fb2c000) =09libfreetype.so.6 =3D> /usr/lib/libfreetype.so.6 (0x0fa96000) =09libexpat.so.1 =3D> /usr/lib/libexpat.so.1 (0x0fa50000) =09/lib/ld.so.1 (0xf7fe7000) That is strange, I installed pangoxsl-1.6.0.1 from source forge like the configure script asked - but that doesn't seem to have done the trick - yet the xmlroff configure script seemed happy after I had done that. -- "Creativity can be a social contribution, but only in so far as society is free to use the results." - R. Stallman |
From: Stefan S. <se...@sy...> - 2006-01-30 14:58:00
|
Noah Slater wrote: > That is strange, I installed pangoxsl-1.6.0.1 from source forge like > the configure script asked - but that doesn't seem to have done the > trick - yet the xmlroff configure script seemed happy after I had done > that. Chances are that your libpangoxsl library ended up in /usr/local/lib, but that you forgot to add that path to your LD_LIBRARY_PATH variable. (The latter is used as a search path by the dynamic loader, i.e. ld.so) HTH, Stefan |
From: Noah S. <ns...@gm...> - 2006-01-30 18:06:53
|
$ export LD_LIBRARY_PATH=3D/usr/local/lib $ make clean && make && make install Worked a treat. Thanks so much. On 1/30/06, Stefan Seefeld <se...@sy...> wrote: > Noah Slater wrote: > > > That is strange, I installed pangoxsl-1.6.0.1 from source forge like > > the configure script asked - but that doesn't seem to have done the > > trick - yet the xmlroff configure script seemed happy after I had done > > that. > > Chances are that your libpangoxsl library ended up in /usr/local/lib, > but that you forgot to add that path to your LD_LIBRARY_PATH variable. > (The latter is used as a search path by the dynamic loader, i.e. ld.so) > > HTH, > Stefan > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log fi= les > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D103432&bid=3D230486&dat= =3D121642 > _______________________________________________ > xmlroff-list mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlroff-list > -- "Creativity can be a social contribution, but only in so far as society is free to use the results." - R. Stallman |
From: Tony G. <Ton...@Su...> - 2006-01-30 15:20:51
|
Noah Slater <ns...@gm...> writes: > I have just successfully compiled and installed xmlroff with no > problems, however when I run it from the command line I get the > following error: > > xmlroff: error while loading shared libraries: libpangoxsl-1.0.so.0: > cannot open shared object file: No such file or directory > > Is there something I am missing? LD_LIBRARY_PATH? You may need to set your LD_LIBRARY_PATH environment variable to include /usr/local/lib (or wherever else PangoXSL is installed). Regards, Tony. |