On Thu, 2007-11-01 at 15:52 +0100, romunov wrote:
I've installed the latest "bleeding edge" version of Inkscape (1.11.2007?), and when I try to run it, I get this error:
inkscape: error while loading shared libraries: libgtkmm-2.4.so.1: cannot open shared object file: No such file or directory
I use a fresh install of Kubuntu 7.10.
Do you have libgtkmm-2.4.so.1?
sudo apt-get install libgtkmm-2.4-1c2a
--Ted
Ucan check on the command line with "ldd inkscape" if all external dependencies are met. And then install the missing ones.
HTH,
Adib.
romunov schrieb:
Hi,
I've installed the latest "bleeding edge" version of Inkscape (1.11.2007?), and when I try to run it, I get this error:
/inkscape: error while loading shared libraries: libgtkmm-2.4.so.1: cannot open shared object file: No such file or directory
/I use a fresh install of Kubuntu 7.10.
Cheeri-o, Roman
This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/
Inkscape-user mailing list Inkscape-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/inkscape-user
romunov wrote:
/ldd: ./inkscape: No such file or directory
Try:
ldd `which inkscape`
This assumes that inkscape is in your path. You could replace `which inkscape` with the full path to the particular inkscape executable that you wish to check the deps of. Notice that ` is a backtick not a single quote.
I believe the invocation I use to check deps is something like:
objdump -X |grep NEEDED
You may want to try that too.
I used to link gtkmm statically into the autopackages. I'm not sure why it isn't so for this package. Perhaps I stopped for a reason and promptly forgot why. Whatever the case, in the coming weeks I will try to find more time to fiddle with the deps in the autopackages. Please keep testing them and giving me feedback. I can't fix problems I don't know about.
Aaron Spike
On Fri, 2007-11-02 at 08:23 +0100, romunov wrote:
libjasper-1.701.so.1 => not found
It looks like the person who build the binary is on a distribution that does versioning of this library differently than yours. I'm on Ubuntu, and mine does too:
$ ls /usr/lib/libjasper.* /usr/lib/libjasper.a /usr/lib/libjasper.so /usr/lib/libjasper.so.1.0.0 /usr/lib/libjasper.la /usr/lib/libjasper.so.1 $
Now, I can't test it, but I don't think this should harm your system and would make things work:
$ sudo ln -s /usr/lib/libjasper.so.1.0.0 /usr/lib/libjasper-1.701.so.1
--Ted
Ted Gould wrote:
On Fri, 2007-11-02 at 18:31 +0100, romunov wrote:
I ran the command and when I run Inkscape, I get this:
Wow, okay, didn't expect that.
Aaron, I guess we should either have the autopackage staticly compile in ImageMagick or just build it without...
We went a little while without current autopackage snapshots, because I got stuck on a problem and then too swamped to investigate. During that time a ton of new dependancies were added. So I was expecting to have to take some time sorting things out, but from the looks of this report something is horribly wrong, even deps that have been dealt with solidly for years are biting.
WRT ImageMagick, there is a third option. RelayTool allows us to link to a library without requiring it to be installed at runtime and yet the functionality will be conditionaly available based on the presence of the library. I used this for libssl inside of the whiteboard code. I would like to see ImageMagick, poppler and as many other new deps as possible dealt with in this manner.
Aaron Spike
romunov wrote:
romunov@...2387...:/usr/bin$ objdump -x inkscape |grep NEEDED NEEDED libgtkmm-2.4.so.1 NEEDED libgdkmm-2.4.so.1 NEEDED libatkmm-1.6.so.1 NEEDED libpangomm-1.4.so.1 NEEDED libcairomm-1.0.so.1 NEEDED libglibmm-2.4.so.1 NEEDED libgtk-x11-2.0.so.0 NEEDED libgdk-x11-2.0.so.0 NEEDED libatk-1.0.so.0 NEEDED libgdk_pixbuf-2.0.so.0 NEEDED libpangocairo-1.0.so.0 NEEDED libfontconfig.so.1 NEEDED libXext.so.6 NEEDED libXrender.so.1 NEEDED libXinerama.so.1 NEEDED libXi.so.6 NEEDED libXrandr.so.2 NEEDED libXcursor.so.1 NEEDED libXfixes.so.3 NEEDED libpango-1.0.so.0 NEEDED libX11.so.6 NEEDED libgobject-2.0.so.0 NEEDED libgmodule-2.0.so.0 NEEDED libdl.so.2 NEEDED libxslt.so.1 NEEDED libxml2.so.2 NEEDED libcairo.so.2 NEEDED libsigc-2.0.so.0 NEEDED libgthread-2.0.so.0 NEEDED librt.so.1 NEEDED libglib-2.0.so.0 NEEDED libpng12.so.0 NEEDED libz.so.1 NEEDED libpopt.so.0 NEEDED libgnomevfs-2.so.0 NEEDED libgconf-2.so.4 NEEDED libORBit-2.so.0 NEEDED libXft.so.2 NEEDED libpangoft2-1.0.so.0 NEEDED libfreetype.so.6 NEEDED libMagick++.so.9 NEEDED libWand.so.9 NEEDED libMagick.so.9 NEEDED liblcms.so.1 NEEDED libtiff.so.4 NEEDED libjasper-1.701.so.1 NEEDED libjpeg.so.62 NEEDED libXt.so.6 NEEDED libSM.so.6 NEEDED libICE.so.6 NEEDED libbz2.so.1.0 NEEDED libpthread.so.0 NEEDED libm.so.6 NEEDED libgc.so.1 NEEDED libstdc++.so.6 NEEDED libgcc_s.so.1 NEEDED libc.so.6
Whoa! What version of which distro are you using? Where did you get this package? Is this an autopackage?
Aaron Spike
participants (4)
-
Aaron Spike
-
Adib Taraben
-
romunov
-
Ted Gould