From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55786) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YWMBr-0003PM-BT for qemu-devel@nongnu.org; Fri, 13 Mar 2015 05:47:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YWMBi-0000oA-BU for qemu-devel@nongnu.org; Fri, 13 Mar 2015 05:47:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47135) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YWMBi-0000no-3Q for qemu-devel@nongnu.org; Fri, 13 Mar 2015 05:47:26 -0400 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 t2D9lPG4024000 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 13 Mar 2015 05:47:25 -0400 From: Gerd Hoffmann Date: Fri, 13 Mar 2015 10:47:04 +0100 Message-Id: <1426240033-24673-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1426240033-24673-1-git-send-email-kraxel@redhat.com> References: <1426240033-24673-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH] opengl: require glx List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann hw/display/milkymist-tmu2.c uses glx. That will be replaced with egl in the future, with qemu getting more opengl support. But we are not there yet, so put it back into configure to fix build failures on machines without glx (i.e. macos, possibly windows too). Signed-off-by: Gerd Hoffmann --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index bd55786..ed49990 100755 --- a/configure +++ b/configure @@ -3120,7 +3120,7 @@ libs_softmmu="$libs_softmmu $fdt_libs" ########################################## # opengl probe (for sdl2, milkymist-tmu2) if test "$opengl" != "no" ; then - opengl_pkgs="egl gl glesv2" + opengl_pkgs="glx egl gl glesv2" if $pkg_config $opengl_pkgs x11; then opengl_cflags="$($pkg_config --cflags $opengl_pkgs) $x11_cflags" opengl_libs="$($pkg_config --libs $opengl_pkgs) $x11_libs" -- 1.8.3.1