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 5A90F1A9239 for ; Sun, 26 Dec 2021 16:42:44 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 90B4A84D35; Sun, 26 Dec 2021 16:42:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CC04684D32 for ; Sun, 26 Dec 2021 16:42:42 +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 wYXv0K5cUyZD for ; Sun, 26 Dec 2021 16:42:42 +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 6146B84D22 for ; Sun, 26 Dec 2021 16:42:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5E772FAEC; Sun, 26 Dec 2021 16:42:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1640536962149600" MIME-Version: 1.0 Date: Sun, 26 Dec 2021 16:42:42 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/devel/skalibs To: pkgsrc-changes@NetBSD.org Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20211226164242.5E772FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1640536962149600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Sun Dec 26 16:42:42 UTC 2021 Modified Files: pkgsrc/devel/skalibs: Makefile Log Message: Define _NETBSD_SOURCE on NetBSD to make sure the function declaration of fdopendir is visible. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/skalibs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1640536962149600 Content-Disposition: inline Content-Length: 633 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/skalibs/Makefile diff -u pkgsrc/devel/skalibs/Makefile:1.14 pkgsrc/devel/skalibs/Makefile:1.15 --- pkgsrc/devel/skalibs/Makefile:1.14 Wed Dec 22 15:59:17 2021 +++ pkgsrc/devel/skalibs/Makefile Sun Dec 26 16:42:42 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2021/12/22 15:59:17 schmonz Exp $ +# $NetBSD: Makefile,v 1.15 2021/12/26 16:42:42 nros Exp $ DISTNAME= skalibs-2.11.1.0 CATEGORIES= devel @@ -16,6 +16,8 @@ USE_LIBTOOL= yes CONFIGURE_ARGS+= --prefix=${PREFIX:Q} +CPPFLAGS.NetBSD= -D_NETBSD_SOURCE + INSTALLATION_DIRS= include/skalibs lib/skalibs/sysdeps post-install: --_----------=_1640536962149600--