Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 94E2F84D05 for ; Wed, 30 Aug 2023 13:16:33 +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 RWft_i6Q0A8I for ; Wed, 30 Aug 2023 13:16:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E235784CC8 for ; Wed, 30 Aug 2023 13:16:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DB755FBDB; Wed, 30 Aug 2023 13:16:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693401392235640" MIME-Version: 1.0 Date: Wed, 30 Aug 2023 13:16:32 +0000 From: "Michael Baeuerle" Subject: CVS commit: pkgsrc/news/canlock-hp To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: micha@netbsd.org X-Mailer: log_accum Message-Id: <20230830131632.DB755FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693401392235640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: micha Date: Wed Aug 30 13:16:32 UTC 2023 Modified Files: pkgsrc/news/canlock-hp: Makefile Log Message: news/canlock-hp: Use new variables to request a C99 compiler Bump, because now the mode should always be set (if default is not C99). To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/news/canlock-hp/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693401392235640 Content-Disposition: inline Content-Length: 944 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/news/canlock-hp/Makefile diff -u pkgsrc/news/canlock-hp/Makefile:1.8 pkgsrc/news/canlock-hp/Makefile:1.9 --- pkgsrc/news/canlock-hp/Makefile:1.8 Fri Oct 14 11:39:56 2022 +++ pkgsrc/news/canlock-hp/Makefile Wed Aug 30 13:16:32 2023 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.8 2022/10/14 11:39:56 micha Exp $ +# $NetBSD: Makefile,v 1.9 2023/08/30 13:16:32 micha Exp $ DISTNAME= libcanlock-3.3.0 PKGNAME= ${DISTNAME:S/libcanlock/canlock-hp/} +PKGREVISION= 1 CATEGORIES= news MASTER_SITES= http://micha.freeshell.org/libcanlock/src/ EXTRACT_SUFX= .tar.bz2 @@ -11,9 +12,10 @@ HOMEPAGE= https://micha.freeshell.org/li COMMENT= Parsers for RFC 5536 message headers and RFC 8315 header fields LICENSE= mit -USE_TOOLS+= lex yacc -USE_LANGUAGES+= c99 -USE_LIBTOOL= yes +USE_TOOLS+= lex yacc +FORCE_C_STD= c99 +USE_CC_FEATURES+= c99 +USE_LIBTOOL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-pc-files --_----------=_1693401392235640--