Received: by mail.netbsd.org (Postfix, from userid 605) id 3EA3984E61; Mon, 19 Dec 2022 16:45:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6F34684E19 for ; Mon, 19 Dec 2022 16:45:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id f0J2bNcu9DXJ for ; Mon, 19 Dec 2022 16:45:43 +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 BF71984CFA for ; Mon, 19 Dec 2022 16:45:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B893BFA90; Mon, 19 Dec 2022 16:45:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1671468342262160" MIME-Version: 1.0 Date: Mon, 19 Dec 2022 16:45:42 +0000 From: "Paolo Vincenzo Olivo" Subject: CVS commit: pkgsrc/audio/rtunes To: pkgsrc-changes@NetBSD.org Reply-To: vins@netbsd.org X-Mailer: log_accum Message-Id: <20221219164542.B893BFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1671468342262160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: vins Date: Mon Dec 19 16:45:42 UTC 2022 Modified Files: pkgsrc/audio/rtunes: Makefile Log Message: audio/rtunes: libbsd handling changes. * only require libbsd on Linux. To date, we don't know of any platform but Linux where the library compiles fine. * prevent deprecated linking mode for libbsd on Linux. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/audio/rtunes/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1671468342262160 Content-Disposition: inline Content-Length: 755 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/rtunes/Makefile diff -u pkgsrc/audio/rtunes/Makefile:1.14 pkgsrc/audio/rtunes/Makefile:1.15 --- pkgsrc/audio/rtunes/Makefile:1.14 Tue Mar 30 12:01:04 2021 +++ pkgsrc/audio/rtunes/Makefile Mon Dec 19 16:45:42 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2021/03/30 12:01:04 nia Exp $ +# $NetBSD: Makefile,v 1.15 2022/12/19 16:45:42 vins Exp $ DISTNAME= rtunes-0.8 CATEGORIES= audio @@ -22,8 +22,7 @@ INSTALLATION_DIRS+= ${PKGMANDIR}/man1 INSTALLATION_DIRS+= ${PKGMANDIR}/man5 .include "../../mk/bsd.prefs.mk" -.if ${OPSYS} != "NetBSD" && ${OPSYS} != "OpenBSD" -LDFLAGS+= -lbsd +.if ${OPSYS} == "Linux" . include "../../devel/libbsd/buildlink3.mk" .endif .include "../../security/openssl/buildlink3.mk" --_----------=_1671468342262160--