From patchwork Thu Apr 26 09:57:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 155218 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id DE72EB6F9D for ; Thu, 26 Apr 2012 19:58:03 +1000 (EST) Received: from localhost ([::1]:52217 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNLSb-0004td-Ko for incoming@patchwork.ozlabs.org; Thu, 26 Apr 2012 05:58:01 -0400 Received: from eggs.gnu.org ([208.118.235.92]:51950) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNLSR-0004tJ-CE for qemu-devel@nongnu.org; Thu, 26 Apr 2012 05:57:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SNLSI-0005iB-JD for qemu-devel@nongnu.org; Thu, 26 Apr 2012 05:57:50 -0400 Received: from mout.web.de ([212.227.15.4]:61147) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNLSI-0005i7-9L for qemu-devel@nongnu.org; Thu, 26 Apr 2012 05:57:42 -0400 Received: from af.local ([84.148.20.84]) by smtp.web.de (mrweb001) with ESMTPA (Nemesis) id 0M5Oql-1S0hZ50AFL-00zXVM; Thu, 26 Apr 2012 11:57:40 +0200 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Date: Thu, 26 Apr 2012 11:57:39 +0200 Message-Id: <1335434259-41302-1-git-send-email-andreas.faerber@web.de> X-Mailer: git-send-email 1.7.5.3 MIME-Version: 1.0 X-Provags-ID: V02:K0:4+DNhiPw3I45U2ni8MEeXO0Rmgj6y1bUitk/L+I1w7a Cruw9rdzWutiA93y9dFJUjscIQTNGalev/k5Ivfh6Imea0BK/G 3/eNTvwFRHfS2CMOC7iFSE8PDSUL4i9I0vuEyg0pzX8GaTXq/d oAXgoC4SjFn9VPke+Dq9VxcE+LSizXZ32T3p2q7pAbtEk2DWPk XdjHfgfTXXiesb94w86bA== X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 212.227.15.4 Cc: Bernhard Walle , =?UTF-8?q?Andreas=20F=C3=A4rber?= Subject: [Qemu-devel] [PATCH] configure: Don't build bsd-user on Mac OS X by default X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Fixes the build when combined with the drop of darwin-user. Enthusiasts can still try building it using --enable-bsd-user. Signed-off-by: Andreas Färber Cc: Bernhard Walle Tested-by: Bernhard Walle [Mac OS 10.7.3] Acked-by: Bernhard Walle --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index dd09f1a..e1bdc10 100755 --- a/configure +++ b/configure @@ -498,8 +498,8 @@ esac if [ "$bsd" = "yes" ] ; then if [ "$darwin" != "yes" ] ; then usb="bsd" + bsd_user="yes" fi - bsd_user="yes" fi : ${make=${MAKE-make}}