From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:36343) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RYMWA-0001LB-8W for qemu-devel@nongnu.org; Wed, 07 Dec 2011 13:46:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RYMW9-000322-Df for qemu-devel@nongnu.org; Wed, 07 Dec 2011 13:46:58 -0500 Received: from mail-bw0-f45.google.com ([209.85.214.45]:55852) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RYMW9-00030T-8W for qemu-devel@nongnu.org; Wed, 07 Dec 2011 13:46:57 -0500 Received: by mail-bw0-f45.google.com with SMTP id q10so915135bka.4 for ; Wed, 07 Dec 2011 10:46:56 -0800 (PST) From: Andrzej Zaborowski Date: Wed, 7 Dec 2011 08:47:27 +0100 Message-Id: <1323244048-6021-2-git-send-email-balrogg@gmail.com> In-Reply-To: <1323244048-6021-1-git-send-email-balrogg@gmail.com> References: <1323244048-6021-1-git-send-email-balrogg@gmail.com> Subject: [Qemu-devel] [PATCH 1/2] configure: don't check for Cocoa when detecting SDL. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org The SDL check is supposed to set $sdl to "yes" or "no", but with that check it leaves $sdl unset on darwin, unless --enable-cocoa was specified (which is not needed to enable cocoa anyway). Signed-off-by: Andrzej Zaborowski --- configure | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 678b982..fb15bc6 100755 --- a/configure +++ b/configure @@ -1492,9 +1492,7 @@ EOF if test "$_sdlversion" -lt 121 ; then sdl_too_old=yes else - if test "$cocoa" = "no" ; then - sdl=yes - fi + sdl=yes fi # static link with sdl ? (note: sdl.pc's --static --libs is broken) -- 1.7.4.4