niXforums Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   PreferencesPreferences   Log in to check your private messagesLog in to check your private messages   Log inLog in 
·  nixdoc.net ·  man pages ·  Linux HOWTOs ·  FreeBSD Tips ·  Forums
navigation Forum index » *nix » BSD » FreeBSD
libXfixes.so.3 is present, but not found
Post new topic   Reply to topic Page 1 of 1 [6 Posts] View previous topic :: View next topic
Author Message
Dr. R. E. Hawkins
*nix forums addict


Joined: 23 Jun 2006
Posts: 55

PostPosted: Thu Jul 20, 2006 11:59 pm    Post subject: libXfixes.so.3 is present, but not found Reply with quote

libXfixes.so.3 is present on my machine:

redtail ttyp1:hawk>ls -l /usr/X11R6/lib/libXfixes.so.3
-rwxr-xr-x 1 root wheel 25907 Jul 20 16:37 /usr/X11R6/lib/libXfixes.so.3

However, other packages don't seem to be able to find it:

redtail ttyp1:hawk>acroread
/usr/X11R6/Adobe/Acrobat7.0/ENU/Reader/intellinux/bin/acroread: error while
loading shared libraries: libXfixes.so.3: cannot open shared object
file: No such file or directory

and when I try to build linux-gtk2, it builds, but can't install, bombing
with
...
/usr/bin/cpio: /compat/linux/usr/share/themes/ThinIce/gtk-2.0/gtkrc
not created: newer or same age version exists
279 blocks
/usr/bin/gtk-query-immodules-2.0-32: error while loading shared
libraries: libXfixes.so.3: cannot open shared object file: No
such file or directory
*** Error code 127

Stop in /usr64/ports/x11-toolkits/linux-gtk2.

I'm seeing this on two different computers at the moment.

Also, I don't seem to have a LDLIBPATH or similar environmental
variable; $LOGNAME is the only one that starts with L. Is this my
problem, or is that path variable ancient history?

thanks

hawk
Back to top
Jamie
*nix forums beginner


Joined: 09 Apr 2005
Posts: 15

PostPosted: Fri Jul 21, 2006 4:22 am    Post subject: Re: libXfixes.so.3 is present, but not found Reply with quote

On Thu, 20 Jul 2006, Dr. R. E. Hawkins wrote:

Quote:
libXfixes.so.3 is present on my machine:

redtail ttyp1:hawk>ls -l /usr/X11R6/lib/libXfixes.so.3
-rwxr-xr-x 1 root wheel 25907 Jul 20 16:37 /usr/X11R6/lib/libXfixes.so.3

However, other packages don't seem to be able to find it:

redtail ttyp1:hawk>acroread
/usr/X11R6/Adobe/Acrobat7.0/ENU/Reader/intellinux/bin/acroread: error while
loading shared libraries: libXfixes.so.3: cannot open shared object
file: No such file or directory


What happens when you run ldd:

redtail ttyp1:hawk> ldd acroread | grep libXfixes.so.3

???

That will tell you where the linker is looking for the .so for that
executable.


Then run ldconfig -r | grep libXfixes.so.3 to see if there is an entry
for your library. If not, then you will need to modify
/var/run/ld.so.hints and add the directory /usr/X11R6/lib/. You can't just
edit it with an editor, though.


man ldconfig for details on modifying the hints file.





Quote:

and when I try to build linux-gtk2, it builds, but can't install, bombing
with
...
/usr/bin/cpio: /compat/linux/usr/share/themes/ThinIce/gtk-2.0/gtkrc
not created: newer or same age version exists
279 blocks
/usr/bin/gtk-query-immodules-2.0-32: error while loading shared
libraries: libXfixes.so.3: cannot open shared object file: No
such file or directory
*** Error code 127

Stop in /usr64/ports/x11-toolkits/linux-gtk2.

I'm seeing this on two different computers at the moment.

Also, I don't seem to have a LDLIBPATH or similar environmental
variable; $LOGNAME is the only one that starts with L. Is this my
problem, or is that path variable ancient history?

thanks

hawk




The Moon is Waning Crescent (17% of Full)
Back to top
Dr. R. E. Hawkins
*nix forums addict


Joined: 23 Jun 2006
Posts: 55

PostPosted: Fri Jul 21, 2006 4:50 am    Post subject: Re: libXfixes.so.3 is present, but not found Reply with quote

On Fri, 21 Jul 2006 00:22:05 -0500, Jamie wrote:

Quote:
On Thu, 20 Jul 2006, Dr. R. E. Hawkins wrote:

libXfixes.so.3 is present on my machine:

redtail ttyp1:hawk>ls -l /usr/X11R6/lib/libXfixes.so.3
-rwxr-xr-x 1 root wheel 25907 Jul 20 16:37 /usr/X11R6/lib/libXfixes.so.3

However, other packages don't seem to be able to find it:

redtail ttyp1:hawk>acroread
/usr/X11R6/Adobe/Acrobat7.0/ENU/Reader/intellinux/bin/acroread: error while
loading shared libraries: libXfixes.so.3: cannot open shared object
file: No such file or directory


What happens when you run ldd:

redtail ttyp1:hawk> ldd acroread | grep libXfixes.so.3

Not much :)

redtail# ldd acroread
ldd: acroread: No such file or directory
redtail# ldd `which acroread`
ldd: /usr/X11R6/bin/acroread: not a dynamic executable

Is there something wrong with what I'm doing?

Quote:

Then run ldconfig -r | grep libXfixes.so.3 to see if there is an entry
for your library. If not, then you will need to modify
/var/run/ld.so.hints and add the directory /usr/X11R6/lib/. You can't just
edit it with an editor, though.

redtail# ldconfig -r | grep libXfixes.so.3
113:-lXfixes.3 => /usr/X11R6/lib/libXfixes.so.3

Now that I think of it, *this* machine is running the amd64 variant
at the moment. Acroread should have failed installation if that
would have been a problem, though, shouldn't it have?

thanks

hawk
Back to top
Jamie
*nix forums beginner


Joined: 09 Apr 2005
Posts: 15

PostPosted: Fri Jul 21, 2006 5:31 am    Post subject: Re: libXfixes.so.3 is present, but not found Reply with quote

On Fri, 21 Jul 2006, Dr. R. E. Hawkins wrote:

Quote:
On Fri, 21 Jul 2006 00:22:05 -0500, Jamie wrote:

On Thu, 20 Jul 2006, Dr. R. E. Hawkins wrote:

libXfixes.so.3 is present on my machine:

redtail ttyp1:hawk>ls -l /usr/X11R6/lib/libXfixes.so.3
-rwxr-xr-x 1 root wheel 25907 Jul 20 16:37 /usr/X11R6/lib/libXfixes.so.3

However, other packages don't seem to be able to find it:

redtail ttyp1:hawk>acroread
/usr/X11R6/Adobe/Acrobat7.0/ENU/Reader/intellinux/bin/acroread: error while
loading shared libraries: libXfixes.so.3: cannot open shared object
file: No such file or directory


What happens when you run ldd:

redtail ttyp1:hawk> ldd acroread | grep libXfixes.so.3

Not much :)

redtail# ldd acroread
ldd: acroread: No such file or directory
redtail# ldd `which acroread`
ldd: /usr/X11R6/bin/acroread: not a dynamic executable

Is there something wrong with what I'm doing?


No, try running:

redtail# file /usr/X11R6/bin/acroread

Does it say it is a 32 or 64 bit executable file?



Quote:


Then run ldconfig -r | grep libXfixes.so.3 to see if there is an entry
for your library. If not, then you will need to modify
/var/run/ld.so.hints and add the directory /usr/X11R6/lib/. You can't just
edit it with an editor, though.

redtail# ldconfig -r | grep libXfixes.so.3
113:-lXfixes.3 => /usr/X11R6/lib/libXfixes.so.3

Now that I think of it, *this* machine is running the amd64 variant
at the moment. Acroread should have failed installation if that
would have been a problem, though, shouldn't it have?

thanks

hawk



The Moon is Waning Crescent (16% of Full)
Back to top
Dr. R. E. Hawkins
*nix forums addict


Joined: 23 Jun 2006
Posts: 55

PostPosted: Fri Jul 21, 2006 6:15 am    Post subject: Re: libXfixes.so.3 is present, but not found Reply with quote

On Fri, 21 Jul 2006 01:31:46 -0500, Jamie wrote:

Quote:
On Fri, 21 Jul 2006, Dr. R. E. Hawkins wrote:

On Fri, 21 Jul 2006 00:22:05 -0500, Jamie wrote:

What happens when you run ldd:

redtail ttyp1:hawk> ldd acroread | grep libXfixes.so.3

Not much :)

redtail# ldd acroread
ldd: acroread: No such file or directory
redtail# ldd `which acroread`
ldd: /usr/X11R6/bin/acroread: not a dynamic executable

Is there something wrong with what I'm doing?

No, try running:

redtail# file /usr/X11R6/bin/acroread

Does it say it is a 32 or 64 bit executable file?

A linux compat script:
redtail ttyp4:hawk>file /usr/X11R6/bin/acroread
/usr/X11R6/bin/acroread: a /compat/linux/bin/sh script text executable

hawk
Back to top
Martin Etteldorf
*nix forums beginner


Joined: 21 Feb 2005
Posts: 46

PostPosted: Fri Jul 21, 2006 6:16 am    Post subject: Re: libXfixes.so.3 is present, but not found Reply with quote

Dr. R. E. Hawkins <dochawk@earthlink.net> wrote:
Quote:
libXfixes.so.3 is present on my machine:

redtail ttyp1:hawk>ls -l /usr/X11R6/lib/libXfixes.so.3
-rwxr-xr-x 1 root wheel 25907 Jul 20 16:37 /usr/X11R6/lib/libXfixes.so.3

However, other packages don't seem to be able to find it:

redtail ttyp1:hawk>acroread
/usr/X11R6/Adobe/Acrobat7.0/ENU/Reader/intellinux/bin/acroread: error while
loading shared libraries: libXfixes.so.3: cannot open shared object
file: No such file or directory

$ file /usr/X11R6/Adobe/Acrobat7.0/ENU/Reader/intellinux/bin/acroread
/usr/X11R6/Adobe/Acrobat7.0/ENU/Reader/intellinux/bin/acroread: ELF 32-bit LSB executable, Intel 80386, version 1 (GNU/Linux), for GNU/Linux 2.2.5, dynamically linked (uses shared libs), stripped

Acroread is a Linux-Binary, so you should check if the
Linux Libraries are in place. Acroread doesn't care about
the FreeBSD ones.

$ ls -al /compat/linux/usr/X11R6/lib/libXfixes.so.3*
lrwxrwxrwx 1 root wheel 16 Jul 12 09:08 /compat/linux/usr/X11R6/lib/libXfixes.so.3@ -> libXfixes.so.3.0
-rwxr-xr-x 1 root wheel 15172 Jul 12 09:08 /compat/linux/usr/X11R6/lib/libXfixes.so.3.0*

$ pkg_which /compat/linux/usr/X11R6/lib/libXfixes.so.3.0
linux-xorg-libs-6.8.2_5

Quote:
and when I try to build linux-gtk2, it builds, but can't install, bombing
with
...
/usr/bin/cpio: /compat/linux/usr/share/themes/ThinIce/gtk-2.0/gtkrc
not created: newer or same age version exists
279 blocks
/usr/bin/gtk-query-immodules-2.0-32: error while loading shared
libraries: libXfixes.so.3: cannot open shared object file: No
such file or directory
*** Error code 127

Most likely the same problem. Either you deleted libXfixes.so.3.0
accidentally or you're missing linux-xorg-libs-6.8.2_5.
Usually, the later one shouldn't be a problem, as the ports-mechanism
should install it if it's needed.


Martin
--
"For the Snark's a peculiar creature, that won't
Be caught in a commonplace way.
Do all that you know, and try all that you don't;
Not a chance must be wasted to-day!"
Back to top
Google

Back to top
Display posts from previous:   
Post new topic   Reply to topic Page 1 of 1 [6 Posts] View previous topic :: View next topic
The time now is Sun Nov 23, 2008 12:38 pm | All times are GMT
navigation Forum index » *nix » BSD » FreeBSD
Jump to:  

Similar Topics
Topic Author Forum Replies Last Post
No new posts getaddrinfo not found on SCO OpenServer 5.0.5 edcdave@gmail.com python 0 Fri Jul 21, 2006 1:11 pm
No new posts error: Illegal MIME chars, found in header Mads N. Vestergaard Postfix 5 Thu Jul 20, 2006 10:18 am
No new posts Pfpro enabled, but function not found yohaas PHP 0 Tue Jul 18, 2006 1:38 am
No new posts Delay in SMTP "no IP address found for host" Mordur Exim 4 Mon Jul 17, 2006 6:36 pm
No new posts Holy Crap I Just Found the Pirates Treasure (stupid fbsd ... My Haz FreeBSD 0 Mon Jul 17, 2006 5:07 pm

Debt Consolidation | Loans | Loans | Mobile Phones | Online Advertising
Copyright © 2004-2005 DeniX Solutions SRL
 
Other DeniX Solutions sites: Unix/Linux blog |  electronics forum |  medicine forum |  science forum | 
Privacy Policy


Powered by phpBB © 2001, 2005 phpBB Group
[ Time: 0.1523s ][ Queries: 16 (0.0288s) ][ GZIP on - Debug on ]