pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/bglibs
Module Name: pkgsrc
Committed By: nia
Date: Sat Dec 20 12:29:24 UTC 2025
Modified Files:
pkgsrc/devel/bglibs: distinfo
Added Files:
pkgsrc/devel/bglibs/patches: patch-net_bindu.c patch-net_connectu.c
patch-str_sort.c
Log Message:
bglibs: Fix implicit function declarations.
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 pkgsrc/devel/bglibs/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/bglibs/patches/patch-net_bindu.c \
pkgsrc/devel/bglibs/patches/patch-net_connectu.c \
pkgsrc/devel/bglibs/patches/patch-str_sort.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/bglibs/distinfo
diff -u pkgsrc/devel/bglibs/distinfo:1.32 pkgsrc/devel/bglibs/distinfo:1.33
--- pkgsrc/devel/bglibs/distinfo:1.32 Tue Oct 26 10:14:19 2021
+++ pkgsrc/devel/bglibs/distinfo Sat Dec 20 12:29:23 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.32 2021/10/26 10:14:19 nia Exp $
+$NetBSD: distinfo,v 1.33 2025/12/20 12:29:23 nia Exp $
BLAKE2s (bglibs-2.04.tar.gz) = 3949006d13b16feaf6d554825547e968b01d2ddb423c57b239410fc1594cfcee
SHA512 (bglibs-2.04.tar.gz) = 094268cad7d4bacf65c0dd3d42fde2e6bac34da0fd6193b1c8202c018e752b3ef80a86c38e687467fb3a4e97130126fe74ee4a86063e4b25ee291de573984a6f
@@ -11,3 +11,6 @@ SHA1 (patch-crypto_hmac-sha384.c) = 1a63
SHA1 (patch-crypto_hmac-sha512.c) = 664430b6c21a3044be713af3770ac672212953d7
SHA1 (patch-crypto_hmac.c) = 7699db75cdc269fb2fded70ed501bcef635691f6
SHA1 (patch-include_hmac.h) = e0b113a73dfaf78327be5bf8a7001efd8896a8da
+SHA1 (patch-net_bindu.c) = 428d6ed9acb99a200f060d428b60df49d87007c3
+SHA1 (patch-net_connectu.c) = c9773ddf09beccc2ca899604c3f27341e8874354
+SHA1 (patch-str_sort.c) = ac6a0786d112ea26d4a98493d243a3b993efefef
Added files:
Index: pkgsrc/devel/bglibs/patches/patch-net_bindu.c
diff -u /dev/null pkgsrc/devel/bglibs/patches/patch-net_bindu.c:1.1
--- /dev/null Sat Dec 20 12:29:24 2025
+++ pkgsrc/devel/bglibs/patches/patch-net_bindu.c Sat Dec 20 12:29:23 2025
@@ -0,0 +1,14 @@
+$NetBSD: patch-net_bindu.c,v 1.1 2025/12/20 12:29:23 nia Exp $
+
+Include missing header for strcpy(3).
+
+--- net/bindu.c.orig 2018-02-23 16:24:55.000000000 +0000
++++ net/bindu.c
+@@ -21,6 +21,7 @@
+ #include <sys/socket.h>
+ #include <sys/un.h>
+ #include <unistd.h>
++#include <string.h>
+ #include "socket.h"
+
+ /** Bind a UNIX domain address (path) to a socket. */
Index: pkgsrc/devel/bglibs/patches/patch-net_connectu.c
diff -u /dev/null pkgsrc/devel/bglibs/patches/patch-net_connectu.c:1.1
--- /dev/null Sat Dec 20 12:29:24 2025
+++ pkgsrc/devel/bglibs/patches/patch-net_connectu.c Sat Dec 20 12:29:24 2025
@@ -0,0 +1,14 @@
+$NetBSD: patch-net_connectu.c,v 1.1 2025/12/20 12:29:24 nia Exp $
+
+Include missing header for strcpy(3).
+
+--- net/connectu.c.orig 2025-12-20 12:05:26.502790967 +0000
++++ net/connectu.c
+@@ -21,6 +21,7 @@
+ #include <sys/socket.h>
+ #include <sys/un.h>
+ #include <unistd.h>
++#include <string.h>
+ #include "socket.h"
+
+ /** Make an UNIX domain connection. */
Index: pkgsrc/devel/bglibs/patches/patch-str_sort.c
diff -u /dev/null pkgsrc/devel/bglibs/patches/patch-str_sort.c:1.1
--- /dev/null Sat Dec 20 12:29:24 2025
+++ pkgsrc/devel/bglibs/patches/patch-str_sort.c Sat Dec 20 12:29:24 2025
@@ -0,0 +1,16 @@
+$NetBSD: patch-str_sort.c,v 1.1 2025/12/20 12:29:24 nia Exp $
+
+Fix implicit declaration of alloca(3).
+
+--- str/sort.c.orig 2025-12-20 12:19:51.760569287 +0000
++++ str/sort.c
+@@ -15,6 +15,9 @@
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
++#if defined(__linux__) || defined(__sun)
++#include <alloca.h>
++#endif
+ #include <stdlib.h>
+ #include <string.h>
+ #include "str.h"
Home |
Main Index |
Thread Index |
Old Index