mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 04:00:05 +02:00
R, bump version (#11644)
This commit is contained in:
24
dev-lang/r/patches/r-4.4.2.patchset
Normal file
24
dev-lang/r/patches/r-4.4.2.patchset
Normal file
@@ -0,0 +1,24 @@
|
||||
From ac3e0f366781c1ee7e0eee627024e0e5311f49b3 Mon Sep 17 00:00:00 2001
|
||||
From: Schrijvers Luc <begasus@gmail.com>
|
||||
Date: Sun, 12 Jan 2025 08:57:01 +0100
|
||||
Subject: Add #include <sys/select.h> for missing fd_set
|
||||
|
||||
|
||||
diff --git a/src/include/R_ext/eventloop.h b/src/include/R_ext/eventloop.h
|
||||
index 951b422..a636579 100644
|
||||
--- a/src/include/R_ext/eventloop.h
|
||||
+++ b/src/include/R_ext/eventloop.h
|
||||
@@ -43,6 +43,10 @@
|
||||
/* NOTE: At one time needed on FreeBSD so that fd_set is defined. */
|
||||
#include <sys/types.h>
|
||||
|
||||
+#ifdef __HAIKU__
|
||||
+#include <sys/select.h>
|
||||
+#endif
|
||||
+
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
--
|
||||
2.45.2
|
||||
|
||||
@@ -15,7 +15,7 @@ COPYRIGHT="2024 The R Foundation for Statistical Computing"
|
||||
LICENSE="GNU GPL v2"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://cloud.r-project.org/src/base/R-4/R-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="b4cb675deaaeb7299d3b265d218cde43f192951ce5b89b7bb1a5148a36b2d94d"
|
||||
CHECKSUM_SHA256="1578cd603e8d866b58743e49d8bf99c569e81079b6a60cf33cdf7bdffeb817ec"
|
||||
SOURCE_DIR="R-$portVersion"
|
||||
|
||||
ARCHITECTURES="all !x86_gcc2"
|
||||
@@ -89,7 +89,7 @@ BUILD_REQUIRES="
|
||||
devel:libpng16$secondaryArchSuffix
|
||||
devel:libquadmath$secondaryArchSuffix
|
||||
devel:libreadline$secondaryArchSuffix
|
||||
devel:libssl$secondaryArchSuffix
|
||||
devel:libssl$secondaryArchSuffix >= 3
|
||||
# devel:libtclstub8.6
|
||||
devel:libtiff$secondaryArchSuffix
|
||||
devel:libX11$secondaryArchSuffix
|
||||
@@ -155,5 +155,5 @@ INSTALL()
|
||||
|
||||
TEST()
|
||||
{
|
||||
make check
|
||||
make VERBOSE=1 check
|
||||
}
|
||||
Reference in New Issue
Block a user