Re: [PATCH weston] shared: include stdint.h for int32_t

2016-07-18 Thread Jussi Kukkonen
On 18 July 2016 at 12:09, Eric Engestrom wrote: > On Mon, Jul 18, 2016 at 09:53:20AM +0100, Eric Engestrom wrote: > > On Sat, Jul 16, 2016 at 11:32:49PM +0300, Jussi Kukkonen wrote: > > > This fixes build on musl. > > > > > > Signed-off-by: Jussi Kukkonen > > > > Reviewed-by: Eric Engestrom > >

Re: [PATCH weston] shared: include stdint.h for int32_t

2016-07-18 Thread Eric Engestrom
On Mon, Jul 18, 2016 at 09:53:20AM +0100, Eric Engestrom wrote: > On Sat, Jul 16, 2016 at 11:32:49PM +0300, Jussi Kukkonen wrote: > > This fixes build on musl. > > > > Signed-off-by: Jussi Kukkonen > > Reviewed-by: Eric Engestrom Actually, a quick grep tells me 92 other files could use the sam

Re: [PATCH weston] shared: include stdint.h for int32_t

2016-07-18 Thread Eric Engestrom
On Sat, Jul 16, 2016 at 11:32:49PM +0300, Jussi Kukkonen wrote: > This fixes build on musl. > > Signed-off-by: Jussi Kukkonen Reviewed-by: Eric Engestrom > --- > shared/xalloc.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/shared/xalloc.h b/shared/xalloc.h > index 85fccb4..484de2

[PATCH weston] shared: include stdint.h for int32_t

2016-07-16 Thread Jussi Kukkonen
This fixes build on musl. Signed-off-by: Jussi Kukkonen --- shared/xalloc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/xalloc.h b/shared/xalloc.h index 85fccb4..484de2d 100644 --- a/shared/xalloc.h +++ b/shared/xalloc.h @@ -30,6 +30,7 @@ extern "C" { #endif +#include #inclu