On Do, 2014-09-11 at 17:59 +0300, Michael S. Tsirkin wrote: > I observe two errors with latest master: > > ui/qemu-pixman.c: In function ‘qemu_pixelformat_from_pixman’: > ui/qemu-pixman.c:42: error: ‘PIXMAN_TYPE_RGBA’ undeclared (first use in this > function) > ui/qemu-pixman.c:42: error: (Each undeclared identifier is reported only once > ui/qemu-pixman.c:42: error: for each function it appears in.) > make: *** [ui/qemu-pixman.o] Error 1
Guess we need to raise the minimum pixman version in configure ... pixman-0.21.8 is the oldest release which has PIXMAN_TYPE_RGBA. We don't check for a minimum version. RHEL-6 is probably older. Try 'configure --without-system-pixman' as workaround (after checking out the pixman submodule). I'll cook up a patch, Gerd