On 02/18/2014 06:51 AM, Manfred Kogler wrote: > (4) error: array declarations of len 0 are not allowed -> replaced with > pointer to array-elem > see file cairo-image-compositor.c: > uint8_t _buf[0]; > -> > uint8_t *_buf; That certainly will not work. Using [1] is common but requires fixing all the uses of sizeof().