public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] Xterm can't find libXaw.so.8 after Xorg update
@ 2006-07-01 18:36 Walter Dnes
  2006-07-01 18:51 ` Michael [Plouj] Ploujnikov
  2006-07-01 19:19 ` Kristian Poul Herkild
  0 siblings, 2 replies; 5+ messages in thread
From: Walter Dnes @ 2006-07-01 18:36 UTC (permalink / raw
  To: Gentoo Users List

  So X runs, but no xterms, with an error message about not being able
to find libXaw.so.8.  First, I checked to see what was available...

m3000[root][~] ll /usr/lib/libXaw.so.*
lrwxrwxrwx 1 root root 12 Jul  1 02:33 /usr/lib/libXaw.so.6 -> libXaw6.so.6
lrwxrwxrwx 1 root root 12 Jul  1 02:33 /usr/lib/libXaw.so.7 -> libXaw7.so.7

  Then I kludged together an ugly workaround...

[m3000][root][~] cd /usr/lib
[m3000][root][/usr/lib] ln -s /usr/lib/libXaw.so.7 libXaw.so.8

  Much to my surprise, the damn thing actually works.  But I know that
somewhere down the line, this will come back to bite me.  How do I get
the real libXaw.so.8 built?

-- 
Walter Dnes <waltdnes@waltdnes.org> In linux /sbin/init is Job #1
My musings on technology and security at http://tech_sec.blog.ca
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] Xterm can't find libXaw.so.8 after Xorg update
  2006-07-01 18:36 [gentoo-user] Xterm can't find libXaw.so.8 after Xorg update Walter Dnes
@ 2006-07-01 18:51 ` Michael [Plouj] Ploujnikov
  2006-07-03 16:04   ` Walter Dnes
  2006-07-01 19:19 ` Kristian Poul Herkild
  1 sibling, 1 reply; 5+ messages in thread
From: Michael [Plouj] Ploujnikov @ 2006-07-01 18:51 UTC (permalink / raw
  To: gentoo-user

I had to do this to make xterm work again:

emerge -av --unmerge sys-apps/utempter
emerge -av xterm x11-libs/libXaw
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] Xterm can't find libXaw.so.8 after Xorg update
  2006-07-01 18:36 [gentoo-user] Xterm can't find libXaw.so.8 after Xorg update Walter Dnes
  2006-07-01 18:51 ` Michael [Plouj] Ploujnikov
@ 2006-07-01 19:19 ` Kristian Poul Herkild
  2006-07-03 16:14   ` Walter Dnes
  1 sibling, 1 reply; 5+ messages in thread
From: Kristian Poul Herkild @ 2006-07-01 19:19 UTC (permalink / raw
  To: gentoo-user

Walter Dnes wrote:
>   So X runs, but no xterms, with an error message about not being able
> to find libXaw.so.8.  First, I checked to see what was available...
> 
> m3000[root][~] ll /usr/lib/libXaw.so.*
> lrwxrwxrwx 1 root root 12 Jul  1 02:33 /usr/lib/libXaw.so.6 -> libXaw6.so.6
> lrwxrwxrwx 1 root root 12 Jul  1 02:33 /usr/lib/libXaw.so.7 -> libXaw7.so.7
> 
>   Then I kludged together an ugly workaround...
> 
> [m3000][root][~] cd /usr/lib
> [m3000][root][/usr/lib] ln -s /usr/lib/libXaw.so.7 libXaw.so.8
> 
>   Much to my surprise, the damn thing actually works.  But I know that
> somewhere down the line, this will come back to bite me.  How do I get
> the real libXaw.so.8 built?
> 

Aaawwww... that was an ugly hack. Reminds me of my LFS-days :P

When you encounter broken packages, you should run "revdep-rebuild
--pretend", watch the output and if necessary run revdep-rebuild without
--pretend.

That is the right way to solve such problems.

-Kristian Poul Herkild
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] Xterm can't find libXaw.so.8 after Xorg update
  2006-07-01 18:51 ` Michael [Plouj] Ploujnikov
@ 2006-07-03 16:04   ` Walter Dnes
  0 siblings, 0 replies; 5+ messages in thread
From: Walter Dnes @ 2006-07-03 16:04 UTC (permalink / raw
  To: gentoo-user

On Sat, Jul 01, 2006 at 02:51:40PM -0400, Michael [Plouj] Ploujnikov wrote
> I had to do this to make xterm work again:
> 
> emerge -av --unmerge sys-apps/utempter
> emerge -av xterm x11-libs/libXaw

  Thanks, that worked, but it's sys-libs/utempter

-- 
Walter Dnes <waltdnes@waltdnes.org> In linux /sbin/init is Job #1
My musings on technology and security at http://tech_sec.blog.ca
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] Xterm can't find libXaw.so.8 after Xorg update
  2006-07-01 19:19 ` Kristian Poul Herkild
@ 2006-07-03 16:14   ` Walter Dnes
  0 siblings, 0 replies; 5+ messages in thread
From: Walter Dnes @ 2006-07-03 16:14 UTC (permalink / raw
  To: gentoo-user

On Sat, Jul 01, 2006 at 09:19:18PM +0200, Kristian Poul Herkild wrote

> >   Then I kludged together an ugly workaround...
> > 
> > [m3000][root][~] cd /usr/lib
> > [m3000][root][/usr/lib] ln -s /usr/lib/libXaw.so.7 libXaw.so.8

> Aaawwww... that was an ugly hack. Reminds me of my LFS-days :P
> 
> When you encounter broken packages, you should run "revdep-rebuild
> --pretend", watch the output and if necessary run revdep-rebuild without
> --pretend.
> 
> That is the right way to solve such problems.

  Actually, I should've mentioned I did that, but revdep-rebuild didn't
find anything wrong.  This was a part of the Xorg7 update.  Michael
Ploujnikov's solution worked.

-- 
Walter Dnes <waltdnes@waltdnes.org> In linux /sbin/init is Job #1
My musings on technology and security at http://tech_sec.blog.ca
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-07-03 16:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-01 18:36 [gentoo-user] Xterm can't find libXaw.so.8 after Xorg update Walter Dnes
2006-07-01 18:51 ` Michael [Plouj] Ploujnikov
2006-07-03 16:04   ` Walter Dnes
2006-07-01 19:19 ` Kristian Poul Herkild
2006-07-03 16:14   ` Walter Dnes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox