Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 84BC184D7A for ; Wed, 2 Aug 2023 16:30:57 +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 UGPnJATIseng for ; Wed, 2 Aug 2023 16:30:57 +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 D06BB84D57 for ; Wed, 2 Aug 2023 16:30:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BEBE9FBDB; Wed, 2 Aug 2023 16:30:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169099385618800" MIME-Version: 1.0 Date: Wed, 2 Aug 2023 16:30:56 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/slibtool To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230802163056.BEBE9FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169099385618800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Aug 2 16:30:56 UTC 2023 Modified Files: pkgsrc/devel/slibtool: Makefile Log Message: slibtool: Define _NETBSD_SOURCE on NetBSD. On older releases, this is required for O_NOFOLLOW to be defined. On newer releases, the XOPEN_SOURCE setting still seems too low. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/slibtool/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169099385618800 Content-Disposition: inline Content-Length: 613 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/slibtool/Makefile diff -u pkgsrc/devel/slibtool/Makefile:1.8 pkgsrc/devel/slibtool/Makefile:1.9 --- pkgsrc/devel/slibtool/Makefile:1.8 Sun Jul 16 19:17:02 2023 +++ pkgsrc/devel/slibtool/Makefile Wed Aug 2 16:30:56 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2023/07/16 19:17:02 wiedi Exp $ +# $NetBSD: Makefile,v 1.9 2023/08/02 16:30:56 nia Exp $ DISTNAME= slibtool-0.5.34 CATEGORIES= devel @@ -14,5 +14,6 @@ HAS_CONFIGURE= yes USE_LANGUAGES= c USE_TOOLS+= gmake CFLAGS.SunOS+= -D__EXTENSIONS__ +CFLAGS.NetBSD+= -D_NETBSD_SOURCE .include "../../mk/bsd.pkg.mk" --_----------=_169099385618800--