Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id A56B17A220 for ; Sat, 7 Jan 2017 21:30:27 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 59C0C8562E; Sat, 7 Jan 2017 21:30:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DF1CD85589 for ; Sat, 7 Jan 2017 21:30:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id eXP3f7Ddwu79 for ; Sat, 7 Jan 2017 21:30:26 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4C5B984CF0 for ; Sat, 7 Jan 2017 21:30:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 45617FBA6; Sat, 7 Jan 2017 21:30:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1483824626163920" MIME-Version: 1.0 Date: Sat, 7 Jan 2017 21:30:26 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/audio/sox To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20170107213026.45617FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1483824626163920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Sat Jan 7 21:30:26 UTC 2017 Modified Files: pkgsrc/audio/sox: options.mk Log Message: sox: link with libossaudio if building oss option. package does not do this already. fixes build when oss option is selected (at least on netbsd 7.99.54). To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/audio/sox/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1483824626163920 Content-Disposition: inline Content-Length: 634 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/sox/options.mk diff -u pkgsrc/audio/sox/options.mk:1.5 pkgsrc/audio/sox/options.mk:1.6 --- pkgsrc/audio/sox/options.mk:1.5 Sat Oct 30 15:07:42 2010 +++ pkgsrc/audio/sox/options.mk Sat Jan 7 21:30:26 2017 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.5 2010/10/30 15:07:42 drochner Exp $ +# $NetBSD: options.mk,v 1.6 2017/01/07 21:30:26 maya Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.sox PKG_SUPPORTED_OPTIONS= lame oss @@ -12,6 +12,7 @@ PKG_SUGGESTED_OPTIONS= .endif .if !empty(PKG_OPTIONS:Moss) +LDFLAGS+= -lossaudio .include "../../mk/oss.buildlink3.mk" .else CONFIGURE_ARGS+= --without-oss --_----------=_1483824626163920--