From patchwork Thu Mar 1 14:28:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Marc-Andr=C3=A9_Lureau?= X-Patchwork-Id: 144056 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 B508A1007D2 for ; Fri, 2 Mar 2012 01:45:59 +1100 (EST) Received: from localhost ([::1]:46229 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S371h-0003e3-Ag for incoming@patchwork.ozlabs.org; Thu, 01 Mar 2012 09:30:37 -0500 Received: from eggs.gnu.org ([208.118.235.92]:39644) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S370l-00012x-Gm for qemu-devel@nongnu.org; Thu, 01 Mar 2012 09:30:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S370b-00062i-LL for qemu-devel@nongnu.org; Thu, 01 Mar 2012 09:29:39 -0500 Received: from mail-ey0-f173.google.com ([209.85.215.173]:55379) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S370b-0005nd-8Z for qemu-devel@nongnu.org; Thu, 01 Mar 2012 09:29:29 -0500 Received: by mail-ey0-f173.google.com with SMTP id n13so263499eaa.4 for ; Thu, 01 Mar 2012 06:29:28 -0800 (PST) Received-SPF: pass (google.com: domain of marcandre.lureau@gmail.com designates 10.213.31.135 as permitted sender) client-ip=10.213.31.135; Authentication-Results: mr.google.com; spf=pass (google.com: domain of marcandre.lureau@gmail.com designates 10.213.31.135 as permitted sender) smtp.mail=marcandre.lureau@gmail.com; dkim=pass header.i=marcandre.lureau@gmail.com Received: from mr.google.com ([10.213.31.135]) by 10.213.31.135 with SMTP id y7mr2191103ebc.90.1330612168448 (num_hops = 1); Thu, 01 Mar 2012 06:29:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :in-reply-to:references; bh=5X3Iv2yQ4zZZRR69/nRSWxavMxhBPrAJBiNVGVyq+PU=; b=NEwvFT3JJmvDqeB1ttYaomeXgE4BvqUxSjhrEb0fepgx0TZZYJuKPDfM+F17u7T1GQ aRvvSQVkxRZx5tqGvvw7fpMgUOtpNLs8o3JUvhYFxLPtNeBmI05oircGykvNLThd2u6m MPQ+8/v+B+iJhILRvkiLm1LueZaghny7j4SUQ= Received: by 10.213.31.135 with SMTP id y7mr1701266ebc.90.1330612168356; Thu, 01 Mar 2012 06:29:28 -0800 (PST) Received: from localhost (84.216.13.109.rev.sfr.net. [109.13.216.84]) by mx.google.com with ESMTPS id y14sm7824173eef.10.2012.03.01.06.29.25 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 01 Mar 2012 06:29:25 -0800 (PST) From: "=?UTF-8?q?Marc-Andr=C3=A9=20Lureau?=" To: qemu-devel@nongnu.org Date: Thu, 1 Mar 2012 15:28:05 +0100 Message-Id: <1330612087-1882-10-git-send-email-marcandre.lureau@redhat.com> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <1330612087-1882-1-git-send-email-marcandre.lureau@redhat.com> References: <1330612087-1882-1-git-send-email-marcandre.lureau@redhat.com> In-Reply-To: <1316621468-32171-1-git-send-email-marcandre.lureau@redhat.com> References: <1316621468-32171-1-git-send-email-marcandre.lureau@redhat.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.215.173 Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , kraxel@redhat.com Subject: [Qemu-devel] [PATCH 09/11] configure: pa_simple is not needed anymore 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 --- configure | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index d9dde96..938c2d2 100755 --- a/configure +++ b/configure @@ -1845,9 +1845,9 @@ for drv in $audio_drv_list; do ;; pa) - audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \ - "pa_simple *s = 0; pa_simple_free(s); return 0;" - libs_softmmu="-lpulse -lpulse-simple $libs_softmmu" + audio_drv_probe $drv pulse/mainloop.h "-lpulse" \ + "pa_mainloop *m = 0; pa_mainloop_free (m); return 0;" + libs_softmmu="-lpulse $libs_softmmu" audio_pt_int="yes" ;;