-current buildworld breakage

2002-10-26 Thread Yamada Ken Takeshi
  I have an error for a week and cannot make buildworld.
Where can I find panic other than real panic?

=== sbin/gbde
 :  :  :  :
cc -O -pipe -mcpu=pentiumpro -I/usr/src/sbin/gbde/../../sys   -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized  -c template.c
cc1: warnings being treated as errors
/usr/src/sys/crypto/rijndael/rijndael-api-fst.c: In function `rijndael_padEncrypt':
/usr/src/sys/crypto/rijndael/rijndael-api-fst.c:222: warning: implicit declaration of 
function `panic'
*** Error code 1



msg45368/pgp0.pgp
Description: PGP signature


Re: -current buildworld breakage

2002-10-26 Thread walt
Yamada Ken Takeshi wrote:


  I have an error for a week and cannot make buildworld.
Where can I find panic other than real panic?

=== sbin/gbde
 :  :  :  :
cc -O -pipe -mcpu=pentiumpro -I/usr/src/sbin/gbde/../../sys   -Werror -Wall -Wno-format-y2k -Wno-uninitialized  -c template.c
cc1: warnings being treated as errors
/usr/src/sys/crypto/rijndael/rijndael-api-fst.c: In function `rijndael_padEncrypt':
/usr/src/sys/crypto/rijndael/rijndael-api-fst.c:222: warning: implicit declaration of function `panic'
*** Error code 1


This is taken from my rijndael-api-fst.c:

for (i = numBlocks; i  0; i--) {
	rijndaelEncrypt(input, outBuffer, key-keySched, key-ROUNDS);
	input += 16;  /* this is line 222 */
	outBuffer += 1;
}

I can't see how line 222 includes an implicit declaration of 'panic'.

Is your file different?


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



Re: -current buildworld breakage

2002-10-26 Thread Yamada Ken Takeshi
  Thank you for your prompt reply.

From: walt [EMAIL PROTECTED]
  : ::
 
 I can't see how line 222 includes an implicit declaration of 'panic'.
 
 Is your file different?
 
  I do not know why compiler says line 222, but it is 
below 222 and my latest source says;

# cat  rijndael/rijndael-api-fst.c

::::
switch (cipher-mode) {
case MODE_ECB:
for (i = numBlocks; i  0; i--) {
rijndaelEncrypt(input, outBuffer, key-keySched, key-RO
UNDS);
input += 16;
outBuffer += 16;
}
padLen = 16 - (inputOctets - 16*numBlocks);
if (padLen  0  padLen = 16)
panic(rijndael_padEncrypt(ECB));
^^
bcopy(input, block, 16 - padLen);
for (cp = block + 16 - padLen; cp  block + 16; cp++)
*cp = padLen;
rijndaelEncrypt(block, outBuffer, key-keySched, key-ROUNDS);
break;



msg45377/pgp0.pgp
Description: PGP signature


Re: -current buildworld breakage

2002-10-26 Thread Craig Rodrigues
On Sat, Oct 26, 2002 at 10:13:02PM +0900, Yamada Ken Takeshi wrote:
 # cat  rijndael/rijndael-api-fst.c
 
 ::::
 switch (cipher-mode) {
 case MODE_ECB:
 for (i = numBlocks; i  0; i--) {
 rijndaelEncrypt(input, outBuffer, key-keySched, key-RO
 UNDS);
 input += 16;
 outBuffer += 16;
 }
 padLen = 16 - (inputOctets - 16*numBlocks);
 if (padLen  0  padLen = 16)
 panic(rijndael_padEncrypt(ECB));
 ^^
 bcopy(input, block, 16 - padLen);
 for (cp = block + 16 - padLen; cp  block + 16; cp++)
 *cp = padLen;
 rijndaelEncrypt(block, outBuffer, key-keySched, key-ROUNDS);
 break;


You don't have the latest sources.  Did you use cvsup it
update your sources?  If you used cvsup, then you
need to add src-sys-crypto to your cvsup file.


-- 
Craig Rodrigues
http://www.gis.net/~craigr
[EMAIL PROTECTED]

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



Re: -current buildworld breakage

2002-10-26 Thread Yamada Ken Takeshi
  Thank you!

From: Craig Rodrigues [EMAIL PROTECTED]
 You don't have the latest sources.  Did you use cvsup it
 update your sources?  If you used cvsup, then you
 need to add src-sys-crypto to your cvsup file.

  It was my cvsup prroblem.  Fixed!!



msg45379/pgp0.pgp
Description: PGP signature


5-current buildworld breakage?

2002-04-17 Thread Makoto Matsushita


Using 5-current code as of Apr/17/2002 15:00:00 GMT:

# pwd
/usr/src/gnu/usr.bin/groff/src/preproc/eqn
# ident Makefile
Makefile:
 $FreeBSD: src/gnu/usr.bin/groff/src/preproc/eqn/Makefile,v 1.3
 2002/04/11 11:06:03 ru Exp $
# make -n neqn
make: don't know how to make neqn. Stop
#

Anybody have seen this? or it's my local problem?

-- -
Makoto `MAR' Matsushita

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



Re: 5-current buildworld breakage?

2002-04-17 Thread David W. Chapman Jr.

On Thu, Apr 18, 2002 at 10:29:23AM +0900, Makoto Matsushita wrote:
 
 Using 5-current code as of Apr/17/2002 15:00:00 GMT:
 
 # pwd
 /usr/src/gnu/usr.bin/groff/src/preproc/eqn
 # ident Makefile
 Makefile:
  $FreeBSD: src/gnu/usr.bin/groff/src/preproc/eqn/Makefile,v 1.3
  2002/04/11 11:06:03 ru Exp $
 # make -n neqn
 make: don't know how to make neqn. Stop
 #
 
 Anybody have seen this? or it's my local problem?

Yeah, your make is broken, try rebuilding make by itself and install 
it then try the buildworld again

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

-- 
David W. Chapman Jr.
[EMAIL PROTECTED]   Raintree Network Services, Inc. www.inethouston.net
[EMAIL PROTECTED]   FreeBSD Committer www.FreeBSD.org

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



Re: 5-current buildworld breakage?

2002-04-17 Thread Makoto Matsushita


dwcjr Yeah, your make is broken, try rebuilding make by itself and
dwcjr install it then try the buildworld again

Ah, sorry.  I've missed what src/usr.bin/make/str.c rev 1.19 said.  I
just rebuilt make(1) and confirmed that it works again.  Thanks.

-- -
Makoto `MAR' Matsushita

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



Re: -current buildworld breakage

2000-05-18 Thread Shigeyuki Fukushima


  Is my system environment broken?
 I think so.

Thank you.
/usr/src tree on my system seemd to be broken.
I removed entire src tree and re-cvsuped it, 
then I got no compile error at that point.

Thanks.

--- shige [EMAIL PROTECTED]


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



-current buildworld breakage

2000-05-17 Thread Shigeyuki Fukushima

My system is 4.0-CURRENT at Jan 31.
I try to upgrade it to -current (5-current),
but I get the following breakage.

Is my system environment broken?

Thanks!

--
 stage 2: build tools
--

... snip ...

cc -O -pipe -I. -DFREEBSD_NATIVE -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr\" 
-I/usr/obj/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/config   -c 
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/print-rtl.c
cc -O -pipe -I. -DFREEBSD_NATIVE -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr\" 
-I/usr/obj/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc 
-I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/config   -c 
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:626: unterminated 
string or character constant
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:338: possible real 
start of unterminated constant
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c: In function 
`bitmap_clear_bit':
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:338: `bitmap_g' 
undeclared (first use in this function)
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:338: (Each 
undeclared identifier is reported only once
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:338: for each 
function it appears in.)
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:562: syntax error 
before string constant
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:562: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:566: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:572: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:578: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:578: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:578: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:586: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:586: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:586: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:586: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:595: stray '\' in 
program
/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:643: Unterminated 
string constant
*** Error code 1

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

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

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

Stop in /usr/src.


--- shige (Shigeyuki Fukushima) [EMAIL PROTECTED]


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



Re: -current buildworld breakage

2000-05-17 Thread David O'Brien

On Thu, May 18, 2000 at 12:51:42AM +0900, Shigeyuki Fukushima wrote:
 My system is 4.0-CURRENT at Jan 31.
 I try to upgrade it to -current (5-current),
 but I get the following breakage.
 
 Is my system environment broken?

I think so.
 
-- 
-- David  ([EMAIL PROTECTED])
  Disclaimer: Not speaking for FreeBSD, just expressing my own opinion.


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



-CURRENT buildworld breakage in openssl

2000-04-20 Thread Alexander N. Kabaev

make -j8 buildworld fails with these messages for a second day in a row:

cd /usr/src/secure/lib/libssl; make _EXTRADEPEND
=== librsausa
mkdir: openssl: File exists
*** Error code 1
cp /usr/src/secure/lib/librsausa/../libcrypto/opensslconf-i386.h \
openssl/opensslconf.h
1 error
*** Error code 2
1 error
*** Error code 2
1 error
*** Error code 2
1 error
*** Error code 2
1 error


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



Re: -CURRENT buildworld breakage in openssl

2000-04-20 Thread Hasan Diwan

rm -f /usr/include/openssl* and rebuild.

* Alexander N. Kabaev ([EMAIL PROTECTED]) [000420 09:59]:
 make -j8 buildworld fails with these messages for a second day in a row:
 
 cd /usr/src/secure/lib/libssl; make _EXTRADEPEND
 === librsausa
 mkdir: openssl: File exists
 *** Error code 1
 cp /usr/src/secure/lib/librsausa/../libcrypto/opensslconf-i386.h \
 openssl/opensslconf.h
 1 error
 *** Error code 2
 1 error
 *** Error code 2
 1 error
 *** Error code 2
 1 error
 *** Error code 2
 1 error
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with "unsubscribe freebsd-current" in the body of the message
 
 

-- 
Hasan Diwan [[EMAIL PROTECTED]] :)
Rensselaer Polytechnic Institute 
Computer Science Department
http://hdwork.dhs.org/~hdiwan 

 PGP signature


Re: -CURRENT buildworld breakage in openssl

2000-04-20 Thread Kris Kennaway

On Thu, 20 Apr 2000, Alexander N. Kabaev wrote:

 make -j8 buildworld fails with these messages for a second day in a row:
 
 cd /usr/src/secure/lib/libssl; make _EXTRADEPEND
 === librsausa
 mkdir: openssl: File exists

There is a dependency problem which is only biting some people here..for
example, I can do -j8 buildworlds fine. 'make cleandir; make cleandir'
followed by another make world should hopefully fix it.

David O'Brien is the person to talk to about this. I think what's
happening is that there's only a partially-populated openssl/ directory
existing locally (under /usr/obj) and the build is trying (or not) to
populate it again and failing.

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