pkgsrc-Changes archive

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

CVS commit: pkgsrc/sysutils/nnn



Module Name:    pkgsrc
Committed By:   sjmulder
Date:           Tue Jun 23 23:32:30 UTC 2020

Modified Files:
        pkgsrc/sysutils/nnn: Makefile distinfo
        pkgsrc/sysutils/nnn/patches: patch-src_nnn.c

Log Message:
sysutils/nnn: Fix build on NetBSD 9/arm64

GCC doesn't expand alloca() to __builtin_alloca() in standards mode
(-std=...) so explicitly define it as such to fix breakage on platforms
that don't seem to supply it otherwise, like NetBSD 9 on arm64.

Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 pkgsrc/sysutils/nnn/Makefile
cvs rdiff -u -r1.14 -r1.15 pkgsrc/sysutils/nnn/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/nnn/patches/patch-src_nnn.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/nnn/Makefile
diff -u pkgsrc/sysutils/nnn/Makefile:1.19 pkgsrc/sysutils/nnn/Makefile:1.20
--- pkgsrc/sysutils/nnn/Makefile:1.19   Tue Jun  2 11:07:41 2020
+++ pkgsrc/sysutils/nnn/Makefile        Tue Jun 23 23:32:30 2020
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.19 2020/06/02 11:07:41 sjmulder Exp $
+# $NetBSD: Makefile,v 1.20 2020/06/23 23:32:30 sjmulder Exp $
 
 DISTNAME=      nnn-3.2
-PKGREVISION=   1
+PKGREVISION=   2
 CATEGORIES=    sysutils
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=jarun/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}

Index: pkgsrc/sysutils/nnn/distinfo
diff -u pkgsrc/sysutils/nnn/distinfo:1.14 pkgsrc/sysutils/nnn/distinfo:1.15
--- pkgsrc/sysutils/nnn/distinfo:1.14   Tue Jun  2 11:07:41 2020
+++ pkgsrc/sysutils/nnn/distinfo        Tue Jun 23 23:32:30 2020
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.14 2020/06/02 11:07:41 sjmulder Exp $
+$NetBSD: distinfo,v 1.15 2020/06/23 23:32:30 sjmulder Exp $
 
 SHA1 (nnn-3.2.tar.gz) = 074b20d4a9da51a673e9a43e6ccc1bd8d0b9b425
 RMD160 (nnn-3.2.tar.gz) = 3a0bc30d30da0cb468390f8a583489f0725f1a6e
 SHA512 (nnn-3.2.tar.gz) = 9cdc8d0d74162ddd4b90f69a4f558a25845732497ebdb129159fda658a799a949fe237013bf69a2d6a649433254ba2ed4c65f8f10cddd119f713c1d5518ea378
 Size (nnn-3.2.tar.gz) = 143122 bytes
-SHA1 (patch-src_nnn.c) = aee0cbbbbe7a9aa85d17ee8acc6c415422dc06e1
+SHA1 (patch-src_nnn.c) = a1ee2addb56d4e5fdab18dfe1dae492af0afe7fc

Index: pkgsrc/sysutils/nnn/patches/patch-src_nnn.c
diff -u pkgsrc/sysutils/nnn/patches/patch-src_nnn.c:1.1 pkgsrc/sysutils/nnn/patches/patch-src_nnn.c:1.2
--- pkgsrc/sysutils/nnn/patches/patch-src_nnn.c:1.1     Tue Jun  2 11:07:42 2020
+++ pkgsrc/sysutils/nnn/patches/patch-src_nnn.c Tue Jun 23 23:32:30 2020
@@ -1,13 +1,43 @@
-$NetBSD: patch-src_nnn.c,v 1.1 2020/06/02 11:07:42 sjmulder Exp $
+$NetBSD: patch-src_nnn.c,v 1.2 2020/06/23 23:32:30 sjmulder Exp $
 
-Wrap FILE_MIME_OPTS use in check, since it's not defined (at the top of
-nnn.c) for Illumos which doesn't have such an option.
+ - Always use builtin alloca() on GCC to fix NetBSD/arm64 build.
 
-https://github.com/jarun/nnn/pull/622
+   https://github.com/jarun/nnn/pull/666
 
---- src/nnn.c.orig     2020-05-26 00:08:38.000000000 +0000
+ - Wrap FILE_MIME_OPTS use in check, since it's not defined (at the top
+   of nnn.c) for Illumos which doesn't have such an option.
+
+   https://github.com/jarun/nnn/pull/622
+
+--- src/nnn.c.orig     2020-06-23 22:41:07.232929706 +0000
 +++ src/nnn.c
-@@ -3689,9 +3689,11 @@ static bool show_stats(const char *fpath
+@@ -90,9 +90,6 @@
+ #include <signal.h>
+ #include <stdarg.h>
+ #include <stdlib.h>
+-#ifdef __sun
+-#include <alloca.h>
+-#endif
+ #include <string.h>
+ #include <strings.h>
+ #include <time.h>
+@@ -103,6 +100,15 @@
+ #include <ftw.h>
+ #include <wchar.h>
+ 
++#if !defined(alloca) && defined(__GNUC__)
++/*
++ * GCC doesn't expand alloca() to __builtin_alloca() in standards mode
++ * (-std=...) and not all standard libraries do or supply it, e.g.
++ * NetBSD/arm64 so explicitly use the builtin.
++ */
++#define alloca(size) __builtin_alloca(size)
++#endif
++
+ #include "nnn.h"
+ #include "dbg.h"
+ 
+@@ -3689,9 +3695,11 @@ static bool show_stats(const char *fpath
                        }
                        fprintf(fp, " %s\n  ", begin);
  



Home | Main Index | Thread Index | Old Index