Index: head/sysutils/busybox/files/patch-shell_hush.c =================================================================== --- head/sysutils/busybox/files/patch-shell_hush.c (nonexistent) +++ head/sysutils/busybox/files/patch-shell_hush.c (revision 560842) @@ -0,0 +1,30 @@ +--- shell/hush.c.orig 2021-01-01 13:30:58 UTC ++++ shell/hush.c +@@ -348,7 +348,7 @@ + #if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \ + || defined(__APPLE__) \ + ) +-# include /* for malloc_trim */ ++# include /* for malloc_trim */ + #endif + #include + /* #include */ +@@ -2091,6 +2091,18 @@ static void hush_exit(int exitcode) + #endif + } + ++#if defined(__FreeBSD__) && __FreeBSD_version < 1202000 ++int ++sigisemptyset(const sigset_t *set) ++{ ++ int i; ++ ++ for (i = 0; i < _SIG_WORDS; i++) ++ if (set->__bits[i] != 0) ++ return (0); ++ return (1); ++} ++#endif + + //TODO: return a mask of ALL handled sigs? + static int check_and_run_traps(void) Property changes on: head/sysutils/busybox/files/patch-shell_hush.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property