CVS commit: pkgsrc/lang/siod
"Ryo ONODERA" <[email protected]> Tue, 4 Aug 2026 14:59:48 +0000
| Newsgroups | gmane.os.netbsd.devel.pkgsrc.cvs |
|---|---|
| Message-ID | <[email protected]> |
This is a multi-part message in MIME format.
--_----------=_1785855588289410
Content-Disposition: inline
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset="US-ASCII"
Module Name: pkgsrc
Committed By: ryoon
Date: Tue Aug 4 14:59:48 UTC 2026
Modified Files:
pkgsrc/lang/siod: distinfo
Added Files:
pkgsrc/lang/siod/patches: patch-slib.c
Log Message:
lang/siod: Fix build with GCC 14
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/lang/siod/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/lang/siod/patches/patch-slib.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
--_----------=_1785855588289410
Content-Disposition: inline
Content-Length: 1578
Content-Transfer-Encoding: binary
Content-Type: text/x-diff; charset=us-ascii
Modified files:
Index: pkgsrc/lang/siod/distinfo
diff -u pkgsrc/lang/siod/distinfo:1.13 pkgsrc/lang/siod/distinfo:1.14
--- pkgsrc/lang/siod/distinfo:1.13 Tue Oct 26 10:51:55 2021
+++ pkgsrc/lang/siod/distinfo Tue Aug 4 14:59:48 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.13 2021/10/26 10:51:55 nia Exp $
+$NetBSD: distinfo,v 1.14 2026/08/04 14:59:48 ryoon Exp $
BLAKE2s (siod.tgz) = 9a0957c81788cd02166c55523cf2d2beac05b990f58323a65fb274f083192173
SHA512 (siod.tgz) = 585497489facfce8a3748bc965a83eb07b29b8215d53ff69e6a8c18f7078d72b260e95716c151c4bf590ec41d219876a606674bf0781d37b0a28ef7a06d19648
@@ -8,3 +8,4 @@ SHA1 (patch-ab) = 840474628c3863261ea91f
SHA1 (patch-ac) = 4466fd94141f87b4d9a6dd8ea3a0f29bdd09998b
SHA1 (patch-ad) = 66078a1f27b514940ce9e4cafb93e35476f20348
SHA1 (patch-ae) = e5838f5286ca9bb8fc4b61baa1ff8612a0c5f05c
+SHA1 (patch-slib.c) = 29270bd70233feb1e420cb39560826de2b0bbf70
Added files:
Index: pkgsrc/lang/siod/patches/patch-slib.c
diff -u /dev/null pkgsrc/lang/siod/patches/patch-slib.c:1.1
--- /dev/null Tue Aug 4 14:59:48 2026
+++ pkgsrc/lang/siod/patches/patch-slib.c Tue Aug 4 14:59:48 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-slib.c,v 1.1 2026/08/04 14:59:48 ryoon Exp $
+
+* Fix build with GCC 14.
+
+--- slib.c.orig 2026-08-04 12:33:38.331190317 +0000
++++ slib.c
+@@ -169,7 +169,7 @@ void __stdcall process_cla(int argc,char **argv,int wa
+ void __stdcall process_cla(int argc,char **argv,int warnflag)
+ {int k;
+ char *ptr;
+- static siod_lib_set = 0;
++ static int siod_lib_set = 0;
+ #if !defined(vms)
+ if (!siod_lib_set)
+ {
--_----------=_1785855588289410--