From patchwork Thu Mar 22 15:21:36 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Marc-Andr=C3=A9_Lureau?= X-Patchwork-Id: 148277 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 28D1AB6F98 for ; Fri, 23 Mar 2012 03:08:04 +1100 (EST) Received: from localhost ([::1]:44413 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAjql-00009Y-A7 for incoming@patchwork.ozlabs.org; Thu, 22 Mar 2012 11:22:51 -0400 Received: from eggs.gnu.org ([208.118.235.92]:47841) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAjq9-0007MH-2T for qemu-devel@nongnu.org; Thu, 22 Mar 2012 11:22:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SAjq7-0002Zr-AN for qemu-devel@nongnu.org; Thu, 22 Mar 2012 11:22:12 -0400 Received: from mail-wg0-f53.google.com ([74.125.82.53]:60843) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAjq7-0002IG-1M for qemu-devel@nongnu.org; Thu, 22 Mar 2012 11:22:11 -0400 Received: by mail-wg0-f53.google.com with SMTP id fm10so1463796wgb.10 for ; Thu, 22 Mar 2012 08:22:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=ND8UBxz95/1YVDWwoADCm8UigUr/wNnmWCkOFvVPy/Y=; b=UPzlLVpP+WJQopT5YeacMutdODACviIf97JLmjHbSWh+MzGmGkP8rOG1DLR0d/z0w2 9LPyy6RRsNPtVoMoi35hRBjaLkxBRqV/6savotl1HebXrhec8HApoRaKio/oipG/P31W cq6ITNfpebFpAQ9KXf6tL08HC9kVJSZGILgec/rfHFClkvo4lprbNd4VxDZCdFggcQEY A5OR/fCO0XvRiHjBSuk2dSgX85/gwZ2P57A98/ELto0WOmYe/NhnWcNS5Q3vh4cudmGY 0s/j9gHivo64CaLkcxerNAtLejtIe1U2EWoBhFOAHumYABDVPQC13d8MgBt38Ps4Z5Lr 7Ypw== Received: by 10.180.76.74 with SMTP id i10mr6104312wiw.2.1332429730222; Thu, 22 Mar 2012 08:22:10 -0700 (PDT) Received: from localhost (49.pool85-58-61.dynamic.orange.es. [85.58.61.49]) by mx.google.com with ESMTPS id fn2sm10075173wib.0.2012.03.22.08.22.08 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 22 Mar 2012 08:22:09 -0700 (PDT) From: "=?UTF-8?q?Marc-Andr=C3=A9=20Lureau?=" To: qemu-devel@nongnu.org Date: Thu, 22 Mar 2012 16:21:36 +0100 Message-Id: <1332429698-10395-9-git-send-email-marcandre.lureau@redhat.com> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <1332429698-10395-1-git-send-email-marcandre.lureau@redhat.com> References: <1332429698-10395-1-git-send-email-marcandre.lureau@redhat.com> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 74.125.82.53 Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Subject: [Qemu-devel] [PATCH 08/10] 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 Signed-off-by: Marc-André Lureau --- configure | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 8b4e3c1..907a655 100755 --- a/configure +++ b/configure @@ -1847,9 +1847,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" ;;