Date: Thu, 17 Oct 2019 08:31:08 +0000 (UTC) From: Oleksii Samorukov <samm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r514650 - in head/sysutils/busybox: . files Message-ID: <201910170831.x9H8V8PQ007597@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910170831.x9H8V8PQ007597>