pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/aceunit
Module Name: pkgsrc
Committed By: gdt
Date: Mon Jun 22 18:15:55 UTC 2026
Modified Files:
pkgsrc/devel/aceunit: Makefile
Log Message:
devel/aceunit: Use c89, not c90.
C90 is a synomym (to humans) for C89, differing only in ISO-ness and
formatting. Therefore force c89, not c90, on the belief that no
compiler will behave differently, and because c90 is about to removed
from our list of dialects.
(It's not clear why this is forced; aceunit appears to support newer
standards, but I'm leaving that be.)
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/aceunit/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/aceunit/Makefile
diff -u pkgsrc/devel/aceunit/Makefile:1.1 pkgsrc/devel/aceunit/Makefile:1.2
--- pkgsrc/devel/aceunit/Makefile:1.1 Sat May 4 18:06:23 2024
+++ pkgsrc/devel/aceunit/Makefile Mon Jun 22 18:15:55 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2024/05/04 18:06:23 schmonz Exp $
+# $NetBSD: Makefile,v 1.2 2026/06/22 18:15:55 gdt Exp $
DISTNAME= aceunit-${GITHUB_TAG}
PKGNAME= ${DISTNAME:S/-v/-/}
@@ -12,7 +12,7 @@ COMMENT= Advanced C and Embedded Unit t
LICENSE= modified-bsd
USE_TOOLS+= bash:run gmake
-FORCE_C_STD= c90
+FORCE_C_STD= c89
TOOLS_PLATFORM.bash= # undef, to avoid too-old vendor bash
REPLACE_BASH= bin/aceunit
BUILD_TARGET= build # need to build the tests in this phase
Home |
Main Index |
Thread Index |
Old Index