From patchwork Thu Apr 15 19:09:04 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Blue Swirl X-Patchwork-Id: 50284 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id CF7DEB7CF8 for ; Fri, 16 Apr 2010 05:18:52 +1000 (EST) Received: from localhost ([127.0.0.1]:57299 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O2UYJ-0005vt-MT for incoming@patchwork.ozlabs.org; Thu, 15 Apr 2010 15:16:39 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O2URh-00046d-Ve for qemu-devel@nongnu.org; Thu, 15 Apr 2010 15:09:50 -0400 Received: from [140.186.70.92] (port=33918 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O2URP-00040K-75 for qemu-devel@nongnu.org; Thu, 15 Apr 2010 15:09:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O2UR0-0005wG-J2 for qemu-devel@nongnu.org; Thu, 15 Apr 2010 15:09:30 -0400 Received: from mail-pw0-f45.google.com ([209.85.160.45]:63040) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O2UQz-0005vt-NL for qemu-devel@nongnu.org; Thu, 15 Apr 2010 15:09:05 -0400 Received: by pwi6 with SMTP id 6so1319825pwi.4 for ; Thu, 15 Apr 2010 12:09:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:received:message-id :subject:from:to:content-type; bh=7F9K6M+IA2or0s5q3kXJ3i7hAJEwXJxYQjYkuwPSUoY=; b=u0eeGDUPtnhtnhqUrVlDd2zWwR1grKdM2iN2eWDStkPqS63pwFK7tsY4YwJFSTy/z/ N9dBCIng3GVZ7vNiCP4VX3ybx/rsqETixU7XUIhycPZwKQx2Dmylt1c+Bd/PZzrJAiws GdGHKmAM4V/enjUK5hUqBNVhXL1aJBTr7iph4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=TTLEpotFjTPdciYeF8Wu+qiFaoUL1bjCl9y41cu65hJmcjhC9GvLzEkdLdmvn4T1sC FkgqE13cacav6PAJR80dgmYwH0T5nGI3FuwEI/5QpYavZp6xFgWb7qN83oLq3r0dMAIC 5fiU6OOOCrVU2kD/6LnWCx8PFodG8fRNNKX84= MIME-Version: 1.0 Received: by 10.141.32.16 with HTTP; Thu, 15 Apr 2010 12:09:04 -0700 (PDT) Date: Thu, 15 Apr 2010 22:09:04 +0300 Received: by 10.141.91.17 with SMTP id t17mr858037rvl.256.1271358544649; Thu, 15 Apr 2010 12:09:04 -0700 (PDT) Message-ID: From: Blue Swirl To: qemu-devel X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: [Qemu-devel] [PATCH 3/3] Compile event_notifier only once X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Blue Swirl --- Makefile.objs | 2 +- Makefile.target | 1 - 2 files changed, 1 insertions(+), 2 deletions(-) obj-y += rwhandler.o diff --git a/Makefile.objs b/Makefile.objs index c0fe5e2..c3864d0 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -104,7 +104,7 @@ common-obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o common-obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o common-obj-$(CONFIG_COCOA) += cocoa.o common-obj-$(CONFIG_IOTHREAD) += qemu-thread.o -common-obj-y += notify.o +common-obj-y += notify.o event_notifier.o common-obj-y += qemu-timer.o slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o diff --git a/Makefile.target b/Makefile.target index 3bd4b86..5897051 100644 --- a/Makefile.target +++ b/Makefile.target @@ -167,7 +167,6 @@ obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o # need to fix this properly obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o -obj-y += event_notifier.o obj-y += vhost_net.o obj-$(CONFIG_VHOST_NET) += vhost.o