Summary: | app-text/acroread-9.1.3: -- terminate called after throwing an instance of 'ASErrException' | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Henrique Dias <henrique.ribeiro.dias> |
Component: | Current packages | Assignee: | Printing Team <printing> |
Status: | RESOLVED NEEDINFO | ||
Severity: | normal | CC: | pacho |
Priority: | High | ||
Version: | unspecified | ||
Hardware: | AMD64 | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Henrique Dias
2009-10-06 20:54:45 UTC
I cannot reproduce this on my amd64 systems with acroread 9.2 and emul-linux*20091231 (from testing but more recommended than current stable ones ;-)) I use another linux distribution, but I came across your problem while trying to solve the same issue. Here's my findings. Acroread is a 32-bit application, and if you are running a 64-bit OS, 32-bit apps don't always work "out of the box." If you do an strace on acroread (strace -f acroread), I expect you to see that it is looking for /usr/lib/gconv just before it fails. If you haven't installed the 32-bit libraries make sure you do so. After doing so, make sure the libraries in /usr/lib/gconv are 32-bit libraries: "file /usr/lib/gconv/*" should tell you whether they are or not. It will either say "ELF 32-bit" or "ELF 64-bit" with some additional text. If it's 64 bit in /usr/lib/gconv you are on your own, because chances are, moving it may break other things in your OS, I'm not sure if the directory is hard coded into the dependency libraries or not, or how to get around it. Once you get past that hurdle, you will probably come up against the pango hurdle. You will be able to launch acroread, but all the letters will be displayed as boxes. Here's the fix for that. In my case, I copied the /etc/pango/x86_64-slackware-linux to /etc/pango/i486-slackware-linux (cp -a /etc/pango/x86_64-slackware-linux /etc/pango/i486-slackware-linux) and modified the pango.modules file in /etc/pango/i486-slackware-linux to point to 32-bit libraries (sed -i -e 's/lib64/lib/' /etc/pango/i486-slackware-linux/pango.modules). If you haven't installed the 32-bit pango libraries, now would be a good time to do so. Your directory names may be slightly different based on your OS, so adjust accordingly. Hope this works. Still valid with 9.3.4 for you? No reply for half a year, version not in the tree anymore. |