pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/archivers/lha
Module Name: pkgsrc
Committed By: gutteridge
Date: Fri Sep 27 15:13:25 UTC 2024
Modified Files:
pkgsrc/archivers/lha: distinfo
Added Files:
pkgsrc/archivers/lha/patches: patch-src_header.c
Log Message:
lha: fix builds with GCC 14, where implicit ints are errors
Addresses PR pkg/58701 from Marlon Beijer.
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/archivers/lha/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/archivers/lha/patches/patch-src_header.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/archivers/lha/distinfo
diff -u pkgsrc/archivers/lha/distinfo:1.16 pkgsrc/archivers/lha/distinfo:1.17
--- pkgsrc/archivers/lha/distinfo:1.16 Sat Jan 1 19:02:34 2022
+++ pkgsrc/archivers/lha/distinfo Fri Sep 27 15:13:25 2024
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.16 2022/01/01 19:02:34 rhialto Exp $
+$NetBSD: distinfo,v 1.17 2024/09/27 15:13:25 gutteridge Exp $
BLAKE2s (lha-1.14i-ac20211125-72b97b87a131e88cc95b9068d521f3ecb56af9db.tar.gz) = f8ee8e52520a0f0fa7fde0b381c7a9370e56853c4422c7b0dd75fe7a8186048f
SHA512 (lha-1.14i-ac20211125-72b97b87a131e88cc95b9068d521f3ecb56af9db.tar.gz) =
3b3d0f3bc83504f9bf6ed32c76f9164f63847aacb0de25deba8034347f5a00de4f41a20b3b1ceceb2a42942c102e139da124d1a287b0c7909781b1589e38f49e
Size (lha-1.14i-ac20211125-72b97b87a131e88cc95b9068d521f3ecb56af9db.tar.gz) = 229462 bytes
+SHA1 (patch-src_header.c) = abd00a433d52cf87c57427495968472c6a096b71
Added files:
Index: pkgsrc/archivers/lha/patches/patch-src_header.c
diff -u /dev/null pkgsrc/archivers/lha/patches/patch-src_header.c:1.1
--- /dev/null Fri Sep 27 15:13:25 2024
+++ pkgsrc/archivers/lha/patches/patch-src_header.c Fri Sep 27 15:13:25 2024
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_header.c,v 1.1 2024/09/27 15:13:25 gutteridge Exp $
+
+Fix builds with GCC 14, which treats implicit ints as an error.
+
+--- src/header.c.orig 2021-11-25 09:41:46.000000000 +0000
++++ src/header.c
+@@ -68,7 +68,7 @@ calc_sum(p, len)
+ }
+
+ static void
+-_skip_bytes(len)
++_skip_bytes(int len)
+ {
+ if (len < 0) {
+ error("Invalid header: %d", len);
Home |
Main Index |
Thread Index |
Old Index