Re: small compile nit: extern vs static

2006-06-15 Thread James Youngman
On 6/15/06, Ralf Wildenhues <[EMAIL PROTECTED]> wrote: Yes, I'm speaking of the CVS HEAD sources, sorry if that wasn't clear. There is an extern declaration in find/defs.h, in the tree obtainable by cvs -d :pserver:[EMAIL PROTECTED]:/cvsroot/findutils \ co findutils Sorry, you're right.

Re: small compile nit: extern vs static

2006-06-14 Thread Ralf Wildenhues
Hello James, * James Youngman wrote on Wed, Jun 14, 2006 at 11:44:40PM CEST: > On 5/30/06, Ralf Wildenhues <[EMAIL PROTECTED]> wrote: > >Recent GCC will barf over an extern variable declaration followed by a > >static one. This patch fixes building the CVS version of findutils. > >* find

Re: small compile nit: extern vs static

2006-06-14 Thread James Youngman
On 5/30/06, Ralf Wildenhues <[EMAIL PROTECTED]> wrote: Recent GCC will barf over an extern variable declaration followed by a static one. This patch fixes building the CVS version of findutils. Cheers, Ralf * find/defs.h (last_pred): Do not declare, this is static now. In 4.2.x, it's

small compile nit: extern vs static

2006-05-30 Thread Ralf Wildenhues
Recent GCC will barf over an extern variable declaration followed by a static one. This patch fixes building the CVS version of findutils. Cheers, Ralf * find/defs.h (last_pred): Do not declare, this is static now. Index: find/defs.h =