Re: /usr/libexec/ld-elf.so.1: /usr/lib/libutil.so.3: Undefined symbol __stdoutp

2001-12-24 Thread Ruslan Ermilov

On Mon, Dec 24, 2001 at 12:03:34AM -0700, M. Warner Losh wrote:
  Warner, could you please add __stdoutp to the 20010919 entry, and
  a hint to put COMPAT4X=true to /etc/make.conf to the 20010924 entry?
 
 Actually, you only need the first one.  You don't need COMPAT4X=true
 all the time, so I'm a little reluctant to include that.  Lemme know
 how I can improve what I just committed.
 
Not quite true.  COMPAT4X libraries are occasionally get updated,
and if you have 4.x applications to continue running, you'd better
to be safe than sorry, and add COMPAT4X=true to /etc/make.conf, so
that installworld installs them on every run.  The instructions in
20010924 are for manually installing these libraries, and only work
for the i386 arch.  I'd suggest that we put something like this:

: 20010924:
:   The buildworld has been fixed.  You may need to install
:   the 4.x compatibility libraries for some old binaries
:   to work.  Add COMPAT4X=true to your /etc/make.conf to
:   get them installed on every installworld, or execute the
:   following to get them installed only once:
:   cd src/lib/compat/compat4x.arch
:   make all install
:   You will see ``__stdoutp undefined'' until you do this.


Cheers,
-- 
Ruslan Ermilov  Oracle Developer/DBA,
[EMAIL PROTECTED]   Sunbay Software AG,
[EMAIL PROTECTED]  FreeBSD committer,
+380.652.512.251Simferopol, Ukraine

http://www.FreeBSD.org  The Power To Serve
http://www.oracle.com   Enabling The Information Age

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



/usr/libexec/ld-elf.so.1: /usr/lib/libutil.so.3: Undefined symbol __stdoutp

2001-12-21 Thread Jean Louis Ntakpe

Hi,

Some binaries, especially  from the ports tree on my 
system just failed to start, bringing the message:

/usr/libexec/ld-elf.so.1: /usr/lib/libutil.so.3: Undefined symbol __stdoutp

Could somebody give me a hint what I'm  missing here.
Since I couldn't start cvsup, my system ist somewhat
out of sync. (freebsd-current).

regards,

Jean Louis Ntakpe
[EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: /usr/libexec/ld-elf.so.1: /usr/lib/libutil.so.3: Undefined symbol __stdoutp

2001-12-21 Thread Ruslan Ermilov

On Fri, Dec 21, 2001 at 11:53:49AM -0800, Doug White wrote:
 On Fri, 21 Dec 2001, Jean Louis Ntakpe wrote:
 
  Some binaries, especially  from the ports tree on my
  system just failed to start, bringing the message:
 
  /usr/libexec/ld-elf.so.1: /usr/lib/libutil.so.3: Undefined symbol __stdoutp
 
  Could somebody give me a hint what I'm  missing here.
 
 /usr/src/UPDATING is your friend.
 
 Hint: echo COMPAT4X=yes  /etc/make.conf; make world
 
Actually, there's not enough context in src/UPDATING to find these
entries.

Warner, could you please add __stdoutp to the 20010919 entry, and
a hint to put COMPAT4X=true to /etc/make.conf to the 20010924 entry?


Cheers,
-- 
Ruslan Ermilov  Oracle Developer/DBA,
[EMAIL PROTECTED]   Sunbay Software AG,
[EMAIL PROTECTED]  FreeBSD committer,
+380.652.512.251Simferopol, Ukraine

http://www.FreeBSD.org  The Power To Serve
http://www.oracle.com   Enabling The Information Age

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: libutil.so.3: Undefined symbol __stdoutp

2001-09-24 Thread Bill Fenner


Read UPDATING.

Having an old libc.so.4 in /usr/lib is not in UPDATING.  (Perhaps it
should be...)

You have an old libc.so.4.  You can have it updated
automatically by adding COMPAT4X=yes into /etc/make.conf.  For now:

# echo COMPAT4X=yes  /etc/make.conf
# cd /usr/src/lib/compat
# make obj
# make
# make install

and you should be set.

Only if he has a /usr/src/lib/compat/compat4x.i386/Makefile
from between the time that you added the removal of libs from
/usr/lib and ru removed it (about a 3-hour window).  Otherwise,
he'll have to rm /usr/lib/libc.so.4 by hand.

  Bill

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: libutil.so.3: Undefined symbol __stdoutp

2001-09-24 Thread Donny Lee

Peter Wemm wrote:
  a new made world and kernel from last night (09/22) cvsup,
  and is unable to cvsup again tonight (09/23).
  [donny@sys]/usr/src cvsup
  /usr/libexec/ld-elf.so.1: /usr/lib/libutil.so.3: Undefined symbol
  __stdoutp
 Read UPDATING.  You have an old libc.so.4.  You can have it updated
 automatically by adding COMPAT4X=yes into /etc/make.conf.  For now:

  Thanks, can you point me out which entry in UPDATING? i'd 
  like to read the entire comment.  the last entry in my UPDATING 
  is 09/19, and 
   
-- 
// Donny

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: libutil.so.3: Undefined symbol __stdoutp

2001-09-24 Thread Bill Fenner


OOPS.  That's what I get for just looking individual bits of the tree.
Of course, ru not only removed the code from the
compat/compat4x.i386/Makefile but also added some to compat/Makefile
to work [better] for everything.

Sorry for any confusion I introduced.

  Bill

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



libutil.so.3: Undefined symbol __stdoutp

2001-09-23 Thread Donny Lee


Hi there,

anyone out there has this problem?

a new made world and kernel from last night (09/22) cvsup,
and is unable to cvsup again tonight (09/23).

[donny@sys]/usr/src cvsup
/usr/libexec/ld-elf.so.1: /usr/lib/libutil.so.3: Undefined symbol
__stdoutp

5.0-c, with cvsup 16.1e.

-- 
// Donny

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: libutil.so.3: Undefined symbol __stdoutp

2001-09-23 Thread Peter Wemm

Donny Lee wrote:
 
 Hi there,
 
 anyone out there has this problem?
 
 a new made world and kernel from last night (09/22) cvsup,
 and is unable to cvsup again tonight (09/23).
 
 [donny@sys]/usr/src cvsup
 /usr/libexec/ld-elf.so.1: /usr/lib/libutil.so.3: Undefined symbol
 __stdoutp
 
 5.0-c, with cvsup 16.1e.

Read UPDATING.  You have an old libc.so.4.  You can have it updated
automatically by adding COMPAT4X=yes into /etc/make.conf.  For now:

# echo COMPAT4X=yes  /etc/make.conf
# cd /usr/src/lib/compat
# make obj
# make
# make install

and you should be set.


Cheers,
-Peter
--
Peter Wemm - [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]
All of this is for nothing if we don't go to the stars - JMS/B5


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: libutil.so.3: Undefined symbol __stdoutp

2001-09-23 Thread Kris Kennaway

On Mon, Sep 24, 2001 at 01:06:47PM +0800, Donny Lee wrote:
 
 Hi there,
 
 anyone out there has this problem?

Are you even reading this list?

Kris

 PGP signature