From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39436) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XS6Ba-00089m-0F for qemu-devel@nongnu.org; Thu, 11 Sep 2014 11:21:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XS6BR-0006Be-6n for qemu-devel@nongnu.org; Thu, 11 Sep 2014 11:21:25 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45523) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XS6BQ-0006BG-WA for qemu-devel@nongnu.org; Thu, 11 Sep 2014 11:21:17 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s8BFLGDn024182 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Thu, 11 Sep 2014 11:21:16 -0400 Message-ID: <1410448873.8604.10.camel@nilsson.home.kraxel.org> From: Gerd Hoffmann Date: Thu, 11 Sep 2014 17:21:13 +0200 In-Reply-To: <20140911145903.GA27021@redhat.com> References: <20140911145903.GA27021@redhat.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] ui causes latest master build failure on rhel6 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: qemu-devel@nongnu.org On Do, 2014-09-11 at 17:59 +0300, Michael S. Tsirkin wrote: > I observe two errors with latest master: >=20 > ui/qemu-pixman.c: In function =E2=80=98qemu_pixelformat_from_pixman=E2=80= =99: > ui/qemu-pixman.c:42: error: =E2=80=98PIXMAN_TYPE_RGBA=E2=80=99 undeclar= ed (first use in this function) > ui/qemu-pixman.c:42: error: (Each undeclared identifier is reported onl= y 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