From patchwork Fri Jun 13 11:02:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Henningsson X-Patchwork-Id: 4348551 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 01D8D9F357 for ; Fri, 13 Jun 2014 11:02:13 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 208B220265 for ; Fri, 13 Jun 2014 11:02:13 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id CCFD8201B9 for ; Fri, 13 Jun 2014 11:02:11 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id DE8B4261A9F; Fri, 13 Jun 2014 13:02:10 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id 19F2B2616BF; Fri, 13 Jun 2014 13:02:07 +0200 (CEST) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 52B542619EC; Fri, 13 Jun 2014 13:02:06 +0200 (CEST) Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by alsa0.perex.cz (Postfix) with ESMTP id 1EADA26109C for ; Fri, 13 Jun 2014 13:01:59 +0200 (CEST) Received: from hd9483857.selulk5.dyn.perspektivbredband.net ([217.72.56.87] helo=[192.168.8.102]) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1WvPF8-0007LB-RM; Fri, 13 Jun 2014 11:01:58 +0000 Message-ID: <539ADA29.50508@canonical.com> Date: Fri, 13 Jun 2014 13:02:01 +0200 From: David Henningsson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Jaroslav Kysela , ALSA development References: <1402647348-25604-1-git-send-email-david.henningsson@canonical.com> <539AB5C7.6020501@perex.cz> <539ABEF0.7020508@canonical.com> <539AC54C.60504@canonical.com> <539ACD9A.5040209@perex.cz> In-Reply-To: <539ACD9A.5040209@perex.cz> Cc: Takashi Iwai , jordi@debian.org Subject: Re: [alsa-devel] ALSA 1.0.28 release - request for testing X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP While testing alsa-lib I found that the attached patch - which comes from Debian - probably should be applied upstream as well. On 2014-06-13 12:08, Jaroslav Kysela wrote: > Hello all, > > ALSA 1.0.28 packages are available for testing at > > ftp://ftp.alsa-project.org/pub/testing/ > > Please, report any issues. I expect to announce the release on Monday. > > Jaroslav > > ----- > Jaroslav Kysela > Linux Kernel Sound Maintainer > ALSA Project; Red Hat, Inc. > From 7a794ce0d1e28f191e113742ce1604334b4187f2 Mon Sep 17 00:00:00 2001 From: Jordi Mallach Date: Fri, 28 Jun 2013 15:01:40 +0200 Subject: [PATCH] Add -lm to test programs to fix build failure. Add -lm to test programs that use sin(), to fix a build failure with recent binutils. Signed-off-by: Jordi Mallach --- test/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/Makefile.am b/test/Makefile.am index 8705402..c1896f8 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -7,8 +7,10 @@ check_PROGRAMS=control pcm pcm_min latency seq \ control_LDADD=../src/libasound.la pcm_LDADD=../src/libasound.la +pcm_LDFLAGS= -lm pcm_min_LDADD=../src/libasound.la latency_LDADD=../src/libasound.la +latency_LDFLAGS= -lm seq_LDADD=../src/libasound.la playmidi1_LDADD=../src/libasound.la timer_LDADD=../src/libasound.la -- 1.8.3.1