pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/untex



Module Name:    pkgsrc
Committed By:   nia
Date:           Sat Jun 20 00:57:53 UTC 2026

Modified Files:
        pkgsrc/textproc/untex: distinfo
Added Files:
        pkgsrc/textproc/untex/patches: patch-untex.c

Log Message:
untex: Fix build with GCC 14.

Avoid implicit declaration of strncmp(3), exit(3) by including
the right headers.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/textproc/untex/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/untex/patches/patch-untex.c

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

Modified files:

Index: pkgsrc/textproc/untex/distinfo
diff -u pkgsrc/textproc/untex/distinfo:1.6 pkgsrc/textproc/untex/distinfo:1.7
--- pkgsrc/textproc/untex/distinfo:1.6  Tue Oct 26 11:23:37 2021
+++ pkgsrc/textproc/untex/distinfo      Sat Jun 20 00:57:53 2026
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.6 2021/10/26 11:23:37 nia Exp $
+$NetBSD: distinfo,v 1.7 2026/06/20 00:57:53 nia Exp $
 
 BLAKE2s (untex-1.3.tar.gz) = c38ec96e8adcc5b226ee89b23f888f55c578f567d369649bbb8d223457f042c3
 SHA512 (untex-1.3.tar.gz) = 8747f2ff21c292579a56b697d536857c832a7a3f618046e36788fa0a6f7f6c5899655e9c3b685c8b01f30350dbd1e516096b58414396b8ea3d04f3881febab5f
 Size (untex-1.3.tar.gz) = 4687 bytes
 SHA1 (patch-aa) = fc34662a7de2bd81ca6b5e752fc47caf97883477
+SHA1 (patch-untex.c) = dbe45dfb278d6445e8c2aa5c9df866d731a3b2e2

Added files:

Index: pkgsrc/textproc/untex/patches/patch-untex.c
diff -u /dev/null pkgsrc/textproc/untex/patches/patch-untex.c:1.1
--- /dev/null   Sat Jun 20 00:57:53 2026
+++ pkgsrc/textproc/untex/patches/patch-untex.c Sat Jun 20 00:57:53 2026
@@ -0,0 +1,16 @@
+$NetBSD: patch-untex.c,v 1.1 2026/06/20 00:57:53 nia Exp $
+
+Fix implicit declaration of exit(3), strncmp(3).
+
+--- untex.c.orig       2026-06-20 00:54:40.216620001 +0000
++++ untex.c
+@@ -44,7 +44,9 @@
+ 
+ 
+ #include <stddef.h>
++#include <stdlib.h>
+ #include <stdio.h>
++#include <string.h>
+ #include <ctype.h>
+ 
+ 



Home | Main Index | Thread Index | Old Index