svn commit: r514650 - in head/sysutils/busybox: . files
Oleksii Samorukov
samm at FreeBSD.org
Thu Oct 17 08:31:08 UTC 2019
Author: samm
Date: Thu Oct 17 08:31:07 2019
New Revision: 514650
URL: https://svnweb.freebsd.org/changeset/ports/514650
Log:
sysutils/busybox: fix broken build
Approved by: araujo (mentor)
Differential Revision: https://reviews.freebsd.org/D22066
Added:
head/sysutils/busybox/files/patch-shell_shell__common.c (contents, props changed)
Modified:
head/sysutils/busybox/Makefile
Modified: head/sysutils/busybox/Makefile
==============================================================================
--- head/sysutils/busybox/Makefile Thu Oct 17 08:07:27 2019 (r514649)
+++ head/sysutils/busybox/Makefile Thu Oct 17 08:31:07 2019 (r514650)
@@ -3,6 +3,7 @@
PORTNAME= busybox
PORTVERSION= 1.31.0
+PORTREVISION= 1
CATEGORIES= sysutils misc shells
MASTER_SITES= https://busybox.net/downloads/
Added: head/sysutils/busybox/files/patch-shell_shell__common.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/busybox/files/patch-shell_shell__common.c Thu Oct 17 08:31:07 2019 (r514650)
@@ -0,0 +1,12 @@
+--- shell/shell_common.c.orig 2019-06-10 09:09:31 UTC
++++ shell/shell_common.c
+@@ -328,7 +328,9 @@ struct limits {
+ static const struct limits limits_tbl[] = {
+ { RLIMIT_CORE, 9, "core file size (blocks)" }, // -c
+ { RLIMIT_DATA, 10, "data seg size (kb)" }, // -d
++#ifdef RLIMIT_NICE
+ { RLIMIT_NICE, 0, "scheduling priority" }, // -e
++#endif
+ { RLIMIT_FSIZE, 9, "file size (blocks)" }, // -f
+ #define LIMIT_F_IDX 3
+ #ifdef RLIMIT_SIGPENDING
More information about the svn-ports-all
mailing list