Re: cvsup tag for 4.8-STABLE?

2003-07-10 Thread Christoph P. Kukulies
In-Reply-Tor [EMAIL PROTECTED]

On Sat, Jun 28, 2003 at 10:41:38AM -0400, Lowell Gilbert wrote:
 Christoph Kukulies [EMAIL PROTECTED] writes:
 
  I wanted to cvsup src-all from 4.8-STABLE and tried with
  *default release=cvs  tag=RELENG_4
  
  Is this correct?
 
 Either that or RELENG_4_8, where the latter only gets absolutely
 critical fixes.
 
  The cvsup went fine but building the src tree resulted in
  errors.
  
  First I got some from some multiply defined typedef (first make world).
 
 You mean make buildworld?  If not, please try the recommended
 procedure before asking for help.
 
  Then I did a 'make includes' FWIW, and the subsequent make world then gave
  a different error:
  
  In file included from 
  /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/terminal.c:35:
  /usr/include/termcap.h:42: ncurses_dll.h: No such file or directory
  mkdep: compile failed
  *** Error code 1
  

The actual problem has not gone away:

I removed the whole /usr/src tree and re-cvssupped.
make world or buildworld fails again at this point:
/usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/terminal.c

Either it doesn't find ncurses_dll.h or, if I remove
/usr/include/termcap.h (in case it prefers this over some other)
it insists of finding /usr/include/termcap.h (which is a common
file, I believe). Seems it is being generated by some mechanism
since I can't locate the file in the src tree.


--
Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cvsup tag for 4.8-STABLE?

2003-07-10 Thread Rob Lahaye

Christoph P. Kukulies wrote:
I wanted to cvsup src-all from 4.8-STABLE and tried with
*default release=cvs  tag=RELENG_4


Either that or RELENG_4_8, where the latter only gets absolutely
critical fixes.

What am I cvsup-ing, when I use:

   *default release=cvs tag=.

The manual says about this
  .  The main branch (the `current' release). This is the default,
  if only the date keyword is given.

But what is 'current'? Is that 5.2 at the moment? Or 4.8-current for me?
(my FreeBSD version is 4.8).

Thanks,
Rob.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cvsup tag for 4.8-STABLE?

2003-07-10 Thread Jud
On Thu, 10 Jul 2003 16:58:00 +0900, Rob Lahaye 
[EMAIL PROTECTED] wrote:

Christoph P. Kukulies wrote:
I wanted to cvsup src-all from 4.8-STABLE and tried with
*default release=cvs  tag=RELENG_4
Either that or RELENG_4_8, where the latter only gets absolutely
critical fixes.
What am I cvsup-ing, when I use:

*default release=cvs tag=.

The manual says about this
.  The main branch (the `current' release). This is the default,
if only the date keyword is given.
But what is 'current'? Is that 5.2 at the moment? Or 4.8-current for me?
(my FreeBSD version is 4.8).
Thanks,
Rob.
You want to get rid of /usr/obj after a 'make world' fails - don't know if 
you were doing that or not.

-CURRENT is the same for everyone.  It's 5.x at the moment (don't think 
we've reached 5.2 yet, though I haven't cvsupped in a week or two).  There 
is also only one -STABLE branch, 4.x at the moment, tag=RELENG_4.

Jud
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cvsup tag for 4.8-STABLE?

2003-06-29 Thread Matthew Seaman
On Sun, Jun 29, 2003 at 12:57:15AM +0200, Frank Reppin wrote:
 On Sat, 28 Jun 2003, Gregory Norman wrote:

  On the same note, will *default release=cvs tag=RELENG_4_8 work to
  update from 4.4 Release to 4.8 Stable?

 yup, it will do the job - involving the required commands
 ofcourse (buildworld, buildkernel, installkernel and so on).
 Read through /usr/src/UPDATING if any special requirements
 have to be satisfied before)

Errr... tag=RELENG_4_8 will get you 4.8-RELEASE.  If you want
4.8-STABLE, use tag=RELENG_4

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgp0.pgp
Description: PGP signature


Re: cvsup tag for 4.8-STABLE?

2003-06-29 Thread Lowell Gilbert
Matthew Seaman [EMAIL PROTECTED] writes:

 On Sun, Jun 29, 2003 at 12:57:15AM +0200, Frank Reppin wrote:
  On Sat, 28 Jun 2003, Gregory Norman wrote:
 
   On the same note, will *default release=cvs tag=RELENG_4_8 work to
   update from 4.4 Release to 4.8 Stable?
 
  yup, it will do the job - involving the required commands
  ofcourse (buildworld, buildkernel, installkernel and so on).
  Read through /usr/src/UPDATING if any special requirements
  have to be satisfied before)
 
 Errr... tag=RELENG_4_8 will get you 4.8-RELEASE.  If you want
 4.8-STABLE, use tag=RELENG_4

Not quite.

To quote the handbook:

   RELENG_4_8

   The release branch for FreeBSD-4.8, used only for security
   advisories and other seriously critical fixes.

and 

   RELENG_4_8_0_RELEASE

   FreeBSD 4.8

[i.e., the latter is the actual release, and the former is the
release branch, which continues to get updated -- but only for
essential changes -- after the actual release.]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cvsup tag for 4.8-STABLE?

2003-06-28 Thread Lowell Gilbert
Christoph Kukulies [EMAIL PROTECTED] writes:

 I wanted to cvsup src-all from 4.8-STABLE and tried with
 *default release=cvs  tag=RELENG_4
 
 Is this correct?

Either that or RELENG_4_8, where the latter only gets absolutely
critical fixes.

 The cvsup went fine but building the src tree resulted in
 errors.
 
 First I got some from some multiply defined typedef (first make world).

You mean make buildworld?  If not, please try the recommended
procedure before asking for help.

 Then I did a 'make includes' FWIW, and the subsequent make world then gave
 a different error:
 
 In file included from 
 /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/terminal.c:35:
 /usr/include/termcap.h:42: ncurses_dll.h: No such file or directory
 mkdep: compile failed
 *** Error code 1
 
 
 I could have a tainted installation with traces from 5.0R but I thought
 that a cvsup would wipe them out in /usr/src and /usr/include as well.

In the former, only if you had adopted the source tree first (see
the cvsup faq).  In the latter, no, not necessarily.

Moving from 5.x to 4.x through a source upgrade is going to be a bit
tricky, even for experts.  Cleaning out the stuff that no longer
applies is definitely part of the problem.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cvsup tag for 4.8-STABLE?

2003-06-28 Thread Gregory Norman
Hello,

On the same note, will *default release=cvs tag=RELENG_4_8 work to 
update from 4.4 Release to 4.8 Stable?

Gregory Norman

On Saturday, June 28, 2003, at 10:41 AM, Lowell Gilbert wrote:

Christoph Kukulies [EMAIL PROTECTED] writes:

I wanted to cvsup src-all from 4.8-STABLE and tried with
*default release=cvs  tag=RELENG_4
Is this correct?
Either that or RELENG_4_8, where the latter only gets absolutely
critical fixes.
The cvsup went fine but building the src tree resulted in
errors.
First I got some from some multiply defined typedef (first make world).
You mean make buildworld?  If not, please try the recommended
procedure before asking for help.
Then I did a 'make includes' FWIW, and the subsequent make world then 
gave
a different error:

In file included from 
/usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/terminal.
c:35:
/usr/include/termcap.h:42: ncurses_dll.h: No such file or directory
mkdep: compile failed
*** Error code 1

I could have a tainted installation with traces from 5.0R but I thought
that a cvsup would wipe them out in /usr/src and /usr/include as well.
In the former, only if you had adopted the source tree first (see
the cvsup faq).  In the latter, no, not necessarily.
Moving from 5.x to 4.x through a source upgrade is going to be a bit
tricky, even for experts.  Cleaning out the stuff that no longer
applies is definitely part of the problem.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cvsup tag for 4.8-STABLE?

2003-06-28 Thread Frank Reppin
On Sat, 28 Jun 2003, Gregory Norman wrote:

 Hello,

 On the same note, will *default release=cvs tag=RELENG_4_8 work to
 update from 4.4 Release to 4.8 Stable?


yup, it will do the job - involving the required commands
ofcourse (buildworld, buildkernel, installkernel and so on).
Read through /usr/src/UPDATING if any special requirements
have to be satisfied before)


 Gregory Norman


Best regards,

Frank Reppin

39112 Magdeburg, Germany


-- 

43rd Law of Computing:
Anything that can go wr
fortune: Segmentation violation -- Core dumped

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


cvsup tag for 4.8-STABLE?

2003-06-27 Thread Christoph Kukulies

I wanted to cvsup src-all from 4.8-STABLE and tried with
*default release=cvs  tag=RELENG_4

Is this correct?

The cvsup went fine but building the src tree resulted in
errors.

First I got some from some multiply defined typedef (first make world).
Then I did a 'make includes' FWIW, and the subsequent make world then gave
a different error:

In file included from 
/usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/terminal.c:35:
/usr/include/termcap.h:42: ncurses_dll.h: No such file or directory
mkdep: compile failed
*** Error code 1


I could have a tainted installation with traces from 5.0R but I thought
that a cvsup would wipe them out in /usr/src and /usr/include as well.

--
Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]