Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Mark Worsdal » Sun, 15 Jun 2003 23:29:55



Hi,

FreeBSD 4.8

While building a new version of samba 2.2.8a it wanted to make cups but
then got this error:

===>   samba-2.2.8a depends on shared library: cups.2 - not found
===>    Verifying install for cups.2 in /usr/ports/print/cups-base
===>  Building for cups-base-1.1.18.0_5
/usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol
"__stderrp"
*** Error code 1

Any ideas on what I should do?

M.
--
Mark Worsdall

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Conrad Sabatie » Tue, 17 Jun 2003 08:13:35




Quote:>Hi,

>FreeBSD 4.8

>While building a new version of samba 2.2.8a it wanted to make cups but
>then got this error:

>===>   samba-2.2.8a depends on shared library: cups.2 - not found
>===>    Verifying install for cups.2 in /usr/ports/print/cups-base
>===>  Building for cups-base-1.1.18.0_5
>/usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol
>"__stderrp"
>*** Error code 1

>Any ideas on what I should do?

It's been a while since I ran 4.x, but in -CURRENT this symbol is
defined in libc.  Try doing this under /usr/lib to see if it can be
found anywhere:

for f in *.a; do if nm $f | grep 'D __stderrp'; then echo $f; fi; done

If it doesn't turn up, there's something very, very wrong here.  :-)  
You may need to rebuild your system libraries and/or world.

--


 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Mark Worsdal » Wed, 18 Jun 2003 05:04:00






>>Hi,

>>FreeBSD 4.8

>>While building a new version of samba 2.2.8a it wanted to make cups but
>>then got this error:

>>===>   samba-2.2.8a depends on shared library: cups.2 - not found
>>===>    Verifying install for cups.2 in /usr/ports/print/cups-base
>>===>  Building for cups-base-1.1.18.0_5
>>/usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol
>>"__stderrp"
>>*** Error code 1

>>Any ideas on what I should do?

>It's been a while since I ran 4.x, but in -CURRENT this symbol is
>defined in libc.  Try doing this under /usr/lib to see if it can be
>found anywhere:

>for f in *.a; do if nm $f | grep 'D __stderrp'; then echo $f; fi; done

>If it doesn't turn up, there's something very, very wrong here.  :-)
>You may need to rebuild your system libraries and/or world.

Have not yet tried your for thing.

I have recently done a build world / build install kernel / install
world / mergemaster and it was from 4.5 to 4.8, all went well.

If it is there, what do I do?

If it is not there...... please say not "Build world"?

M.
--
Mark Worsdall
https://www.paypal.com/refer/pal=LS79YHQ9VUGLJ

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Conrad Sabatie » Thu, 19 Jun 2003 04:00:09








>>>Hi,

>>>FreeBSD 4.8

>>>While building a new version of samba 2.2.8a it wanted to make cups but
>>>then got this error:

>>>===>   samba-2.2.8a depends on shared library: cups.2 - not found
>>>===>    Verifying install for cups.2 in /usr/ports/print/cups-base
>>>===>  Building for cups-base-1.1.18.0_5
>>>/usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol
>>>"__stderrp"
>>>*** Error code 1

>>>Any ideas on what I should do?

>>It's been a while since I ran 4.x, but in -CURRENT this symbol is
>>defined in libc.  Try doing this under /usr/lib to see if it can be
>>found anywhere:

>>for f in *.a; do if nm $f | grep 'D __stderrp'; then echo $f; fi; done

>>If it doesn't turn up, there's something very, very wrong here.  :-)
>>You may need to rebuild your system libraries and/or world.

>Have not yet tried your for thing.

>I have recently done a build world / build install kernel / install
>world / mergemaster and it was from 4.5 to 4.8, all went well.

>If it is there, what do I do?

Rebuild samba.  :-)  Seriously, probably some things have shifted around
in /usr/lib and your samba's dependencies are stale now.

Quote:>If it is not there...... please say not "Build world"?

No, not the world, but do rebuild samba.  

Do you have portupgrade installed?  If not, definitely do so, right now.

Then set whatever compile options you normally use for samba (and any
other ports) in /usr/local/etc/pkgtools.conf (example provided in the
file).

Then 'portupgrade -f samba' should do all the magic necessary to build
and reinstall samba in your newly upgraded environment.

Hope this helps.
--

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Mark Worsdal » Thu, 19 Jun 2003 04:50:00








>>>Hi,

>>>FreeBSD 4.8

>>>While building a new version of samba 2.2.8a it wanted to make cups but
>>>then got this error:

>>>===>   samba-2.2.8a depends on shared library: cups.2 - not found
>>>===>    Verifying install for cups.2 in /usr/ports/print/cups-base
>>>===>  Building for cups-base-1.1.18.0_5
>>>/usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol
>>>"__stderrp"
>>>*** Error code 1

>>>Any ideas on what I should do?

>>It's been a while since I ran 4.x, but in -CURRENT this symbol is
>>defined in libc.  Try doing this under /usr/lib to see if it can be
>>found anywhere:

>>for f in *.a; do if nm $f | grep 'D __stderrp'; then echo $f; fi; done

>>If it doesn't turn up, there's something very, very wrong here.  :-)
>>You may need to rebuild your system libraries and/or world.

I saw your followup, but this is the result of the for thingy...

cd /usr/lib
su-2.04# for f in *.a; do if nm $f | grep 'D __stderrp'; then echo $f;
fi; done
0000013c D __stderrp
libc.a
0000013c D __stderrp
libc_p.a
0000013c D __stderrp
libc_pic.a
0000013c D __stderrp
libc_r.a
0000013c D __stderrp
libc_r_p.a

Good... Bad...?

--
Mark Worsdall
https://www.paypal.com/refer/pal=LS79YHQ9VUGLJ

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Mark Worsdal » Thu, 19 Jun 2003 04:52:32










>>>>Hi,

>>>>FreeBSD 4.8

>>>>While building a new version of samba 2.2.8a it wanted to make cups but
>>>>then got this error:

>>>>===>   samba-2.2.8a depends on shared library: cups.2 - not found
>>>>===>    Verifying install for cups.2 in /usr/ports/print/cups-base
>>>>===>  Building for cups-base-1.1.18.0_5
>>>>/usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol
>>>>"__stderrp"
>>>>*** Error code 1

>>>>Any ideas on what I should do?

>>>It's been a while since I ran 4.x, but in -CURRENT this symbol is
>>>defined in libc.  Try doing this under /usr/lib to see if it can be
>>>found anywhere:

>>>for f in *.a; do if nm $f | grep 'D __stderrp'; then echo $f; fi; done

>>>If it doesn't turn up, there's something very, very wrong here.  :-)
>>>You may need to rebuild your system libraries and/or world.

>>Have not yet tried your for thing.

>>I have recently done a build world / build install kernel / install
>>world / mergemaster and it was from 4.5 to 4.8, all went well.

>>If it is there, what do I do?

>Rebuild samba.  :-)  Seriously, probably some things have shifted around
>in /usr/lib and your samba's dependencies are stale now.

:-) I was trying to build samba when the fault occurred during the cups
make cycle.

Quote:>>If it is not there...... please say not "Build world"?

>No, not the world, but do rebuild samba.

A ha.

Quote:

>Do you have portupgrade installed?  If not, definitely do so, right now.

No but doing so now.

Quote:>Then set whatever compile options you normally use for samba (and any
>other ports) in /usr/local/etc/pkgtools.conf (example provided in the
>file).
>Then 'portupgrade -f samba' should do all the magic necessary to build
>and reinstall samba in your newly upgraded environment.

Ok.

--
Mark Worsdall
https://www.paypal.com/refer/pal=LS79YHQ9VUGLJ

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Mark Worsdal » Thu, 19 Jun 2003 04:54:09




Quote:>Do you have portupgrade installed?  If not, definitely do so, right now.

During make cycle.....

su-2.04# cd /usr/ports/sysutils/portupgrade
su-2.04# make
 >> pkgtools-20030427.tar.bz2 doesn't seem to exist in
/usr/ports/distfiles/.
 >> Attempting to fetch from ftp://ftp.iDaemons.org/pub/distfiles/.
Receiving pkgtools-20030427.tar.bz2 (98329 bytes): 100% (ETA 00:00)
98329 bytes transferred in 33.8 seconds (2.84 kBps)
===>  Extracting for portupgrade-20030427
 >> Checksum OK for pkgtools-20030427.tar.bz2.
===>   portupgrade-20030427 depends on file: /usr/local/bin/ruby - found
===>  Patching for portupgrade-20030427
===>   portupgrade-20030427 depends on file: /usr/local/bin/ruby - found
===>   portupgrade-20030427 depends on file: /usr/local/bin/ruby - found
===>   portupgrade-20030427 depends on file:
/usr/local/lib/ruby/site_ruby/1.6/i386-freebsd4/features/ruby18/file_ruby18.so
- not found
===>    Verifying install for
/usr/local/lib/ruby/site_ruby/1.6/i386-freebsd4/features/ruby18/file_ruby18.so
in /usr/ports/lang/ruby16-shim-ruby18
 >> shim-ruby16_18-1.8.0-preview2-2003.04.19.tar.bz2 doesn't seem to
exist in /usr/ports/distfiles/ruby.
 >> Attempting to fetch from ftp://ftp.iij.ad.jp/pub/lang/ruby/shim/.
Receiving shim-ruby16_18-1.8.0-preview2-2003.04.1 (199175 bytes): 100%
(ETA 00:00)
199175 bytes transferred in 68.2 seconds (2.85 kBps)
===>  Extracting for ruby-shim-ruby18-1.8.0.p2.2003.04.19
 >> Checksum OK for
ruby/shim-ruby16_18-1.8.0-preview2-2003.04.19.tar.bz2.
===>   ruby-shim-ruby18-1.8.0.p2.2003.04.19 depends on file:
/usr/local/bin/ruby - found
===>  Patching for ruby-shim-ruby18-1.8.0.p2.2003.04.19
===>   ruby-shim-ruby18-1.8.0.p2.2003.04.19 depends on file:
/usr/local/bin/ruby - found
===>   ruby-shim-ruby18-1.8.0.p2.2003.04.19 depends on file:
/usr/local/bin/ruby - found
===>  Configuring for ruby-shim-ruby18-1.8.0.p2.2003.04.19
===>  Building for ruby-shim-ruby18-1.8.0.p2.2003.04.19
===>  Configuring...
/usr/libexec/ld-elf.so.1: /usr/lib/libm.so.2: Undefined symbol
"__stderrp"
*** Error code 1

Stop in /usr/ports/lang/ruby16-shim-ruby18/work/shim/ruby16.
*** Error code 1

Stop in /usr/ports/lang/ruby16-shim-ruby18.
*** Error code 1

Stop in /usr/ports/sysutils/portupgrade.

Looks like same problem?
--
Mark Worsdall
https://www.paypal.com/refer/pal=LS79YHQ9VUGLJ

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Conrad Sabatie » Thu, 19 Jun 2003 05:11:39






>>Do you have portupgrade installed?  If not, definitely do so, right now.

>During make cycle.....

>su-2.04# cd /usr/ports/sysutils/portupgrade
>su-2.04# make
[...]
>===>  Configuring for ruby-shim-ruby18-1.8.0.p2.2003.04.19
>===>  Building for ruby-shim-ruby18-1.8.0.p2.2003.04.19
>===>  Configuring...
>/usr/libexec/ld-elf.so.1: /usr/lib/libm.so.2: Undefined symbol
>"__stderrp"
>*** Error code 1

>Stop in /usr/ports/lang/ruby16-shim-ruby18/work/shim/ruby16.
>*** Error code 1

>Stop in /usr/ports/lang/ruby16-shim-ruby18.
>*** Error code 1

>Stop in /usr/ports/sysutils/portupgrade.

>Looks like same problem?

Yes.  Either you've got some serious damage in /usr/lib (mismatched
library versions and such) or your ldconfig is not configured properly.

Did you ever try that little one-liner I sent in my first followup, by
the way?  I'm curious as to what the results would be.

--

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Conrad Sabatie » Thu, 19 Jun 2003 05:20:40










>>>>Hi,

>>>>FreeBSD 4.8

>>>>While building a new version of samba 2.2.8a it wanted to make cups but
>>>>then got this error:

>>>>===>   samba-2.2.8a depends on shared library: cups.2 - not found
>>>>===>    Verifying install for cups.2 in /usr/ports/print/cups-base
>>>>===>  Building for cups-base-1.1.18.0_5
>>>>/usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol
>>>>"__stderrp"
>>>>*** Error code 1

>>>>Any ideas on what I should do?

Doh!  I only just noticed this.  It looks like when the samba build
invokes the cups build, that the cups dir is already "dirty" from an
earlier build.

Your results from that little script look OK, by the way.

Try cleaning everything first before building samba.  If you have
portupgrade installed, 'portsclean -C' will do the trick, or else
'cd /usr/ports/net/samba; make clean-depends' if not.

If you don't have portupgrade installed, by the way, you're nuts. :-)

Let's hope this will do the trick. <crossing fingers>
--

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Mark Worsdal » Thu, 19 Jun 2003 06:30:32












>>>>>Hi,

>>>>>FreeBSD 4.8

>>>>>While building a new version of samba 2.2.8a it wanted to make cups but
>>>>>then got this error:

>>>>>===>   samba-2.2.8a depends on shared library: cups.2 - not found
>>>>>===>    Verifying install for cups.2 in /usr/ports/print/cups-base
>>>>>===>  Building for cups-base-1.1.18.0_5
>>>>>/usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol
>>>>>"__stderrp"
>>>>>*** Error code 1

>>>>>Any ideas on what I should do?

>Doh!  I only just noticed this.  It looks like when the samba build
>invokes the cups build, that the cups dir is already "dirty" from an
>earlier build.

>Your results from that little script look OK, by the way.

>Try cleaning everything first before building samba.  If you have
>portupgrade installed, 'portsclean -C' will do the trick, or else
>'cd /usr/ports/net/samba; make clean-depends' if not.

>If you don't have portupgrade installed, by the way, you're nuts. :-)

I am trying to install it.... but I get the same error.

make clean-depends
===>  Cleaning for ruby-bdb1-0.1.9
===>  Cleaning for ruby-1.6.8.2003.04.19
===>  Cleaning for ruby-shim-ruby18-1.8.0.p2.2003.04.19
===>  Cleaning for ruby-rdoc-0.0.0.b2
su-2.04# make
===>   portupgrade-20030427 depends on file: /usr/local/bin/ruby - found
===>   portupgrade-20030427 depends on file:
/usr/local/lib/ruby/site_ruby/1.6/i386-freebsd4/features/ruby18/file_ruby18.so
- not found
===>    Verifying install for
/usr/local/lib/ruby/site_ruby/1.6/i386-freebsd4/features/ruby18/file_ruby18.so
in /usr/ports/lang/ruby16-shim-ruby18
===>  Extracting for ruby-shim-ruby18-1.8.0.p2.2003.04.19
 >> Checksum OK for
ruby/shim-ruby16_18-1.8.0-preview2-2003.04.19.tar.bz2.
===>   ruby-shim-ruby18-1.8.0.p2.2003.04.19 depends on file:
/usr/local/bin/ruby - found
===>  Patching for ruby-shim-ruby18-1.8.0.p2.2003.04.19
===>   ruby-shim-ruby18-1.8.0.p2.2003.04.19 depends on file:
/usr/local/bin/ruby - found
===>   ruby-shim-ruby18-1.8.0.p2.2003.04.19 depends on file:
/usr/local/bin/ruby - found
===>  Configuring for ruby-shim-ruby18-1.8.0.p2.2003.04.19
===>  Building for ruby-shim-ruby18-1.8.0.p2.2003.04.19
===>  Configuring...
/usr/libexec/ld-elf.so.1: /usr/lib/libm.so.2: Undefined symbol
"__stderrp"
*** Error code 1

Stop in /usr/ports/lang/ruby16-shim-ruby18/work/shim/ruby16.
*** Error code 1

Stop in /usr/ports/lang/ruby16-shim-ruby18.
*** Error code 1

Stop in /usr/ports/sysutils/portupgrade.

Quote:>Let's hope this will do the trick. <crossing fingers>

Me too.

--
Mark Worsdall
https://www.paypal.com/refer/pal=LS79YHQ9VUGLJ

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Mark Worsdal » Thu, 19 Jun 2003 06:34:11








>>>Do you have portupgrade installed?  If not, definitely do so, right now.

>>During make cycle.....

>>su-2.04# cd /usr/ports/sysutils/portupgrade
>>su-2.04# make
>[...]
>>===>  Configuring for ruby-shim-ruby18-1.8.0.p2.2003.04.19
>>===>  Building for ruby-shim-ruby18-1.8.0.p2.2003.04.19
>>===>  Configuring...
>>/usr/libexec/ld-elf.so.1: /usr/lib/libm.so.2: Undefined symbol
>>"__stderrp"
>>*** Error code 1

>>Stop in /usr/ports/lang/ruby16-shim-ruby18/work/shim/ruby16.
>>*** Error code 1

>>Stop in /usr/ports/lang/ruby16-shim-ruby18.
>>*** Error code 1

>>Stop in /usr/ports/sysutils/portupgrade.

>>Looks like same problem?

>Yes.  Either you've got some serious damage in /usr/lib (mismatched
>library versions and such) or your ldconfig is not configured properly.

Not sure how it is suppose to be configured but:-

more /etc/ld.so.conf
/etc/ld.so.conf: No such file or directory
su-2.04# more /etc/ld-elf.so.conf
/etc/ld-elf.so.conf: No such file or directory

The error is showing up on more and more make's

--
Mark Worsdall
https://www.paypal.com/refer/pal=LS79YHQ9VUGLJ

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by David Bolto » Thu, 19 Jun 2003 10:56:34



>I have recently done a build world / build install kernel / install
>world / mergemaster and it was from 4.5 to 4.8, all went well.

Hello Mark,
If you get to the point of grasping at staws: I noticed that you either have a
typo, or you did build your new kernel before installing world.  If so, could
that possible add a subtle mismatch between kernel and userland that might mess
up your compiling?

Just a shot....
David
--
I may not have gone where I intended to go, but I think I have ended up where
I intended to be.
- Douglas Adams

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by David Bolto » Thu, 19 Jun 2003 11:07:44



> If you get to the point of grasping at staws: I noticed that you either have a
> typo, or you did build your new kernel before installing world.  If so, could
> that possible add a subtle mismatch between kernel and userland that might mess
> up your compiling?

Sorry, my confusion.  I had things a bit mucked up.  Kindly disregard my
attempt to offer a suggestion.

David

--
Tradition is the illusion of permanence.
- Woody Allen

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Mark Worsdal » Fri, 20 Jun 2003 06:03:59










>>>>Do you have portupgrade installed?  If not, definitely do so, right now.

>>>During make cycle.....

>>>su-2.04# cd /usr/ports/sysutils/portupgrade
>>>su-2.04# make
>>[...]
>>>===>  Configuring for ruby-shim-ruby18-1.8.0.p2.2003.04.19
>>>===>  Building for ruby-shim-ruby18-1.8.0.p2.2003.04.19
>>>===>  Configuring...
>>>/usr/libexec/ld-elf.so.1: /usr/lib/libm.so.2: Undefined symbol
>>>"__stderrp"
>>>*** Error code 1

>>>Stop in /usr/ports/lang/ruby16-shim-ruby18/work/shim/ruby16.
>>>*** Error code 1

>>>Stop in /usr/ports/lang/ruby16-shim-ruby18.
>>>*** Error code 1

>>>Stop in /usr/ports/sysutils/portupgrade.

>>>Looks like same problem?

>>Yes.  Either you've got some serious damage in /usr/lib (mismatched
>>library versions and such) or your ldconfig is not configured properly.

>Not sure how it is suppose to be configured but:-

>more /etc/ld.so.conf
>/etc/ld.so.conf: No such file or directory
>su-2.04# more /etc/ld-elf.so.conf
>/etc/ld-elf.so.conf: No such file or directory

>The error is showing up on more and more make's

Just to let you know I had removed the samba port and cvsup' it but same
error:-

===>  Building for samba-2.2.8a
/bin/rm -fr
/usr/ports/net/samba/work/samba-2.2.8a/source/include/proto.h
(cd /usr/ports/net/samba/work/samba-2.2.8a/source && make proto)
rebuilding include/proto.h
/usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol
"__stderrp"
*** Error code 1

Stop in /usr/ports/net/samba.
*** Error code 1

Stop in /usr/ports/net/samba.

I am getting a little nervous now.

M.
--
Mark Worsdall
https://www.paypal.com/refer/pal=LS79YHQ9VUGLJ

 
 
 

Port Make Error: /usr/libexec/ld-elf.so.1: /usr/lib/libkvm.so.2: Undefined symbol

Post by Conrad Sabatie » Fri, 20 Jun 2003 11:38:57












>>>>>Do you have portupgrade installed?  If not, definitely do so, right now.

>>>>During make cycle.....

>>>>su-2.04# cd /usr/ports/sysutils/portupgrade
>>>>su-2.04# make
>>>[...]
>>>>===>  Configuring for ruby-shim-ruby18-1.8.0.p2.2003.04.19
>>>>===>  Building for ruby-shim-ruby18-1.8.0.p2.2003.04.19
>>>>===>  Configuring...
>>>>/usr/libexec/ld-elf.so.1: /usr/lib/libm.so.2: Undefined symbol
>>>>"__stderrp"
>>>>*** Error code 1

>>>>Stop in /usr/ports/lang/ruby16-shim-ruby18/work/shim/ruby16.
>>>>*** Error code 1

>>>>Stop in /usr/ports/lang/ruby16-shim-ruby18.
>>>>*** Error code 1

>>>>Stop in /usr/ports/sysutils/portupgrade.

>>>>Looks like same problem?

>>>Yes.  Either you've got some serious damage in /usr/lib (mismatched
>>>library versions and such) or your ldconfig is not configured properly.

>>Not sure how it is suppose to be configured but:-

>>more /etc/ld.so.conf
>>/etc/ld.so.conf: No such file or directory
>>su-2.04# more /etc/ld-elf.so.conf
>>/etc/ld-elf.so.conf: No such file or directory

>>The error is showing up on more and more make's

>Just to let you know I had removed the samba port and cvsup' it but same
>error:-

Do you mean you cvsupped ports or src?  If I were you, I'd just bite the
bullet and go ahead and 'cd /usr/src && make update && make buildworld,
etc.'.

Won't cost you any more time than trying in vain to get around it
somehow.  :-)

Quote:>I am getting a little nervous now.

Ah, try not to worry.  I've had worse than this on my box, and managed
to recover.  It's all a matter of being patient, taking your time, and
*thinking* before you do something.  :-)

Sorry I have no better options to offer at this time.

Good luck.
--

 
 
 

1. /usr/libexec/ld-elf.so.1: Shared object "libXaw.so.6" not found ????

Hi

I just installed FreeBSD 4.5, what im trying is to build a firewall. What i
need is to get all new versions of, the pkg im useing, so im trying to
update my ports with this command "cvsup /etc/stable-supfile", but i get an
error " /usr/libexec/ld-elf.so.1: Shared object "libXaw.so.6" not found ".
My installation is a standard, with thees pkg: lynx, mutt, cvsup and bash. I
Iv added this to the stable-supfile

    ports-www tag=.
    ports-mail tag=.
    ports-net tag=.
    ports-shells tag=.
    ports-security tag=.
    ports-sysutils tag=.

All my conf of the system is on this link, i followd it like its say, with
evry thing
http://www.schlacter.net:8500/public/FreeBSD-STABLE_and_IPFILTER.html

I hope somone can help me out here..

Thanks

Rene

2. transactional monitor ?

3. /usr/libexec/ld-elf.so.1: Shared object "libintl.so.1" not found

4. where can i find apache-2.0.35-0.2.i686.rpm

5. /usr/libexec/ld-elf.so.1 Shared object "libX11R6.so.6" not found

6. linux freeze

7. /usr/libexec/ld-elf.so.1: Shared object "libc.so.5" not found

8. bsd-gw: Error reading from connection: Bad file number

9. xcdroast error: /usr/lib/libtcl8.0.so: undefined symbol: stat

10. /usr/lib/gcc-lib/i386-linux and /usr/lib/gcc-lib/i486-linux

11. Error: /USR/LIB/LIBGPM.SO.1 Undefined Symbol: Stdscr ??

12. /usr/libexec/elf/ld: cannot find -lX11

13. running netcfg on RH51: usr/lib/libgtk.so.1: undefined symbol: g_strdelimit