Re: [OE-core] [PATCH v2] slang: change char type to signed char in macros

2012-07-31 Thread Richard Purdie
On Tue, 2012-07-31 at 15:30 +0800, rongqing...@windriver.com wrote: > From: Roy.Li > > [YOCTO 2726] > > The patch of converting char type to signed char is only applied to arm, > in fact it should be applied to powerpc too since powerpc has the same > assumption for char type. To x86 and mips, t

[OE-core] [PATCH v2] slang: change char type to signed char in macros

2012-07-31 Thread rongqing.li
From: Roy.Li [YOCTO 2726] The patch of converting char type to signed char is only applied to arm, in fact it should be applied to powerpc too since powerpc has the same assumption for char type. To x86 and mips, this patch has not impact. Signed-off-by: Roy.Li --- meta/recipes-extended/slang

Re: [OE-core] [PATCH v2] slang: change char type to signed char in macros

2012-07-17 Thread Rongqing Li
Sorry, Please ignore this patch. I should send a update to add signed-off-by and Upstream-Status, not resend whole. -Roy On 2012年07月18日 10:02, rongqing...@windriver.com wrote: From: Roy.Li Fix [YOCTO 2726] C language has 3 distinct char types: char unsigned char

[OE-core] [PATCH v2] slang: change char type to signed char in macros

2012-07-17 Thread rongqing.li
From: Roy.Li Fix [YOCTO 2726] C language has 3 distinct char types: char unsigned char signed char A char has the same range of values as signed char on X86, but same as unsigned char on ARM which made Slang's typecast() and array_sort() unable to work for char value o