Re: buildworld failure in cvs ...

2000-03-10 Thread Kris Kennaway

On Fri, 10 Mar 2000, Jim Bloom wrote:

> I believe it is a build order and dependency problem that shouldn't
> exist.  libkrb is built before libRSAglue and then the shared library is
> built with -LRSAglue which is only found in /usr/lib. 
> kerberosIV/Makefile.inc has a line "LDADD+= -LRSAglue".
> 
> This whole issue should not exist simply because libRSAglue is a dummy
> stub and there is no reson to link anything against it.  The quick fix
> is to remove libRSAglue from the makefiles where it is used.  The
> following makefiles need to have the references to RSAglue removed:

Ack, I thought I had committed this already, but I see it's only in one of
my trees. I'll test this with the current failure mode and without and try
and get it committed ASAP.

Thanks!

Kris


In God we Trust -- all others must submit an X.509 certificate.
-- Charles Forsythe <[EMAIL PROTECTED]>



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



Re: buildworld failure in cvs ...

2000-03-10 Thread Bush Doctor

Out of da blue Jim Bloom aka ([EMAIL PROTECTED]) said:
> Kris Kennaway wrote:
> > 
> > On Thu, 9 Mar 2000, Bush Doctor wrote:
> > 
> > > Again my libRSAglue libraries before the above were:
> > > bantu.cl.msu.edu:dervish> ls -l /usr/lib/libR*
> > > -r--r--r--   1 root wheel 810 Feb 28 22:28 /usr/lib/libRSAglue.a
> > > lrwxr-xr-x   1 root wheel  15 Jan 29 07:29 /usr/lib/libRSAglue.so -> 
>libRSAglue.so.1
> > > -r--r--r--   1 root wheel5872 Jan 29 07:29 /usr/lib/libRSAglue.so.1
> > > -r--r--r--   1 root wheel 868 Feb 28 22:28 /usr/lib/libRSAglue_p.a
> > 
> > This was very helpful - I've been able to replicate the problem by install
> > an old libRSAglue of this vintage. It still doesn't answer why on earth
> > make world is trying to link with it, but at least now I have something to
> > look at. Thanks!
> 
> I looked into this problem a bit as well.
> 
> I believe it is a build order and dependency problem that shouldn't
> exist.  libkrb is built before libRSAglue and then the shared library is
> built with -LRSAglue which is only found in /usr/lib. 
> kerberosIV/Makefile.inc has a line "LDADD+= -LRSAglue".
> 
> This whole issue should not exist simply because libRSAglue is a dummy
> stub and there is no reson to link anything against it.  The quick fix
> is to remove libRSAglue from the makefiles where it is used.  The
> following makefiles need to have the references to RSAglue removed:
Hmmm ..., I just helped a co-worker upgrade from -release to -current
and he ran into a problem where 'make buildworld' failed in building
Kerberos IV.  I seem to recall a similiar problem a few weeks back on my
-current box.  I wound up commenting out the kerberos IV build in make.conf,
performed a 'make buildworld' and 'make installworld' without kerberos IV,
and rebuilt world afterwards with kerberos IV enabled.  I really must be 
more proactive in reporting -current hiccups I come across :(

Unfortunately, my co-worker has already overwritten the buildworld log :(

> 
> usr.sbin/ppp/Makefile
> usr.sbin/pppd/Makefile
> secure/libexec/sshd/Makefile
> kerberosIV/Makefile.inc
> 
> I don't know how to change ld (compile time?) so that it doesn't look in
> the standard locations for files during buildworld.  That is what is
> required to guarantee this problem doesn't happen again.
> 
> Kris, would you like patches or will you edit these yourself?
> 
> Jim Bloom
> [EMAIL PROTECTED]


#;^)
-- 
f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.

bush doctor
<[EMAIL PROTECTED]>


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



Re: buildworld failure in cvs ...

2000-03-10 Thread Jim Bloom

Jim Bloom wrote:
> 
> The
> following makefiles need to have the references to RSAglue removed:
> 
> usr.sbin/ppp/Makefile
> usr.sbin/pppd/Makefile
> secure/libexec/sshd/Makefile
> kerberosIV/Makefile.inc
> 

Ignore secure/libexec/sshd/Makefile.  That was left over from when I was
trying to integrate OpenSSH into the base system before Mark's work was
included.

Jim Bloom
[EMAIL PROTECTED]


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



Re: buildworld failure in cvs ...

2000-03-10 Thread Jim Bloom

Kris Kennaway wrote:
> 
> On Thu, 9 Mar 2000, Bush Doctor wrote:
> 
> > Again my libRSAglue libraries before the above were:
> > bantu.cl.msu.edu:dervish> ls -l /usr/lib/libR*
> > -r--r--r--   1 root wheel 810 Feb 28 22:28 /usr/lib/libRSAglue.a
> > lrwxr-xr-x   1 root wheel  15 Jan 29 07:29 /usr/lib/libRSAglue.so -> 
>libRSAglue.so.1
> > -r--r--r--   1 root wheel5872 Jan 29 07:29 /usr/lib/libRSAglue.so.1
> > -r--r--r--   1 root wheel 868 Feb 28 22:28 /usr/lib/libRSAglue_p.a
> 
> This was very helpful - I've been able to replicate the problem by install
> an old libRSAglue of this vintage. It still doesn't answer why on earth
> make world is trying to link with it, but at least now I have something to
> look at. Thanks!

I looked into this problem a bit as well.

I believe it is a build order and dependency problem that shouldn't
exist.  libkrb is built before libRSAglue and then the shared library is
built with -LRSAglue which is only found in /usr/lib. 
kerberosIV/Makefile.inc has a line "LDADD+= -LRSAglue".

This whole issue should not exist simply because libRSAglue is a dummy
stub and there is no reson to link anything against it.  The quick fix
is to remove libRSAglue from the makefiles where it is used.  The
following makefiles need to have the references to RSAglue removed:

usr.sbin/ppp/Makefile
usr.sbin/pppd/Makefile
secure/libexec/sshd/Makefile
kerberosIV/Makefile.inc

I don't know how to change ld (compile time?) so that it doesn't look in
the standard locations for files during buildworld.  That is what is
required to guarantee this problem doesn't happen again.

Kris, would you like patches or will you edit these yourself?

Jim Bloom
[EMAIL PROTECTED]


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



Re: buildworld failure in cvs ...

2000-03-10 Thread Bush Doctor

Out of da blue Kris Kennaway aka ([EMAIL PROTECTED]) said:
> On Thu, 9 Mar 2000, Bush Doctor wrote:
> 
> > Again my libRSAglue libraries before the above were:
> > bantu.cl.msu.edu:dervish> ls -l /usr/lib/libR*
> > -r--r--r--   1 root wheel 810 Feb 28 22:28 /usr/lib/libRSAglue.a
> > lrwxr-xr-x   1 root wheel  15 Jan 29 07:29 /usr/lib/libRSAglue.so -> 
>libRSAglue.so.1
> > -r--r--r--   1 root wheel5872 Jan 29 07:29 /usr/lib/libRSAglue.so.1
> > -r--r--r--   1 root wheel 868 Feb 28 22:28 /usr/lib/libRSAglue_p.a
> 
> This was very helpful - I've been able to replicate the problem by install
> an old libRSAglue of this vintage. It still doesn't answer why on earth
> make world is trying to link with it, but at least now I have something to
> look at. Thanks!
You're welcome.  I'm interested in what you find out.

> 
> Kris
> 
> 
> In God we Trust -- all others must submit an X.509 certificate.
> -- Charles Forsythe <[EMAIL PROTECTED]>
> 
> 

#;^)
-- 
f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.

bush doctor
<[EMAIL PROTECTED]>


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



Re: buildworld failure in cvs ...

2000-03-10 Thread Kris Kennaway

On Thu, 9 Mar 2000, Bush Doctor wrote:

> Again my libRSAglue libraries before the above were:
> bantu.cl.msu.edu:dervish> ls -l /usr/lib/libR*
> -r--r--r--   1 root wheel 810 Feb 28 22:28 /usr/lib/libRSAglue.a
> lrwxr-xr-x   1 root wheel  15 Jan 29 07:29 /usr/lib/libRSAglue.so -> 
>libRSAglue.so.1
> -r--r--r--   1 root wheel5872 Jan 29 07:29 /usr/lib/libRSAglue.so.1
> -r--r--r--   1 root wheel 868 Feb 28 22:28 /usr/lib/libRSAglue_p.a

This was very helpful - I've been able to replicate the problem by install
an old libRSAglue of this vintage. It still doesn't answer why on earth
make world is trying to link with it, but at least now I have something to
look at. Thanks!

Kris


In God we Trust -- all others must submit an X.509 certificate.
-- Charles Forsythe <[EMAIL PROTECTED]>



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



Re: buildworld failure in cvs ...

2000-03-09 Thread Alexander Sanda

At 17:16 09.03.2000 -0800, Kris Kennaway wrote:

> > the variable being defined and not its value.  You might try removing
> > your object directory and doing a make cleandir twice to make sure
> > nothing is left in source tree that shouldn't be there.
>
>Yes, thats a likely candidate. Can you try blowing away /usr/obj and see
>if the problem persist?

Testa aslfdj slkdflaskdf lksflskf laksdflkas dflskf sldkfjsl lskdfj 
laskdjf lksdlks fskdjfls slkdfjs dlkasldk sjdlfkjs fskdjfl sdlfjslf sldjf 
sldfjs ldkfj



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



Re: buildworld failure in cvs ...

2000-03-09 Thread Bush Doctor

Out of da blue Kris Kennaway aka ([EMAIL PROTECTED]) said:
> On Thu, 9 Mar 2000, Benjamin Greenwald wrote:
> 
> > I did try blowing away /obj.  Didn't help.
> 
> Hmm. I'll try running a buildworld at home tonight with stale libRSAglue
> libs in /usr/lib and see if I can reproduce this. I don't think it's
> anything in the source tree which is causing the breakage directly -
> although if it's picking up things outside /usr/obj during the course of
> the buildworld that needs to be fixed.
Not that it directly relates to the problem, I wound up doing the following
to get 'make buildworld' to work:

1. rm -rf ../obj/* && make clean && make cleandepend && make cleandir && make clean && 
make update
2. cd secure;make obj;make depend && make all install
3. rm -rf ../obj/* && make clean && make cleandepend && make cleandir && make cleandir 
&& make clean 

Again my libRSAglue libraries before the above were:
bantu.cl.msu.edu:dervish> ls -l /usr/lib/libR*
-r--r--r--   1 root wheel 810 Feb 28 22:28 /usr/lib/libRSAglue.a
lrwxr-xr-x   1 root wheel  15 Jan 29 07:29 /usr/lib/libRSAglue.so -> 
libRSAglue.so.1
-r--r--r--   1 root wheel5872 Jan 29 07:29 /usr/lib/libRSAglue.so.1
-r--r--r--   1 root wheel 868 Feb 28 22:28 /usr/lib/libRSAglue_p.a

and after:
bantu.cl.msu.edu:dervish> ls -l /usr/lib/libR*
-r--r--r--   1 root wheel 810 Mar  9 18:02 /usr/lib/libRSAglue.a
lrwxr-xr-x   1 root wheel  15 Mar  9 18:02 /usr/lib/libRSAglue.so -> 
libRSAglue.so.1
-r--r--r--   1 root wheel1616 Mar  9 18:02 /usr/lib/libRSAglue.so.1
-r--r--r--   1 root wheel 868 Mar  9 18:02 /usr/lib/libRSAglue_p.a

Unfortunately I blew away the old libraries, but would like to know what happens with 
your test ...

> 
> Kris
> 
> 
> In God we Trust -- all others must submit an X.509 certificate.
> -- Charles Forsythe <[EMAIL PROTECTED]>
> 
> 
> 

#;^)
-- 
f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.

bush doctor
<[EMAIL PROTECTED]>


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



Re: buildworld failure in cvs ...

2000-03-09 Thread Kris Kennaway

On Thu, 9 Mar 2000, Benjamin Greenwald wrote:

> I did try blowing away /obj.  Didn't help.

Hmm. I'll try running a buildworld at home tonight with stale libRSAglue
libs in /usr/lib and see if I can reproduce this. I don't think it's
anything in the source tree which is causing the breakage directly -
although if it's picking up things outside /usr/obj during the course of
the buildworld that needs to be fixed.

Kris


In God we Trust -- all others must submit an X.509 certificate.
-- Charles Forsythe <[EMAIL PROTECTED]>



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



Re: buildworld failure in cvs ...

2000-03-09 Thread Benjamin Greenwald

I did try blowing away /obj.  Didn't help.

-Ben

> On Thu, 9 Mar 2000, Jim Bloom wrote:
> 
> > the variable being defined and not its value.  You might try removing
> > your object directory and doing a make cleandir twice to make sure
> > nothing is left in source tree that shouldn't be there.
> 
> Yes, thats a likely candidate. Can you try blowing away /usr/obj and see
> if the problem persist?
> 
> Kris
> 
> 
> In God we Trust -- all others must submit an X.509 certificate.
> -- Charles Forsythe <[EMAIL PROTECTED]>
> 
> 
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-current" in the body of the message
> 




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



Re: buildworld failure in cvs ...

2000-03-09 Thread Kris Kennaway

On Thu, 9 Mar 2000, Jim Bloom wrote:

> the variable being defined and not its value.  You might try removing
> your object directory and doing a make cleandir twice to make sure
> nothing is left in source tree that shouldn't be there.

Yes, thats a likely candidate. Can you try blowing away /usr/obj and see
if the problem persist?

Kris


In God we Trust -- all others must submit an X.509 certificate.
-- Charles Forsythe <[EMAIL PROTECTED]>



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



Re: buildworld failure in cvs ...

2000-03-09 Thread Benjamin Greenwald

I meant I was going to comment out MAKE_KERBEROS4, but thanks for the tip.

Speaking of which, this is precisely what I did.  I commented out 
MAKE_KERBEROS4, did a make world, uncommented MAKE_KERBEROS4, made the world 
again, and the second time everything was fine.

There's probably a faster way to do this but I can attest that the above works.

-Ben

> I am not seeing the problem with a standard build, but I am not building
> Kerberos.  Looking at the makefiles, there is no mentioned of libRSAglue
> anyplace.  The link command doesn't even imply the use of libRSAglue. 
> Also, a buildworld should not be using libraries outside of the build
> environment.
> 
> Don't bother building with MAKE_KERBEROS4=NO.  All of the tests look at
> the variable being defined and not its value.  You might try removing
> your object directory and doing a make cleandir twice to make sure
> nothing is left in source tree that shouldn't be there.
> 
> Jim Bloom
> [EMAIL PROTECTED]
> 
> Bush Doctor wrote:
> > 
> > Out of da blue Kris Kennaway aka ([EMAIL PROTECTED]) said:
> > > On Thu, 9 Mar 2000, Bush Doctor wrote:
> > >
> > > > Is anyone else seeing this.  cvsupped from 12:00 noon EST
> > > >
> > > > ...
> > > >
> > > > cc -O -pipe -I/usr/src/gnu/usr.bin/cvs/cvs -I/usr/src/gnu/usr.bin/cvs/c
vs/../lib -DHAVE_CONFIG_H  -I/usr/src/gnu/usr.bin/cvs/cvs/../../../..
> > > > /contrib/cvs/src -I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs
/lib -I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/diff -DHA
> > > > VE_KERBEROS -DHAVE_KRB_GET_ERR_TEXT -DENCRYPTION   -I/usr/obj/usr/src/i
386/usr/include  -o cvs add.o admin.o buffer.o checkin.o checkout.o c
> > > > lassify.o client.o commit.o create_adm.o cvsrc.o diff.o edit.o entries.
o error.o expand_path.o fileattr.o filesubr.o find_names.o hardlink.o
> > > >  hash.o history.o ignore.o import.o lock.o log.o login.o logmsg.o main.
o mkmodules.o modules.o myndbm.o no_diff.o parseinfo.o patch.o prepen
> > > >  d_args.o rcs.o rcscmds.o recurse.o release.o remove.o repos.o root.o r
tag.o run.o scramble.o server.o status.o subr.o tag.o update.o vers_ts
> > > >  .o version.o watch.o wrapper.o zlib.o  /usr/obj/usr/src/gnu/usr.bin/cv
s/cvs/../lib/libcvs.a /usr/obj/usr/src/gnu/usr.bin/cvs/cvs/../libdiff/
> > > >  libdiff.a -lgnuregex -lmd -lcrypt -lz -lkrb -lcrypto -lcom_err
> > > >  /usr/lib/libRSAglue.so.1: undefined reference to `R_RandomUpdate'
> > >
> > > Did this come up as part of make world? It looks like you have a stale
> > > library.
> > It's occurring during a buildworld.  If you're referring to libRSAglue
> > being stale it looks like that may be it.
> > 
> > bantu.cl.msu.edu:dervish> ls -l /usr/lib/libR*
> > -r--r--r--   1 root wheel 810 Feb 28 22:28 /usr/lib/libRSAglue.
a
> > lrwxr-xr-x   1 root wheel  15 Jan 29 07:29 /usr/lib/libRSAglue.
so -> libRSAglue.so.1
> > -r--r--r--   1 root wheel5872 Jan 29 07:29 /usr/lib/libRSAglue.
so.1
> > -r--r--r--   1 root wheel 868 Feb 28 22:28 /usr/lib/libRSAglue_
p.a
> 
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-current" in the body of the message
> 




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



Re: buildworld failure in cvs ...

2000-03-09 Thread Jim Bloom

I am not seeing the problem with a standard build, but I am not building
Kerberos.  Looking at the makefiles, there is no mentioned of libRSAglue
anyplace.  The link command doesn't even imply the use of libRSAglue. 
Also, a buildworld should not be using libraries outside of the build
environment.

Don't bother building with MAKE_KERBEROS4=NO.  All of the tests look at
the variable being defined and not its value.  You might try removing
your object directory and doing a make cleandir twice to make sure
nothing is left in source tree that shouldn't be there.

Jim Bloom
[EMAIL PROTECTED]

Bush Doctor wrote:
> 
> Out of da blue Kris Kennaway aka ([EMAIL PROTECTED]) said:
> > On Thu, 9 Mar 2000, Bush Doctor wrote:
> >
> > > Is anyone else seeing this.  cvsupped from 12:00 noon EST
> > >
> > > ...
> > >
> > > cc -O -pipe -I/usr/src/gnu/usr.bin/cvs/cvs -I/usr/src/gnu/usr.bin/cvs/cvs/../lib 
>-DHAVE_CONFIG_H  -I/usr/src/gnu/usr.bin/cvs/cvs/../../../..
> > > /contrib/cvs/src -I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/lib 
>-I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/diff -DHA
> > > VE_KERBEROS -DHAVE_KRB_GET_ERR_TEXT -DENCRYPTION   
>-I/usr/obj/usr/src/i386/usr/include  -o cvs add.o admin.o buffer.o checkin.o 
>checkout.o c
> > > lassify.o client.o commit.o create_adm.o cvsrc.o diff.o edit.o entries.o error.o 
>expand_path.o fileattr.o filesubr.o find_names.o hardlink.o
> > >  hash.o history.o ignore.o import.o lock.o log.o login.o logmsg.o main.o 
>mkmodules.o modules.o myndbm.o no_diff.o parseinfo.o patch.o prepen
> > >  d_args.o rcs.o rcscmds.o recurse.o release.o remove.o repos.o root.o rtag.o 
>run.o scramble.o server.o status.o subr.o tag.o update.o vers_ts
> > >  .o version.o watch.o wrapper.o zlib.o  
>/usr/obj/usr/src/gnu/usr.bin/cvs/cvs/../lib/libcvs.a 
>/usr/obj/usr/src/gnu/usr.bin/cvs/cvs/../libdiff/
> > >  libdiff.a -lgnuregex -lmd -lcrypt -lz -lkrb -lcrypto -lcom_err
> > >  /usr/lib/libRSAglue.so.1: undefined reference to `R_RandomUpdate'
> >
> > Did this come up as part of make world? It looks like you have a stale
> > library.
> It's occurring during a buildworld.  If you're referring to libRSAglue
> being stale it looks like that may be it.
> 
> bantu.cl.msu.edu:dervish> ls -l /usr/lib/libR*
> -r--r--r--   1 root wheel 810 Feb 28 22:28 /usr/lib/libRSAglue.a
> lrwxr-xr-x   1 root wheel  15 Jan 29 07:29 /usr/lib/libRSAglue.so -> 
>libRSAglue.so.1
> -r--r--r--   1 root wheel5872 Jan 29 07:29 /usr/lib/libRSAglue.so.1
> -r--r--r--   1 root wheel 868 Feb 28 22:28 /usr/lib/libRSAglue_p.a


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



Re: buildworld failure in cvs ...

2000-03-09 Thread Bush Doctor

Out of da blue Kris Kennaway aka ([EMAIL PROTECTED]) said:
> On Thu, 9 Mar 2000, Bush Doctor wrote:
> 
> > Is anyone else seeing this.  cvsupped from 12:00 noon EST
> > 
> > ...
> > 
> > cc -O -pipe -I/usr/src/gnu/usr.bin/cvs/cvs -I/usr/src/gnu/usr.bin/cvs/cvs/../lib 
>-DHAVE_CONFIG_H  -I/usr/src/gnu/usr.bin/cvs/cvs/../../../..
> > /contrib/cvs/src -I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/lib 
>-I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/diff -DHA
> > VE_KERBEROS -DHAVE_KRB_GET_ERR_TEXT -DENCRYPTION   
>-I/usr/obj/usr/src/i386/usr/include  -o cvs add.o admin.o buffer.o checkin.o 
>checkout.o c
> > lassify.o client.o commit.o create_adm.o cvsrc.o diff.o edit.o entries.o error.o 
>expand_path.o fileattr.o filesubr.o find_names.o hardlink.o
> >  hash.o history.o ignore.o import.o lock.o log.o login.o logmsg.o main.o 
>mkmodules.o modules.o myndbm.o no_diff.o parseinfo.o patch.o prepen
> >  d_args.o rcs.o rcscmds.o recurse.o release.o remove.o repos.o root.o rtag.o run.o 
>scramble.o server.o status.o subr.o tag.o update.o vers_ts
> >  .o version.o watch.o wrapper.o zlib.o  
>/usr/obj/usr/src/gnu/usr.bin/cvs/cvs/../lib/libcvs.a 
>/usr/obj/usr/src/gnu/usr.bin/cvs/cvs/../libdiff/
> >  libdiff.a -lgnuregex -lmd -lcrypt -lz -lkrb -lcrypto -lcom_err
> >  /usr/lib/libRSAglue.so.1: undefined reference to `R_RandomUpdate'
> 
> Did this come up as part of make world? It looks like you have a stale
> library.
It's occurring during a buildworld.  If you're referring to libRSAglue
being stale it looks like that may be it.

bantu.cl.msu.edu:dervish> ls -l /usr/lib/libR*
-r--r--r--   1 root wheel 810 Feb 28 22:28 /usr/lib/libRSAglue.a
lrwxr-xr-x   1 root wheel  15 Jan 29 07:29 /usr/lib/libRSAglue.so -> 
libRSAglue.so.1
-r--r--r--   1 root wheel5872 Jan 29 07:29 /usr/lib/libRSAglue.so.1
-r--r--r--   1 root wheel 868 Feb 28 22:28 /usr/lib/libRSAglue_p.a


> 
> Kris
> 
> 
> In God we Trust -- all others must submit an X.509 certificate.
> -- Charles Forsythe <[EMAIL PROTECTED]>
> 

#;^)
-- 
f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.

bush doctor
<[EMAIL PROTECTED]>


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



Re: buildworld failure in cvs ...

2000-03-09 Thread Benjamin Greenwald

It was during a buildworld.  I'm going to do a make world with MAKE_KERBEROS4=NO, and 
then do a buildworld after the reboot and see if it was somehow pulling the library 
from outside of /obj.

-Ben

> On Thu, 9 Mar 2000, Benjamin Greenwald wrote:
> 
> > I'm having the same problem.  To overstate the obvious, it's related to 
> > compiling with MAKE_KERBEROS4=yes which require the des code in libcrypto. 
 
> > Anyone know how libRSAglue is getting pulled in?
> 
> It shouldn't be..libRSAglue is an empty stub thesedays containing no
> symbols. Unless I've missed something nothing should even be looking for
> it, especially during make world, and especially not outside of the obj
> tree.
>  
> Kris
> 
> 
> In God we Trust -- all others must submit an X.509 certificate.
> -- Charles Forsythe <[EMAIL PROTECTED]>
> 
> 
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-current" in the body of the message
> 


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



Re: buildworld failure in cvs ...

2000-03-09 Thread Kris Kennaway

On Thu, 9 Mar 2000, Benjamin Greenwald wrote:

> I'm having the same problem.  To overstate the obvious, it's related to 
> compiling with MAKE_KERBEROS4=yes which require the des code in libcrypto.  
> Anyone know how libRSAglue is getting pulled in?

It shouldn't be..libRSAglue is an empty stub thesedays containing no
symbols. Unless I've missed something nothing should even be looking for
it, especially during make world, and especially not outside of the obj
tree.
 
Kris


In God we Trust -- all others must submit an X.509 certificate.
-- Charles Forsythe <[EMAIL PROTECTED]>



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



Re: buildworld failure in cvs ...

2000-03-09 Thread Kris Kennaway

On Thu, 9 Mar 2000, Bush Doctor wrote:

> Is anyone else seeing this.  cvsupped from 12:00 noon EST
> 
> ...
> 
> cc -O -pipe -I/usr/src/gnu/usr.bin/cvs/cvs -I/usr/src/gnu/usr.bin/cvs/cvs/../lib 
>-DHAVE_CONFIG_H  -I/usr/src/gnu/usr.bin/cvs/cvs/../../../..
> /contrib/cvs/src -I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/lib 
>-I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/diff -DHA
> VE_KERBEROS -DHAVE_KRB_GET_ERR_TEXT -DENCRYPTION   
>-I/usr/obj/usr/src/i386/usr/include  -o cvs add.o admin.o buffer.o checkin.o 
>checkout.o c
> lassify.o client.o commit.o create_adm.o cvsrc.o diff.o edit.o entries.o error.o 
>expand_path.o fileattr.o filesubr.o find_names.o hardlink.o
>  hash.o history.o ignore.o import.o lock.o log.o login.o logmsg.o main.o mkmodules.o 
>modules.o myndbm.o no_diff.o parseinfo.o patch.o prepen
>  d_args.o rcs.o rcscmds.o recurse.o release.o remove.o repos.o root.o rtag.o run.o 
>scramble.o server.o status.o subr.o tag.o update.o vers_ts
>  .o version.o watch.o wrapper.o zlib.o  
>/usr/obj/usr/src/gnu/usr.bin/cvs/cvs/../lib/libcvs.a 
>/usr/obj/usr/src/gnu/usr.bin/cvs/cvs/../libdiff/
>  libdiff.a -lgnuregex -lmd -lcrypt -lz -lkrb -lcrypto -lcom_err
>  /usr/lib/libRSAglue.so.1: undefined reference to `R_RandomUpdate'

Did this come up as part of make world? It looks like you have a stale
library.

Kris


In God we Trust -- all others must submit an X.509 certificate.
-- Charles Forsythe <[EMAIL PROTECTED]>



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



Re: buildworld failure in cvs ...

2000-03-09 Thread Benjamin Greenwald

I'm having the same problem.  To overstate the obvious, it's related to 
compiling with MAKE_KERBEROS4=yes which require the des code in libcrypto.  
Anyone know how libRSAglue is getting pulled in?

-Ben Greenwald

> Is anyone else seeing this.  cvsupped from 12:00 noon EST
> 
> ...
> 
> cc -O -pipe -I/usr/src/gnu/usr.bin/cvs/cvs -I/usr/src/gnu/usr.bin/cvs/cvs/../
lib -DHAVE_CONFIG_H  -I/usr/src/gnu/usr.bin/cvs/cvs/../../../..
> /contrib/cvs/src -I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/lib -
I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/diff -DHA
> VE_KERBEROS -DHAVE_KRB_GET_ERR_TEXT -DENCRYPTION   -I/usr/obj/usr/src/i386/us
r/include  -o cvs add.o admin.o buffer.o checkin.o checkout.o c
> lassify.o client.o commit.o create_adm.o cvsrc.o diff.o edit.o entries.o erro
r.o expand_path.o fileattr.o filesubr.o find_names.o hardlink.o
>  hash.o history.o ignore.o import.o lock.o log.o login.o logmsg.o main.o mkmo
dules.o modules.o myndbm.o no_diff.o parseinfo.o patch.o prepen
>  d_args.o rcs.o rcscmds.o recurse.o release.o remove.o repos.o root.o rtag.o 
run.o scramble.o server.o status.o subr.o tag.o update.o vers_ts
>  .o version.o watch.o wrapper.o zlib.o  /usr/obj/usr/src/gnu/usr.bin/cvs/cvs/
../lib/libcvs.a /usr/obj/usr/src/gnu/usr.bin/cvs/cvs/../libdiff/
>  libdiff.a -lgnuregex -lmd -lcrypt -lz -lkrb -lcrypto -lcom_err
>  /usr/lib/libRSAglue.so.1: undefined reference to `R_RandomUpdate'
>  /usr/lib/libRSAglue.so.1: undefined reference to `R_GetRandomBytesNeeded'
>  /usr/lib/libRSAglue.so.1: undefined reference to `RSAPrivateDecrypt'
>  /usr/lib/libRSAglue.so.1: undefined reference to `RSAPublicEncrypt'
>  /usr/lib/libRSAglue.so.1: undefined reference to `R_RandomFinal'
>  /usr/lib/libRSAglue.so.1: undefined reference to `RSAPrivateEncrypt'
>  /usr/lib/libRSAglue.so.1: undefined reference to `R_RandomInit'
>  /usr/lib/libRSAglue.so.1: undefined reference to `RSAPublicDecrypt'
>  *** Error code 1
> 
>  Stop in /usr/src/gnu/usr.bin/cvs/cvs.
>  *** Error code 1
> 
>  Stop in /usr/src/gnu/usr.bin/cvs.
>  *** Error code 1
> 
>  Stop in /usr/src/gnu/usr.bin.
>  *** Error code 1
> 
>  Stop in /usr/src/gnu.
>  *** Error code 1
> 
>  Stop in /usr/src.
>  *** Error code 1
> 
>  Stop in /usr/src.
>  *** Error code 1
> 
>  Stop in /usr/src.
> 
> 
> #;^)
> -- 
> f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.

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




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



buildworld failure in cvs ...

2000-03-09 Thread Bush Doctor

Is anyone else seeing this.  cvsupped from 12:00 noon EST

...

cc -O -pipe -I/usr/src/gnu/usr.bin/cvs/cvs -I/usr/src/gnu/usr.bin/cvs/cvs/../lib 
-DHAVE_CONFIG_H  -I/usr/src/gnu/usr.bin/cvs/cvs/../../../..
/contrib/cvs/src -I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/lib 
-I/usr/src/gnu/usr.bin/cvs/cvs/../../../../contrib/cvs/diff -DHA
VE_KERBEROS -DHAVE_KRB_GET_ERR_TEXT -DENCRYPTION   -I/usr/obj/usr/src/i386/usr/include 
 -o cvs add.o admin.o buffer.o checkin.o checkout.o c
lassify.o client.o commit.o create_adm.o cvsrc.o diff.o edit.o entries.o error.o 
expand_path.o fileattr.o filesubr.o find_names.o hardlink.o
 hash.o history.o ignore.o import.o lock.o log.o login.o logmsg.o main.o mkmodules.o 
modules.o myndbm.o no_diff.o parseinfo.o patch.o prepen
 d_args.o rcs.o rcscmds.o recurse.o release.o remove.o repos.o root.o rtag.o run.o 
scramble.o server.o status.o subr.o tag.o update.o vers_ts
 .o version.o watch.o wrapper.o zlib.o  
/usr/obj/usr/src/gnu/usr.bin/cvs/cvs/../lib/libcvs.a 
/usr/obj/usr/src/gnu/usr.bin/cvs/cvs/../libdiff/
 libdiff.a -lgnuregex -lmd -lcrypt -lz -lkrb -lcrypto -lcom_err
 /usr/lib/libRSAglue.so.1: undefined reference to `R_RandomUpdate'
 /usr/lib/libRSAglue.so.1: undefined reference to `R_GetRandomBytesNeeded'
 /usr/lib/libRSAglue.so.1: undefined reference to `RSAPrivateDecrypt'
 /usr/lib/libRSAglue.so.1: undefined reference to `RSAPublicEncrypt'
 /usr/lib/libRSAglue.so.1: undefined reference to `R_RandomFinal'
 /usr/lib/libRSAglue.so.1: undefined reference to `RSAPrivateEncrypt'
 /usr/lib/libRSAglue.so.1: undefined reference to `R_RandomInit'
 /usr/lib/libRSAglue.so.1: undefined reference to `RSAPublicDecrypt'
 *** Error code 1

 Stop in /usr/src/gnu/usr.bin/cvs/cvs.
 *** Error code 1

 Stop in /usr/src/gnu/usr.bin/cvs.
 *** Error code 1

 Stop in /usr/src/gnu/usr.bin.
 *** Error code 1

 Stop in /usr/src/gnu.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.


#;^)
-- 
f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.

bush doctor
<[EMAIL PROTECTED]>


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