Received: by mail.netbsd.org (Postfix, from userid 605) id 7A2EA84D67; Mon, 23 Aug 2021 18:46:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B587084D1F for ; Mon, 23 Aug 2021 18:46:24 +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 d9ImwxKZ4jVf for ; Mon, 23 Aug 2021 18:46:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 162AD84D39 for ; Mon, 23 Aug 2021 18:46:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0F836FA97; Mon, 23 Aug 2021 18:46:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1629744384245540" MIME-Version: 1.0 Date: Mon, 23 Aug 2021 18:46:24 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/audio/lmms To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210823184624.0F836FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1629744384245540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Aug 23 18:46:23 UTC 2021 Modified Files: pkgsrc/audio/lmms: Makefile Log Message: lmms: link with -lrt on NetBSD to ensure all ladspa plugins work To generate a diff of this commit: cvs rdiff -u -r1.74 -r1.75 pkgsrc/audio/lmms/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1629744384245540 Content-Disposition: inline Content-Length: 727 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/lmms/Makefile diff -u pkgsrc/audio/lmms/Makefile:1.74 pkgsrc/audio/lmms/Makefile:1.75 --- pkgsrc/audio/lmms/Makefile:1.74 Fri Jul 30 12:26:39 2021 +++ pkgsrc/audio/lmms/Makefile Mon Aug 23 18:46:23 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.74 2021/07/30 12:26:39 ryoon Exp $ +# $NetBSD: Makefile,v 1.75 2021/08/23 18:46:23 nia Exp $ DISTNAME= lmms_1.2.2 PKGNAME= ${DISTNAME:S/_/-/1} @@ -39,6 +39,8 @@ CMAKE_ARGS+= -DWANT_VST_NOWINE=ON # for libzynaddsubfx.so in plugins/zynaddsubfx/. LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/lmms +LDFLAGS.NetBSD+= -lrt + BUILDLINK_TRANSFORM+= rm:-floop-optimize2 rm:-fgcse-las CHECK_PORTABILITY_SKIP+= cmake/linux/package_linux.sh.in --_----------=_1629744384245540--