pkgsrc-Changes archive

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

CVS commit: pkgsrc/comms/minicom



Module Name:    pkgsrc
Committed By:   nia
Date:           Sat Dec 20 12:15:46 UTC 2025

Modified Files:
        pkgsrc/comms/minicom: distinfo
Added Files:
        pkgsrc/comms/minicom/patches: patch-src_dial.c

Log Message:
minicom: Fix implicit declaration of alloca(3).


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 pkgsrc/comms/minicom/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/comms/minicom/patches/patch-src_dial.c

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

Modified files:

Index: pkgsrc/comms/minicom/distinfo
diff -u pkgsrc/comms/minicom/distinfo:1.21 pkgsrc/comms/minicom/distinfo:1.22
--- pkgsrc/comms/minicom/distinfo:1.21  Tue Oct 26 10:06:02 2021
+++ pkgsrc/comms/minicom/distinfo       Sat Dec 20 12:15:46 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.21 2021/10/26 10:06:02 nia Exp $
+$NetBSD: distinfo,v 1.22 2025/12/20 12:15:46 nia Exp $
 
 BLAKE2s (minicom-2.7.1.tar.gz) = 29cdcea2f22a02900abc2d13f11113486fea4b6b1a396eff3b9bf17febb19e89
 SHA512 (minicom-2.7.1.tar.gz) = b429b32d187c3ee915c5074a0d0f08b7e3951cb8528ecbdd889837ff301662c16740ad77bd2bf3baf759c0a84e779a8dc8fd888a4260a0ace15ebc4c2f697c82
@@ -8,4 +8,5 @@ SHA1 (patch-ad) = 407bf7e19ce4ca1aa8580f
 SHA1 (patch-ae) = ea2fb58212de7caaaed4c0817290ca3612212b6c
 SHA1 (patch-ag) = 5f635b67e2e48d13c9df7f3ed4fdca83a1c7f7ef
 SHA1 (patch-ah) = ae6048f6a8e81134a459aaf21527e944c68ae07f
+SHA1 (patch-src_dial.c) = 4b0e057530ddcd6ff06d93f292f60f979c2fda62
 SHA1 (patch-src_script.c) = 239d4e1b17429dfa28c6445a0ab3468f6d6804b8

Added files:

Index: pkgsrc/comms/minicom/patches/patch-src_dial.c
diff -u /dev/null pkgsrc/comms/minicom/patches/patch-src_dial.c:1.1
--- /dev/null   Sat Dec 20 12:15:46 2025
+++ pkgsrc/comms/minicom/patches/patch-src_dial.c       Sat Dec 20 12:15:46 2025
@@ -0,0 +1,20 @@
+$NetBSD: patch-src_dial.c,v 1.1 2025/12/20 12:15:46 nia Exp $
+
+Fix implicit declaration of alloca(3).
+
+--- src/dial.c.orig    2025-12-20 11:50:36.322648757 +0000
++++ src/dial.c
+@@ -31,8 +31,13 @@
+ #endif
+ 
+ #include <stdint.h>
++#include <stdlib.h>
+ #include <limits.h>
+ #include <arpa/inet.h>
++
++#if defined(__linux__) || defined(__sun)
++#include <alloca.h>
++#endif
+ 
+ #include "port.h"
+ #include "minicom.h"



Home | Main Index | Thread Index | Old Index