From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N11hg-0000Ly-El for qemu-devel@nongnu.org; Thu, 22 Oct 2009 13:44:00 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N11hb-0000LA-RG for qemu-devel@nongnu.org; Thu, 22 Oct 2009 13:44:00 -0400 Received: from [199.232.76.173] (port=53848 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N11hb-0000L7-O9 for qemu-devel@nongnu.org; Thu, 22 Oct 2009 13:43:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:10330) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N11hb-00041e-8A for qemu-devel@nongnu.org; Thu, 22 Oct 2009 13:43:55 -0400 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9MGpAS2012461 for ; Thu, 22 Oct 2009 12:51:11 -0400 From: Mark McLoughlin Date: Thu, 22 Oct 2009 17:49:11 +0100 Message-Id: <1256230156-29652-11-git-send-email-markmc@redhat.com> In-Reply-To: <1256230156-29652-1-git-send-email-markmc@redhat.com> References: <1256230156-29652-1-git-send-email-markmc@redhat.com> Subject: [Qemu-devel] [PATCH 10/15] build: add CONFIG_LINUX List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Mark McLoughlin So I can add a tap-linux.c and use CONFIG_LINUX to pull it in in Makefile Signed-off-by: Mark McLoughlin --- configure | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 43d87c5..4ccdebe 100755 --- a/configure +++ b/configure @@ -1897,6 +1897,10 @@ else echo "CONFIG_POSIX=y" >> $config_host_mak fi +if test "$linux" = "yes" ; then + echo "CONFIG_LINUX=y" >> $config_host_mak +fi + if test "$darwin" = "yes" ; then echo "CONFIG_DARWIN=y" >> $config_host_mak fi -- 1.6.2.5