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

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

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

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

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

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".

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

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

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

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

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

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

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

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

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

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,

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

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

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