Re: Missing libpthread.so.*

2005-12-09 Thread Scot Hetzel
On 12/9/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 FBSD 5.0

 I'm getting missing libpthread.so.* error, so I copied it from another
 FBSD box, and now getting:
   Undefined symbol __malloc_lock

 So I went into /usr/src/lib/libpthread and did make/install.  I noticed
 that it installed libkse.so.* but not libpthread.so.*.

What you need to do is create a link between libpthread.so.* and libkse.so.*:

  cd /usr/lib
  ln libkse.so... libpthread.so

Also see this cvs entry about libkse on FreeBSD 5.0:

http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libpthread/Makefile?rev=1.35content-type=text/x-cvsweb-markup

--
DISCLAIMER:
No electrons were mamed while sending this message. Only slightly bruised.
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Missing libpthread.so.*

2005-12-09 Thread Daniel Eischen
On Fri, 9 Dec 2005, Scot Hetzel wrote:

 On 12/9/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  FBSD 5.0
 
  I'm getting missing libpthread.so.* error, so I copied it from another
  FBSD box, and now getting:
Undefined symbol __malloc_lock
 
  So I went into /usr/src/lib/libpthread and did make/install.  I noticed
  that it installed libkse.so.* but not libpthread.so.*.
 
 What you need to do is create a link between libpthread.so.* and libkse.so.*:

No, he's hosed his system.  There is no libpthread in 5.0.
Somehow you've brought in binaries from somewhere else that
are linked to libpthread because they were linked on a more
recent version of FreeBSD.  Either that, or you have a
/etc/libmap.conf that is trying to use libpthread.

-- 
DE

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Missing libpthread.so.*

2005-12-09 Thread squirrel
Geez, it was that simple!!!  I've searched everywhere for libpthread, but
didn't bother to see doc on libkse.  My bad...

Thanks...

 On 12/9/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 FBSD 5.0

 I'm getting missing libpthread.so.* error, so I copied it from another
 FBSD box, and now getting:
   Undefined symbol __malloc_lock

 So I went into /usr/src/lib/libpthread and did make/install.  I noticed
 that it installed libkse.so.* but not libpthread.so.*.

 What you need to do is create a link between libpthread.so.* and
 libkse.so.*:

   cd /usr/lib
   ln libkse.so... libpthread.so

 Also see this cvs entry about libkse on FreeBSD 5.0:

 http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libpthread/Makefile?rev=1.35content-type=text/x-cvsweb-markup

 --
 DISCLAIMER:
 No electrons were mamed while sending this message. Only slightly bruised.





**
Computer problems? ...
..http://www.multibyte.net

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Missing libpthread.so.*

2005-12-09 Thread Daniel Eischen
On Fri, 9 Dec 2005 [EMAIL PROTECTED] wrote:

 Geez, it was that simple!!!  I've searched everywhere for libpthread, but
 didn't bother to see doc on libkse.  My bad...

Stop using libkse.  In 5.0 it's an experimental library.  If
you want libpthread, you need to upgrade to 5-stable.  Like
I've said before, you've either hosed your system or are using
an improper (for 5.0) /etc/libmap.conf.  There should be no
references to libpthread.so in 5.0.

-- 
DE

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]