From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:36427) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RYMWZ-00020Y-21 for qemu-devel@nongnu.org; Wed, 07 Dec 2011 13:47:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RYMWT-00033k-AE for qemu-devel@nongnu.org; Wed, 07 Dec 2011 13:47:23 -0500 Received: from mail-ww0-f53.google.com ([74.125.82.53]:41195) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RYMWS-00033W-S7 for qemu-devel@nongnu.org; Wed, 07 Dec 2011 13:47:17 -0500 Received: by wgbds1 with SMTP id ds1so1642220wgb.10 for ; Wed, 07 Dec 2011 10:47:16 -0800 (PST) From: Andrzej Zaborowski Date: Wed, 7 Dec 2011 08:47:28 +0100 Message-Id: <1323244048-6021-3-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 2/2] configure: remove --enable-cocoa (default), add --disable-cocoa. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cocoa can only be enabled on Darwin, and is enabled by default too, making --enable-cocoa redundant, with no way to disable Cocoa. It also interfered with SDL support in a way that was dependent on the order of commandline switches. Signed-off-by: Andrzej Zaborowski --- Cocoa support seems to be broken at the moment, at least on some MacOS X versions. But qemu builds and runs with SDL. configure | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/configure b/configure index fb15bc6..c5d07af 100755 --- a/configure +++ b/configure @@ -674,10 +674,7 @@ for opt do ;; --enable-profiler) profiler="yes" ;; - --enable-cocoa) - cocoa="yes" ; - sdl="no" ; - audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" + --disable-cocoa) cocoa="no" ;; --disable-system) softmmu="no" ;; @@ -986,7 +983,7 @@ echo " --disable-sdl disable SDL" echo " --enable-sdl enable SDL" echo " --disable-vnc disable VNC" echo " --enable-vnc enable VNC" -echo " --enable-cocoa enable COCOA (Mac OS X only)" +echo " --disable-cocoa disable COCOA (Mac OS X only)" echo " --audio-drv-list=LIST set audio drivers list:" echo " Available drivers: $audio_possible_drivers" echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" -- 1.7.4.4