pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/audio/liblo
Module Name: pkgsrc
Committed By: nia
Date: Fri Dec 19 12:46:46 UTC 2025
Modified Files:
pkgsrc/audio/liblo: distinfo
Added Files:
pkgsrc/audio/liblo/patches: patch-src_server.c
Log Message:
liblo: Fix implicit function declarations.
Fix build with recent gcc.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/audio/liblo/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/audio/liblo/patches/patch-src_server.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/audio/liblo/distinfo
diff -u pkgsrc/audio/liblo/distinfo:1.6 pkgsrc/audio/liblo/distinfo:1.7
--- pkgsrc/audio/liblo/distinfo:1.6 Tue Oct 26 09:59:06 2021
+++ pkgsrc/audio/liblo/distinfo Fri Dec 19 12:46:46 2025
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.6 2021/10/26 09:59:06 nia Exp $
+$NetBSD: distinfo,v 1.7 2025/12/19 12:46:46 nia Exp $
BLAKE2s (liblo-0.31.tar.gz) = c314f882c6f880b174a27244d4cf79c43c0d8d1772ca85cb9238620fb1468dd7
SHA512 (liblo-0.31.tar.gz) = 97f9561296c2e53f92db0cfee625687208b490f8bc229b6cffe88b43ca2a8da1ed3217aaa2151245ea483e54ad6c5e92b9cf10a20661766fa6d3bedb5a8cdd01
Size (liblo-0.31.tar.gz) = 643928 bytes
+SHA1 (patch-src_server.c) = 8f96379976dd1cd85890d668cb100e8959d4902b
Added files:
Index: pkgsrc/audio/liblo/patches/patch-src_server.c
diff -u /dev/null pkgsrc/audio/liblo/patches/patch-src_server.c:1.1
--- /dev/null Fri Dec 19 12:46:46 2025
+++ pkgsrc/audio/liblo/patches/patch-src_server.c Fri Dec 19 12:46:46 2025
@@ -0,0 +1,25 @@
+$NetBSD: patch-src_server.c,v 1.1 2025/12/19 12:46:46 nia Exp $
+
+Fix implicit function declarations.
+
+--- src/server.c.orig 2025-12-19 12:34:19.065063294 +0000
++++ src/server.c
+@@ -22,6 +22,7 @@
+ #include <stdlib.h>
+ #include <stdio.h>
+ #include <string.h>
++#include <strings.h>
+ #include <ctype.h>
+ #include <errno.h>
+ #include <float.h>
+@@ -59,6 +60,10 @@
+ #ifdef HAVE_GETIFADDRS
+ #include <ifaddrs.h>
+ #endif
++#endif
++
++#if defined(__linux__) || defined(__sun)
++#include <alloca.h>
+ #endif
+
+ #if defined(WIN32) || defined(_MSC_VER)
Home |
Main Index |
Thread Index |
Old Index