Module Name: pkgsrc
Committed By: nia
Date: Sun Mar 22 13:10:13 UTC 2026
Modified Files:
pkgsrc/textproc/qsubst: distinfo
pkgsrc/textproc/qsubst/patches: patch-ab
Log Message:
qsubst: Fix implicit decl of bcmp(3)
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/textproc/qsubst/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/qsubst/patches/patch-ab
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/qsubst/distinfo
diff -u pkgsrc/textproc/qsubst/distinfo:1.11 pkgsrc/textproc/qsubst/distinfo:1.12
--- pkgsrc/textproc/qsubst/distinfo:1.11 Tue Oct 26 11:23:18 2021
+++ pkgsrc/textproc/qsubst/distinfo Sun Mar 22 13:10:13 2026
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.11 2021/10/26 11:23:18 nia Exp $
+$NetBSD: distinfo,v 1.12 2026/03/22 13:10:13 nia Exp $
BLAKE2s (qsubst-20010422.tar.gz) = 7c20ff9467f3b328fc5a37bb0f69aa72ec2da8e6d67892964e34fb688bcc153b
SHA512 (qsubst-20010422.tar.gz) = 3aff5ede29e2e12fd716ebc92d0a322ffc9e28eaf8c85c6d728d85b939f4c603675648c4d5cf4d68c1a1d143d7ea51993bd0cff0f08207e552f8534ba4b56363
Size (qsubst-20010422.tar.gz) = 5965 bytes
SHA1 (patch-aa) = 66006f75d9981a1ea8edb323f92fc74e39f7ecd0
-SHA1 (patch-ab) = 1b740a8e82e0c6f20948b42cb03371fd028145fd
+SHA1 (patch-ab) = 05af409269eee49a90476a3d559c23b6f79e03dd
Index: pkgsrc/textproc/qsubst/patches/patch-ab
diff -u pkgsrc/textproc/qsubst/patches/patch-ab:1.3 pkgsrc/textproc/qsubst/patches/patch-ab:1.4
--- pkgsrc/textproc/qsubst/patches/patch-ab:1.3 Tue May 16 18:43:45 2006
+++ pkgsrc/textproc/qsubst/patches/patch-ab Sun Mar 22 13:10:13 2026
@@ -1,17 +1,16 @@
-$NetBSD: patch-ab,v 1.3 2006/05/16 18:43:45 christos Exp $
+$NetBSD: patch-ab,v 1.4 2026/03/22 13:10:13 nia Exp $
---- qsubst.c.orig 2001-04-22 01:35:35.000000000 -0400
-+++ qsubst.c 2006-05-16 14:39:11.923906738 -0400
-@@ -105,7 +105,7 @@
+--- qsubst.c.orig 2001-04-22 05:35:35.000000000 +0000
++++ qsubst.c
+@@ -105,6 +105,7 @@
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
--#include <strings.h>
+#include <string.h>
+ #include <strings.h>
#include <termcap.h>
#include <termios.h>
- #include <unistd.h>
-@@ -148,12 +148,23 @@
+@@ -148,12 +149,23 @@ static struct termios orig_tio;
static void tstp_self(void)
{
void (*old_tstp)(int);
@@ -35,7 +34,7 @@ $NetBSD: patch-ab,v 1.3 2006/05/16 18:43
signal(SIGTSTP,old_tstp);
}
-@@ -166,9 +177,9 @@
+@@ -166,9 +178,9 @@ static void sigtstp(int sig)
{ tstp_self();
return;
}
@@ -47,7 +46,7 @@ $NetBSD: patch-ab,v 1.3 2006/05/16 18:43
}
static void limit_above_below(void)
-@@ -181,7 +192,7 @@
+@@ -181,7 +193,7 @@ static void limit_above_below(void)
}
}
@@ -56,7 +55,7 @@ $NetBSD: patch-ab,v 1.3 2006/05/16 18:43
{
return( isascii(c) &&
( isalnum(c) ||
-@@ -231,7 +242,7 @@
+@@ -231,7 +243,7 @@ static int getc_cbreak(void)
tio.c_lflag &= ~(ICANON|ECHOKE|ECHOE|ECHO|ECHONL);
tio.c_cc[VMIN] = 1;
tio.c_cc[VTIME] = 0;
@@ -65,7 +64,7 @@ $NetBSD: patch-ab,v 1.3 2006/05/16 18:43
switch (read(0,&c,1))
{ case -1:
break;
-@@ -240,7 +251,7 @@
+@@ -240,7 +252,7 @@ static int getc_cbreak(void)
case 1:
break;
}