pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/tradcpp
Module Name: pkgsrc
Committed By: tnn
Date: Mon Apr 28 17:47:53 UTC 2025
Modified Files:
pkgsrc/devel/tradcpp: distinfo
Added Files:
pkgsrc/devel/tradcpp/patches: patch-bool.h
Log Message:
tradcpp: fix build w/ GCC 15
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/tradcpp/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/tradcpp/patches/patch-bool.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/tradcpp/distinfo
diff -u pkgsrc/devel/tradcpp/distinfo:1.17 pkgsrc/devel/tradcpp/distinfo:1.18
--- pkgsrc/devel/tradcpp/distinfo:1.17 Tue Oct 26 10:20:05 2021
+++ pkgsrc/devel/tradcpp/distinfo Mon Apr 28 17:47:53 2025
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.17 2021/10/26 10:20:05 nia Exp $
+$NetBSD: distinfo,v 1.18 2025/04/28 17:47:53 tnn Exp $
BLAKE2s (tradcpp-0.5.3.tar.gz) = 008511518778bd255b867611ff40faa862b087a670b8cc90fec3d1d9ea18a9ba
SHA512 (tradcpp-0.5.3.tar.gz) = 31ef1fc9db5e1fdb88c3decab981de9e5341620302195e3ae6883bb5eb3e3937a5d6543f7127c7a242edbe4c0864b3d1bc16ad6fce17e8662af337ffa2a60296
Size (tradcpp-0.5.3.tar.gz) = 38683 bytes
+SHA1 (patch-bool.h) = d8b7b0bb7db8b781d8320167a3946e00a579e0dd
Added files:
Index: pkgsrc/devel/tradcpp/patches/patch-bool.h
diff -u /dev/null pkgsrc/devel/tradcpp/patches/patch-bool.h:1.1
--- /dev/null Mon Apr 28 17:47:53 2025
+++ pkgsrc/devel/tradcpp/patches/patch-bool.h Mon Apr 28 17:47:53 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-bool.h,v 1.1 2025/04/28 17:47:53 tnn Exp $
+
+Fix C99 test. (don't redefine bool)
+
+--- bool.h.orig 2025-04-28 17:45:39.254903590 +0000
++++ bool.h
+@@ -30,7 +30,7 @@
+ #ifndef BOOL_H
+ #define BOOL_H
+
+-#if __STDC__ > 199901
++#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
+ #include <stdbool.h>
+ #else
+ typedef int bool;
Home |
Main Index |
Thread Index |
Old Index