From patchwork Tue Mar 13 15:20:56 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: 146443 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 2114CB6EEA for ; Wed, 14 Mar 2012 03:24:16 +1100 (EST) Received: from localhost ([::1]:40631 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S7TYU-0003Hy-KZ for incoming@patchwork.ozlabs.org; Tue, 13 Mar 2012 11:22:30 -0400 Received: from eggs.gnu.org ([208.118.235.92]:37891) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S7TYC-0002sI-HE for qemu-devel@nongnu.org; Tue, 13 Mar 2012 11:22:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S7TXl-0003Hn-TY for qemu-devel@nongnu.org; Tue, 13 Mar 2012 11:22:12 -0400 Received: from mail-ee0-f45.google.com ([74.125.83.45]:38634) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S7TXl-00039n-KT for qemu-devel@nongnu.org; Tue, 13 Mar 2012 11:21:45 -0400 Received: by mail-ee0-f45.google.com with SMTP id t10so359321eei.4 for ; Tue, 13 Mar 2012 08:21:44 -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=F8sBxF+eWcbs805xkQJFrqrtWSjUBqItobQKq6Xgfuc=; b=wB9Iq8Xxu5yJrLd5Urp7hwPglGbcHCsLuPw2MuCQvwLaa5wN7eoQkcwBF6UJgBC4aI FsBT9r6bnLPlNvOg4Jzx6BxVGOL2EmqNrSSHoXm4T81mIrWvIN5qJVThCPTIlHhhfrVa sxVuUyW64YI1svEuAGFHhvS+yKDhKrPSZ0qYdFefYhrmICm/on7lMb6I48ROH+hh+9Eg K0ggwlhkEE5hWYaqZaNcNBOU/1Q/OEAvYxZQWUj59NSjCOBZjt/Ttcz7pAjVWqNKAelz 08CALjGA242FfgokGYiQGy20LIhmfTySU8F0zF0cbFq+0AtfBAM4zezn8nYpK5EkqDfL 9Z1w== Received: by 10.213.110.5 with SMTP id l5mr1277763ebp.46.1331652104737; Tue, 13 Mar 2012 08:21:44 -0700 (PDT) Received: from localhost (254.pool85-58-48.dynamic.orange.es. [85.58.48.254]) by mx.google.com with ESMTPS id n56sm2980866eeb.4.2012.03.13.08.21.42 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 13 Mar 2012 08:21:44 -0700 (PDT) From: "=?UTF-8?q?Marc-Andr=C3=A9=20Lureau?=" To: qemu-devel@nongnu.org Date: Tue, 13 Mar 2012 16:20:56 +0100 Message-Id: <1331652059-10090-9-git-send-email-marcandre.lureau@redhat.com> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <1331652059-10090-1-git-send-email-marcandre.lureau@redhat.com> References: <1331652059-10090-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.83.45 Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , dnb@redhat.com, dlaor@redhat.com, kraxel@redhat.com Subject: [Qemu-devel] [PATCH v4 08/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 Signed-off-by: Marc-André Lureau --- configure | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 39d2b54..160bf63 100755 --- a/configure +++ b/configure @@ -1842,9 +1842,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" ;;