Re: large integer truncation in regex module

2012-03-25 Thread Gianluigi Tiesi
On 26/03/2012 7.33, Jim Meyering wrote: Gianluigi Tiesi wrote: On 25/03/2012 6.58, Paul Eggert wrote: On 03/24/2012 09:28 PM, Gianluigi Tiesi wrote: While compiling regex module one android I've discovered a problem that on other 32bit compiler is only a warning ... it's correct, b

Re: large integer truncation in regex module

2012-03-25 Thread Gianluigi Tiesi
On 25/03/2012 6.58, Paul Eggert wrote: On 03/24/2012 09:28 PM, Gianluigi Tiesi wrote: While compiling regex module one android I've discovered a problem that on other 32bit compiler is only a warning ... it's correct, but I think an ifdef may be used instead since BITSET_WORD_BITS i

Re: android bionc has dummy lconv

2012-03-24 Thread Gianluigi Tiesi
On 25/03/2012 6.32, Gianluigi Tiesi wrote: Android bionic c library has a dummy definition of struct lconv, so the detection code thinks the struct it's at least defined. Instead in locale.h: sorry (sent the first email by mistake) #if 1 /* MISSING FROM BIONIC - DEFINED TO MAKE libstdc

android bionc has dummy lconv

2012-03-24 Thread Gianluigi Tiesi
Android bionic c library has a dummy definition of struct lconv, so the detection code thinks the struct it's at least defined. Instead in locale.h: -- Gianluigi Tiesi EDP Project Leader Netfarm S.r.l. - http://www.netfarm.it/ Free Software: http://oss.netfarm.it/ Q: Because it reverse

large integer truncation in regex module

2012-03-24 Thread Gianluigi Tiesi
ed long but since the code is surrounded by an if if (BITSET_WORD_BITS == 64) it's correct, but I think an ifdef may be used instead since BITSET_WORD_BITS is a define, it should be ok Regards -- Gianluigi Tiesi EDP Project Leader Netfarm S.r.l. - http://www.netfarm.it/ Fre

vasnprintf does not preserve anymore errno

2010-10-14 Thread Gianluigi Tiesi
some time ago a change was added to vasnprintf, right now the line is: 4958 in vasnprintf.c errno = 0 but it's never saved before, so I lose errno Regards -- Gianluigi Tiesi EDP Project Leader Netfarm S.r.l. - http://www.netfarm.it/ Free Software: http://oss.netfarm.it/ Q: Becau