pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/pccts



Module Name:    pkgsrc
Committed By:   mrg
Date:           Sat Oct 11 21:14:32 UTC 2025

Modified Files:
        pkgsrc/devel/pccts: distinfo
Added Files:
        pkgsrc/devel/pccts/patches: patch-sorcerer_gen.c
            patch-support_genmk_genmk.c

Log Message:
Add missing types/prototypes for GCC 14.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/pccts/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/pccts/patches/patch-sorcerer_gen.c \
    pkgsrc/devel/pccts/patches/patch-support_genmk_genmk.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/pccts/distinfo
diff -u pkgsrc/devel/pccts/distinfo:1.11 pkgsrc/devel/pccts/distinfo:1.12
--- pkgsrc/devel/pccts/distinfo:1.11    Tue Oct 26 10:17:59 2021
+++ pkgsrc/devel/pccts/distinfo Sat Oct 11 21:14:32 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.11 2021/10/26 10:17:59 nia Exp $
+$NetBSD: distinfo,v 1.12 2025/10/11 21:14:32 mrg Exp $
 
 BLAKE2s (pccts-1.33.33/pccts133mr33.zip) = 7ddfa9057e2b9285d204d086b529408cea34fb6f049c6f7a1ec0c36b4f35396e
 SHA512 (pccts-1.33.33/pccts133mr33.zip) = 8d01433df1502f5c1f6258d5ebb4dc2296239c179b4b62ba016fd890138045069222ff07b948aa194002a00a413a08bb939ab9879ab3821be4c1be61818b3458
@@ -10,3 +10,5 @@ SHA1 (patch-ad) = a7bd3f225c04362b0e66b2
 SHA1 (patch-ae) = bdfbc276cbf7217bdf48bb1b6df787d61f1d6267
 SHA1 (patch-af) = 5910279eb5d9d216c1051c48038792fc3841c568
 SHA1 (patch-ag) = 6637240de0c79b4f41f34d658ed99001adeab539
+SHA1 (patch-sorcerer_gen.c) = e413ac986eea402db1ff3ea2ebe805939ca2f7d7
+SHA1 (patch-support_genmk_genmk.c) = 073e0a4b4c83522ea200da83181a4f5945a0f6fd

Added files:

Index: pkgsrc/devel/pccts/patches/patch-sorcerer_gen.c
diff -u /dev/null pkgsrc/devel/pccts/patches/patch-sorcerer_gen.c:1.1
--- /dev/null   Sat Oct 11 21:14:32 2025
+++ pkgsrc/devel/pccts/patches/patch-sorcerer_gen.c     Sat Oct 11 21:14:32 2025
@@ -0,0 +1,16 @@
+$NetBSD: patch-sorcerer_gen.c,v 1.1 2025/10/11 21:14:32 mrg Exp $
+
+Add missing types/prototypes for GCC 14.
+
+
+--- sorcerer/gen.c.orig        2001-06-03 10:37:29.000000000 -0700
++++ sorcerer/gen.c     2025-10-11 14:09:44.968770301 -0700
+@@ -56,7 +56,7 @@
+ #include "sym.h"
+ #include "proto.h"
+ 
+-static outfile = -1;
++static int outfile = -1;
+ static char *current_rule;
+ static ListNode *labels_for_func = NULL;
+ static AST *whichRule;
Index: pkgsrc/devel/pccts/patches/patch-support_genmk_genmk.c
diff -u /dev/null pkgsrc/devel/pccts/patches/patch-support_genmk_genmk.c:1.1
--- /dev/null   Sat Oct 11 21:14:32 2025
+++ pkgsrc/devel/pccts/patches/patch-support_genmk_genmk.c      Sat Oct 11 21:14:32 2025
@@ -0,0 +1,30 @@
+$NetBSD: patch-support_genmk_genmk.c,v 1.1 2025/10/11 21:14:32 mrg Exp $
+
+Add missing types/prototypes for GCC 14.
+
+
+--- support/genmk/genmk.c.orig 2000-12-04 08:05:21.000000000 -0800
++++ support/genmk/genmk.c      2025-10-11 14:11:18.509028225 -0700
+@@ -73,12 +73,14 @@ void mk(char *project, char **files, int
+ void pfiles(char **files, int n, char *suffix);
+ void fatal(char *msg);
+ void warn(char *msg);
++void pclasses(char **classes, int n, char *suffix);
+ #else
+ void help();
+ void mk();
+ void pfiles();
+ void fatal();
+ void warn();
++void pclasses();
+ #endif
+ 
+ typedef struct _Opt {
+@@ -966,6 +968,7 @@ char *suffix;
+ }
+ 
+ #ifdef __STDC__
++void
+ pclasses(char **classes, int n, char *suffix)
+ #else
+ pclasses(classes, n, suffix)



Home | Main Index | Thread Index | Old Index