Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,4 +1,6 @@
$NetBSD: patch-af,v 1.7 2015/03/07 22:40:48 rodent Exp $
$NetBSD: patch-af,v 1.8 2016/06/11 12:54:24 rillig Exp $
Fixes PRIdMAX and PRIuMAX on AIX < 5.1.
--- builtins/printf.def.orig 2014-01-03 15:35:33.000000000 +0000
+++ builtins/printf.def

View File

@@ -1,4 +1,6 @@
$NetBSD: patch-ag,v 1.3 2015/03/07 22:40:48 rodent Exp $
$NetBSD: patch-ag,v 1.4 2016/06/11 12:54:24 rillig Exp $
Use the definition of errno from <errno.h>.
--- builtins/psize.c.orig 2008-08-14 19:56:53.000000000 +0000
+++ builtins/psize.c

View File

@@ -1,7 +1,8 @@
$NetBSD: patch-builtins_ulimit.def,v 1.2 2015/03/07 22:40:48 rodent Exp $
$NetBSD: patch-builtins_ulimit.def,v 1.3 2016/06/11 12:54:24 rillig Exp $
Add support for the "number of threads" ulimit that appeared
in NetBSD 6.99.x.
--- builtins/ulimit.def.orig 2013-11-01 01:46:06.000000000 +0000
+++ builtins/ulimit.def
@@ -143,6 +143,10 @@ extern int errno;

View File

@@ -1,11 +1,11 @@
$NetBSD: patch-lib_readline_colors.c,v 1.1 2014/07/17 12:49:15 ryoon Exp $
$NetBSD: patch-lib_readline_colors.c,v 1.2 2016/09/19 09:06:03 wiz Exp $
* SCO OpenServer 5.0.7/3.2 has no S_ISSOCK.
--- lib/readline/colors.c.orig 2013-03-20 15:19:08.000000000 +0000
--- lib/readline/colors.c.orig 2016-01-25 15:38:00.000000000 +0000
+++ lib/readline/colors.c
@@ -187,8 +187,10 @@ _rl_print_color_indicator (char *f)
? C_ORPHAN : C_LINK);
@@ -215,8 +215,10 @@ _rl_print_color_indicator (const char *f
colored_filetype = C_LINK;
else if (S_ISFIFO (mode))
colored_filetype = C_FIFO;
+#if defined(S_ISSOCK)

View File

@@ -1,10 +1,10 @@
$NetBSD: patch-variables.c,v 1.3 2015/03/07 22:40:48 rodent Exp $
$NetBSD: patch-variables.c,v 1.4 2016/09/19 09:06:03 wiz Exp $
Only read functions from environment if flag is set.
--- variables.c.orig 2015-03-07 22:36:12.000000000 +0000
--- variables.c.orig 2016-06-15 20:05:52.000000000 +0000
+++ variables.c
@@ -110,6 +110,7 @@ extern time_t shell_start_time;
@@ -115,6 +115,7 @@ extern time_t shell_start_time;
extern int assigning_in_environment;
extern int executing_builtin;
extern int funcnest_max;
@@ -12,8 +12,8 @@ Only read functions from environment if flag is set.
#if defined (READLINE)
extern int no_line_editing;
@@ -354,7 +355,7 @@ initialize_shell_variables (env, privmod
@@ -365,7 +366,7 @@ initialize_shell_variables (env, privmod
#if defined (FUNCTION_IMPORT)
/* If exported function, define it now. Don't import functions from
the environment in privileged mode. */
- if (privmode == 0 && read_but_dont_execute == 0 &&