pkgsrc-Changes archive

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

CVS commit: pkgsrc/sysutils/heirloom-doc



Module Name:    pkgsrc
Committed By:   cheusov
Date:           Thu May 23 21:48:53 UTC 2024

Modified Files:
        pkgsrc/sysutils/heirloom-doc: distinfo
Added Files:
        pkgsrc/sysutils/heirloom-doc/patches: patch-tar_tar.c

Log Message:
heirloom-tar: fix compilation failure on Linux/glibc


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/sysutils/heirloom-doc/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/heirloom-doc/patches/patch-tar_tar.c

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

Modified files:

Index: pkgsrc/sysutils/heirloom-doc/distinfo
diff -u pkgsrc/sysutils/heirloom-doc/distinfo:1.9 pkgsrc/sysutils/heirloom-doc/distinfo:1.10
--- pkgsrc/sysutils/heirloom-doc/distinfo:1.9   Tue Oct 26 11:19:40 2021
+++ pkgsrc/sysutils/heirloom-doc/distinfo       Thu May 23 21:48:53 2024
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.9 2021/10/26 11:19:40 nia Exp $
+$NetBSD: distinfo,v 1.10 2024/05/23 21:48:53 cheusov Exp $
 
 BLAKE2s (heirloom-070715.tar.bz2) = 774b1ce3e23a5fc789e5ebf8b316877712a6e60cb4846a5e4ccc6429bb20a298
 SHA512 (heirloom-070715.tar.bz2) = 0b30b0f4c4c92a10ee2da263ea44666f445d96bac86ca4afb7bbb50d8278986e4145a7bcdf3ed9f75611bb956e93e16fc0e19874498ce3ae1a00e6fbb4f910c9
@@ -17,3 +17,4 @@ SHA1 (patch-ax) = 74949080460cb2f7c16dd2
 SHA1 (patch-libcommon_Makefile.mk) = a78061c36c4351a0059a37eb4e62976cbf2df763
 SHA1 (patch-nawk_Makefile.mk) = a09833bec6a235f68888f73907dcda829cf4beb9
 SHA1 (patch-oawk_Makefile.mk) = 97e2d121103c65c41dc8cee2d9c05bb412fd0af5
+SHA1 (patch-tar_tar.c) = ca5c2422f99c192d0f3c9e81fb6229dbf60d5233

Added files:

Index: pkgsrc/sysutils/heirloom-doc/patches/patch-tar_tar.c
diff -u /dev/null pkgsrc/sysutils/heirloom-doc/patches/patch-tar_tar.c:1.1
--- /dev/null   Thu May 23 21:48:53 2024
+++ pkgsrc/sysutils/heirloom-doc/patches/patch-tar_tar.c        Thu May 23 21:48:53 2024
@@ -0,0 +1,21 @@
+$NetBSD: patch-tar_tar.c,v 1.1 2024/05/23 21:48:53 cheusov Exp $
+
+--- tar/tar.c.orig     2007-04-14 13:48:55.000000000 +0000
++++ tar/tar.c
+@@ -94,13 +94,13 @@ static const char sccsid[] USED = "@(#)t
+ #include <sys/st01.h>
+ #endif        /* SVR4.2MP */
+ 
+-#ifdef        _AIX
++#if defined(_AIX) || defined(__linux__)
+ #include <sys/sysmacros.h>
+ #endif
+ 
+-#ifndef       major
++#ifdef __sun
+ #include <sys/mkdev.h>
+-#endif        /* !major */
++#endif        /* __sun */
+ 
+ #include <getdir.h>
+ #include <asciitype.h>



Home | Main Index | Thread Index | Old Index