summaryrefslogtreecommitdiff
path: root/dev-lang/R/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-23 20:00:08 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-23 20:00:08 +0000
commitedb8ee6f86e56d25f82a4f088a4504c903aede08 (patch)
tree3670c3d3d18146edbe5ef22d5623329c49fe1806 /dev-lang/R/files
parent1ffbeeb1643e9197d8a58c65a1d76bbaf3656292 (diff)
gentoo auto-resync : 23:12:2022 - 20:00:08
Diffstat (limited to 'dev-lang/R/files')
-rw-r--r--dev-lang/R/files/R-4.2.2-isspace-without-readline.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-lang/R/files/R-4.2.2-isspace-without-readline.patch b/dev-lang/R/files/R-4.2.2-isspace-without-readline.patch
new file mode 100644
index 000000000000..0b32bef1352b
--- /dev/null
+++ b/dev-lang/R/files/R-4.2.2-isspace-without-readline.patch
@@ -0,0 +1,22 @@
+From 6e36141598b78add7fb841480260b0a57ae79330 Mon Sep 17 00:00:00 2001
+From: smeyer <smeyer@00db46b3-68df-0310-9c12-caf00c1e9a41>
+Date: Wed, 26 Oct 2022 08:22:41 +0000
+Subject: [PATCH] avoid implicit declaration of 'isspace' --without-readline
+
+git-svn-id: https://svn.r-project.org/R/trunk@83178 00db46b3-68df-0310-9c12-caf00c1e9a41
+---
+ src/unix/sys-std.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/unix/sys-std.c b/src/unix/sys-std.c
+index 7b93d63884a..f95ff0cf7b3 100644
+--- a/src/unix/sys-std.c
++++ b/src/unix/sys-std.c
+@@ -1339,6 +1339,7 @@ Rstd_ShowFiles(int nfile, /* number of files */
+ */
+
+
++#include <ctype.h> /* for isspace */
+
+ int attribute_hidden Rstd_ChooseFile(int _new, char *buf, int len)
+ {