From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45944) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ti2mO-0001eL-Kv for qemu-devel@nongnu.org; Mon, 10 Dec 2012 07:48:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ti2mF-0006lr-MM for qemu-devel@nongnu.org; Mon, 10 Dec 2012 07:48:16 -0500 Received: from mx1.redhat.com ([209.132.183.28]:11990) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ti2mF-0006lV-Eh for qemu-devel@nongnu.org; Mon, 10 Dec 2012 07:48:07 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qBACm6jx001740 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 10 Dec 2012 07:48:06 -0500 From: Gerd Hoffmann Date: Mon, 10 Dec 2012 13:48:03 +0100 Message-Id: <1355143684-16850-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1355143684-16850-1-git-send-email-kraxel@redhat.com> References: <1355143684-16850-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 1/2] pixman: require 0.16.4 as minimum version List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Lower the bar a bit. 0.16.4 is known-good, and is shipped by debian. Fixes build failures on the debian-based buildbot slaves. Signed-off-by: Gerd Hoffmann --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index e5aedef..a4e62c4 100755 --- a/configure +++ b/configure @@ -2127,7 +2127,7 @@ fi # pixman support probe if test "$pixman" = ""; then - if $pkg_config --atleast-version=0.18.4 pixman-1 > /dev/null 2>&1; then + if $pkg_config --atleast-version=0.16.4 pixman-1 > /dev/null 2>&1; then pixman="system" else pixman="internal" @@ -2138,7 +2138,7 @@ if test "$pixman" = "system"; then pixman_libs=`$pkg_config --libs pixman-1 2>/dev/null` else if test ! -d ${source_path}/pixman/pixman; then - echo "ERROR: pixman not present (or older than 0.18.4). Your options:" + echo "ERROR: pixman not present (or older than 0.16.4). Your options:" echo " (1) Prefered: Install the pixman devel package (any recent" echo " distro should have packages as Xorg needs pixman too)." echo " (2) Fetch the pixman submodule, using:" -- 1.7.1