Received: by mail.netbsd.org (Postfix, from userid 605) id BDF8E84E60; Mon, 19 Dec 2022 17:15:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ECBBD84E5F for ; Mon, 19 Dec 2022 17:15:34 +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 T_3SlQiDec-B for ; Mon, 19 Dec 2022 17:15:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4010384E19 for ; Mon, 19 Dec 2022 17:15:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3395CFA90; Mon, 19 Dec 2022 17:15:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1671470134299440" MIME-Version: 1.0 Date: Mon, 19 Dec 2022 17:15:34 +0000 From: "Paolo Vincenzo Olivo" Subject: CVS commit: pkgsrc/devel/libbsd To: pkgsrc-changes@NetBSD.org Reply-To: vins@netbsd.org X-Mailer: log_accum Message-Id: <20221219171534.3395CFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1671470134299440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: vins Date: Mon Dec 19 17:15:34 UTC 2022 Modified Files: pkgsrc/devel/libbsd: Makefile Log Message: devel/libbsd: mark as broken on Darwin and SunOS. SunOS (with particular regard to illumos) and macOS support native analogues for most of the functions provided by libbsd. As a result, libbsd failes to compile on these platforms, due to the inherent incompatibility of parameters/arguments types in declaration and definition of the same functions. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/libbsd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1671470134299440 Content-Disposition: inline Content-Length: 654 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libbsd/Makefile diff -u pkgsrc/devel/libbsd/Makefile:1.3 pkgsrc/devel/libbsd/Makefile:1.4 --- pkgsrc/devel/libbsd/Makefile:1.3 Mon Dec 19 16:05:43 2022 +++ pkgsrc/devel/libbsd/Makefile Mon Dec 19 17:15:34 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2022/12/19 16:05:43 vins Exp $ +# $NetBSD: Makefile,v 1.4 2022/12/19 17:15:34 vins Exp $ DISTNAME= libbsd-0.11.7 CATEGORIES= devel @@ -13,6 +13,7 @@ LICENSE+= AND isc AND mit AND beer-ware NOT_FOR_PLATFORM= NetBSD-*-* FreeBSD-*-* NOT_FOR_PLATFORM+= OpenBSD-*-* DragonFly-* +BROKEN_ON_PLATFORM= Darwin-*-* SunOS-*-* GNU_CONFIGURE= yes USE_LIBTOOL= yes --_----------=_1671470134299440--