pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/xml-coreutils
Module Name: pkgsrc
Committed By: nia
Date: Sun Mar 22 13:12:59 UTC 2026
Modified Files:
pkgsrc/textproc/xml-coreutils: distinfo
Added Files:
pkgsrc/textproc/xml-coreutils/patches: patch-src_fbreader.c
patch-src_io.c
Log Message:
xml-coreutils: Fix implicit decls on SunOS
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/xml-coreutils/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/textproc/xml-coreutils/patches/patch-src_fbreader.c \
pkgsrc/textproc/xml-coreutils/patches/patch-src_io.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/xml-coreutils/distinfo
diff -u pkgsrc/textproc/xml-coreutils/distinfo:1.4 pkgsrc/textproc/xml-coreutils/distinfo:1.5
--- pkgsrc/textproc/xml-coreutils/distinfo:1.4 Tue Oct 26 11:23:40 2021
+++ pkgsrc/textproc/xml-coreutils/distinfo Sun Mar 22 13:12:59 2026
@@ -1,6 +1,8 @@
-$NetBSD: distinfo,v 1.4 2021/10/26 11:23:40 nia Exp $
+$NetBSD: distinfo,v 1.5 2026/03/22 13:12:59 nia Exp $
BLAKE2s (xml-coreutils-0.8a.tar.gz) = 21e622e526618670c9ae8b1207589a1342ac0cf693fa8d1c9254856e74c3d07c
SHA512 (xml-coreutils-0.8a.tar.gz) = 71d9d12b2177ee9f2ffa9faa84810eecdf735524fcdc5e26f240fd102f58a0fa909e6d996caa2984121c226513eeb4a9487e8e38c5a609b66820cf2deda3ff59
Size (xml-coreutils-0.8a.tar.gz) = 376005 bytes
SHA1 (patch-aa) = a56b08f439fd61d12895476959519a3fa07cfe37
+SHA1 (patch-src_fbreader.c) = 9e51071e36cf3468fe7e808540b38d0dbeb5c6c2
+SHA1 (patch-src_io.c) = 7ce4d2f7e636bc56d269befeb7bee449f6172088
Added files:
Index: pkgsrc/textproc/xml-coreutils/patches/patch-src_fbreader.c
diff -u /dev/null pkgsrc/textproc/xml-coreutils/patches/patch-src_fbreader.c:1.1
--- /dev/null Sun Mar 22 13:12:59 2026
+++ pkgsrc/textproc/xml-coreutils/patches/patch-src_fbreader.c Sun Mar 22 13:12:59 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_fbreader.c,v 1.1 2026/03/22 13:12:59 nia Exp $
+
+Fix implicit declaration of fcntl(2) on SunOS.
+
+--- src/fbreader.c.orig 2026-03-22 13:00:20.271822684 +0000
++++ src/fbreader.c
+@@ -26,7 +26,7 @@
+
+ #include <sys/types.h>
+ #include <sys/stat.h>
+-#include <sys/fcntl.h>
++#include <fcntl.h>
+ #include <string.h>
+ #include <unistd.h>
+ #include <sys/stat.h>
Index: pkgsrc/textproc/xml-coreutils/patches/patch-src_io.c
diff -u /dev/null pkgsrc/textproc/xml-coreutils/patches/patch-src_io.c:1.1
--- /dev/null Sun Mar 22 13:12:59 2026
+++ pkgsrc/textproc/xml-coreutils/patches/patch-src_io.c Sun Mar 22 13:12:59 2026
@@ -0,0 +1,17 @@
+$NetBSD: patch-src_io.c,v 1.1 2026/03/22 13:12:59 nia Exp $
+
+Fix implicit declaration of fcntl(2) on SunOS.
+
+--- src/io.c.orig 2026-03-22 12:52:22.838136157 +0000
++++ src/io.c
+@@ -29,9 +29,9 @@
+
+ #include <sys/types.h>
+ #include <sys/stat.h>
+-#include <sys/fcntl.h>
+ #include <sys/wait.h>
+ #include <string.h>
++#include <fcntl.h>
+ #include <unistd.h>
+ #include <stdio.h>
+ #include <stdlib.h>
Home |
Main Index |
Thread Index |
Old Index