Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 54DEE1A9217 for ; Mon, 18 Jan 2021 09:39:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8489984D3D; Mon, 18 Jan 2021 09:39:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BCF5684D39 for ; Mon, 18 Jan 2021 09:39:30 +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 NQqxiRArUIhJ for ; Mon, 18 Jan 2021 09:39:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1E78984D27 for ; Mon, 18 Jan 2021 09:39:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 187A1FA9D; Mon, 18 Jan 2021 09:39:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1610962770205920" MIME-Version: 1.0 Date: Mon, 18 Jan 2021 09:39:30 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/audio/forked-daapd To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210118093930.187A1FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1610962770205920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Jan 18 09:39:30 UTC 2021 Modified Files: pkgsrc/audio/forked-daapd: Makefile Log Message: forked-daapd: Require avahi on !NetBSD To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/audio/forked-daapd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1610962770205920 Content-Disposition: inline Content-Length: 935 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/forked-daapd/Makefile diff -u pkgsrc/audio/forked-daapd/Makefile:1.3 pkgsrc/audio/forked-daapd/Makefile:1.4 --- pkgsrc/audio/forked-daapd/Makefile:1.3 Fri Jan 1 09:52:15 2021 +++ pkgsrc/audio/forked-daapd/Makefile Mon Jan 18 09:39:29 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2021/01/01 09:52:15 ryoon Exp $ +# $NetBSD: Makefile,v 1.4 2021/01/18 09:39:29 nia Exp $ DISTNAME= forked-daapd-27.2 PKGREVISION= 3 @@ -49,6 +49,10 @@ BUILDLINK_API_DEPENDS.libevent+= libeven .include "../../devel/zlib/buildlink3.mk" BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.5.0 .include "../../databases/sqlite3/buildlink3.mk" +# what other operating systems have libdns_sd? +.if ${OPSYS} != "NetBSD" +. include "../../net/avahi/buildlink3.mk" +.endif .include "../../multimedia/ffmpeg4/buildlink3.mk" .include "../../security/gnutls/buildlink3.mk" .include "../../security/libgcrypt/buildlink3.mk" --_----------=_1610962770205920--