make buildworld fails / neqn / grog /groff

2002-04-23 Thread Tomi Vainio - Sun Finland -

I haven't been able to build new world since Apr14 or so.  I have
cvsupped sources multiple times and buildworld always fails on neqn.
If I remove this next it fails on grog and so on.  Any good ideas
what's wrong?

  Tomppa

c++  -O -pipe 
-I/f/local/sup/5.0/gnu/usr.bin/groff/src/prproc/eqn/../../../../../../contrib/groff/src/preproc/eqn
-I. -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DIRENT_H=1 -DHAVE_LIMITS_H=1 
-DHAVE_STRING_H=1 -DHAVE_STRINGS_H=1 -DHAVE_MATH_H=1
-DRET_TYPE_SRAND_IS_VOID=1 -DHAVE_SYS_NERR=1 -DHAVE_SYS_ERRLIST=1 -DHAVE_CC_LIMITS_H=1 
-DRETSIGTYPE=void -DHAVE_STRUCT_EXCEPTION=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 
-DHAVE_FMOD=1 -DHAVE_STRTOL=1 -DHAVE_GETCWD=1 -DHAVE_STRERROR=1 -DHAVE_PUTENV=1 
-DHAVE_RENAME=1 -DHAVE_MKSTEMP=1 -DHAVE_STRCASECMP=1 -DHAVE_STRNCASECMP=1 
-DHAVE_STRSEP=1 -DHAVE_STRDUP=1 -DSYS_SIGLIST_DECLARED=1 
-I/f/local/sup/5.0/gnu/usr.bin/groff/src/preproc/eqn/../../../../../../contrib/groff/src/include
-I/f/local/sup/5.0/gnu/usr.bin/groff/src/preproc/eqn/../../../src/include   
-D__FBSDID=__RCSID -fno-rtti -fno-exceptions  -static -o eqn eqn.o main.o lex.o box.o 
limit.o list.o over.o text.o script.o mark.o other.o delim.o sqrt.o pile.o special.o 
/f/local/obj/f/local/sup/5.0/i386/f/local/sup/5.0/gnu/usr.bin/groff/src/preproc/eqn/../../../src/libs/libgroff/libgroff.a
make: don't know how to make neqn. Stop
*** Error code 2

Stop in /f/local/sup/5.0/gnu/usr.bin/groff/src/preproc.
*** Error code 1

Stop in /f/local/sup/5.0/gnu/usr.bin/groff/src.
*** Error code 1

Stop in /f/local/sup/5.0/gnu/usr.bin/groff.
*** Error code 1

Stop in /f/local/sup/5.0.
*** Error code 1

Stop in /f/local/sup/5.0.
*** Error code 1

Stop in /f/local/sup/5.0.

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



Re: make buildworld fails / neqn / grog /groff

2002-04-23 Thread Steve Kargl

On Wed, Apr 24, 2002 at 02:19:29AM +0300, Tomi Vainio - Sun Finland - wrote:
 I haven't been able to build new world since Apr14 or so.  I have
 cvsupped sources multiple times and buildworld always fails on neqn.
 If I remove this next it fails on grog and so on.  Any good ideas
 what's wrong?
 

cd /usr/src/usr.bin/make
make clean  make depend  make  make install
make clean  make cleandepend
cd /usr/src
make buildworld

-- 
Steve

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



Re: make buildworld fails / neqn / grog /groff

2002-04-23 Thread Tomi Vainio - Sun Finland -

Steve Kargl writes:
  On Wed, Apr 24, 2002 at 02:19:29AM +0300, Tomi Vainio - Sun Finland - wrote:
   I haven't been able to build new world since Apr14 or so.  I have
   cvsupped sources multiple times and buildworld always fails on neqn.
   If I remove this next it fails on grog and so on.  Any good ideas
   what's wrong?
   
  
  cd /usr/src/usr.bin/make
  make clean  make depend  make  make install
  make clean  make cleandepend
  cd /usr/src
  make buildworld
  
That was it, thanks!

There is nothing about this on UPDATING?  What I have missed?

  Tomppa

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



Re: make buildworld fails / neqn / grog /groff

2002-04-23 Thread Steve Kargl

On Wed, Apr 24, 2002 at 02:37:45AM +0300, Tomi Vainio - Sun Finland - wrote:
 Steve Kargl writes:
   On Wed, Apr 24, 2002 at 02:19:29AM +0300, Tomi Vainio - Sun Finland - wrote:
I haven't been able to build new world since Apr14 or so.  I have
cvsupped sources multiple times and buildworld always fails on neqn.
If I remove this next it fails on grog and so on.  Any good ideas
what's wrong?

   
   cd /usr/src/usr.bin/make
   make clean  make depend  make  make install
   make clean  make cleandepend
   cd /usr/src
   make buildworld
   
 That was it, thanks!
 
 There is nothing about this on UPDATING?  What I have missed?
 

src/usr.bin/make/str.c got broken then fixed.

Revision 1.19  Sat Apr 13 19:36:47 2002 UTC (10 days, 4 hours ago) by obrien 
Branch: MAIN 

Revision 1.17 seems to break a subsequent buildworld (i.e. with the new
make installed) in gnu/usr.bin/groff/src/preproc/eqn (which, being a
build tool itself, is built with the original make during buildworld).

The problem seems to be that in str_concat(), the string is not
terminated when the length of the second string is 0.
This apparently can happen during null suffix rule processing.


Revision 1.17 Sat Apr 13 10:13:39 2002 UTC (10 days, 13 hours ago) by obrien 
Branch: MAIN 

Make str_concat handle NULL arguments properly (a-la how ODE-2.3.6 make does).

-- 
Steve

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