Busybox 1.3.0 is available

Aurelien Jacobs aurel at gnuage.org
Fri Dec 15 20:35:02 UTC 2006


On Fri, 15 Dec 2006 00:17:24 +0100
Denis Vlasenko <vda.linux at googlemail.com> wrote:

> On Thursday 14 December 2006 19:28, Aurelien Jacobs wrote:
> > On Thu, 14 Dec 2006 01:59:05 +0100
> > Denis Vlasenko <vda.linux at googlemail.com> wrote:
> > 
> > > Hi people,
> > > 
> > > Tarball is already in http://busybox.net/downloads/,
> > > busybox.net webpage will be updated soon.
> > 
> > defconfig don't compile here on amd64.
> > There are 2 problems.
> > 
> > The first attached patch fixes this:
> > 
> >   CC      libbb/bb_pwd.o
> >   CC      libbb/bb_strtonum.o
> > libbb/bb_strtonum.c:102: error: conflicting types for 'bb_strtou'
> > include/xatonum.h:140: error: previous declaration of 'bb_strtou' was here
> > libbb/bb_strtonum.c:114: error: conflicting types for 'bb_strtoi'
> > include/xatonum.h:141: error: previous declaration of 'bb_strtoi' was here
> > make[1]: *** [libbb/bb_strtonum.o] Error 1
> > make: *** [libbb] Error 2
> 
> Error in is include/xatonum.h:
> 
> * unsigned long bb_strtol() isn't unsigned
> * unsigned long bb_strtou() isn't long
> * unsigned long bb_strtoi() is neither unsigned nor long (it's int)
> 
> See attached.
> 
>  #else
> -unsigned long bb_strtou(const char *arg, char **endp, int base);
> +unsigned bb_strtou(const char *arg, char **endp, int base);
>  long bb_strtoi(const char *arg, char **endp, int base);
   ^^^^
This one should be "int" too I guess.
(I will test your patch when I'm back in front of my amd64 box)

Aurel



More information about the busybox mailing list