pkgsrc-Changes archive

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

CVS commit: pkgsrc/misc/cstream



Module Name:    pkgsrc
Committed By:   nia
Date:           Thu Mar 19 14:52:30 UTC 2026

Modified Files:
        pkgsrc/misc/cstream: distinfo
Added Files:
        pkgsrc/misc/cstream/patches: patch-cstream.c

Log Message:
cstream: Fix implicit decl of bzero(3)


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/misc/cstream/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/misc/cstream/patches/patch-cstream.c

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

Modified files:

Index: pkgsrc/misc/cstream/distinfo
diff -u pkgsrc/misc/cstream/distinfo:1.8 pkgsrc/misc/cstream/distinfo:1.9
--- pkgsrc/misc/cstream/distinfo:1.8    Tue Oct 26 10:59:00 2021
+++ pkgsrc/misc/cstream/distinfo        Thu Mar 19 14:52:29 2026
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.8 2021/10/26 10:59:00 nia Exp $
+$NetBSD: distinfo,v 1.9 2026/03/19 14:52:29 nia Exp $
 
 BLAKE2s (cstream-3.1.1.tar.gz) = 95db93df79c54ff99daf7d9ee3804731bc440700f6cb5ca7f82b45b3f2cb2f1a
 SHA512 (cstream-3.1.1.tar.gz) = 8d6364da622711f6888fd221b2f36f5da23d2a562d5a797d58d7ef361415481de8ab9ae55ae856d47c2d0141d570e22a61ab0ce9954c043877196df168f2f43a
 Size (cstream-3.1.1.tar.gz) = 96609 bytes
+SHA1 (patch-cstream.c) = a8f44733d15192ff8b87d0d77f82c036748e4022

Added files:

Index: pkgsrc/misc/cstream/patches/patch-cstream.c
diff -u /dev/null pkgsrc/misc/cstream/patches/patch-cstream.c:1.1
--- /dev/null   Thu Mar 19 14:52:30 2026
+++ pkgsrc/misc/cstream/patches/patch-cstream.c Thu Mar 19 14:52:29 2026
@@ -0,0 +1,14 @@
+$NetBSD: patch-cstream.c,v 1.1 2026/03/19 14:52:29 nia Exp $
+
+Fix implicit declaration of bzero(3).
+
+--- cstream.c.orig     2026-03-19 14:39:56.374861640 +0000
++++ cstream.c
+@@ -37,6 +37,7 @@
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <string.h>
++#include <strings.h>
+ #include <ctype.h>
+ #include <math.h>
+ #if HAVE_UNISTD_H || CRAENV



Home | Main Index | Thread Index | Old Index