View | Details | Raw Unified | Return to bug 270357 | Differences between
and this patch

Collapse All | Expand All

(-)b/math/libRmath/files/patch-configure (+25 lines)
Added Link Here
1
--- configure.orig	2022-10-23 22:16:12 UTC
2
+++ configure
3
@@ -47584,8 +47584,8 @@ if test "x${have_libcurl}" = "xyes"; then
4
 done
5
 
6
 if test "x${have_libcurl}" = "xyes"; then
7
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if libcurl is version 7 and >= 7.28.0" >&5
8
-printf %s "checking if libcurl is version 7 and >= 7.28.0... " >&6; }
9
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if libcurl is >= 7.28.0" >&5
10
+printf %s "checking if libcurl is >= 7.28.0... " >&6; }
11
 if test ${r_cv_have_curl728+y}
12
 then :
13
   printf %s "(cached) " >&6
14
@@ -47602,8 +47602,10 @@ int main()
15
 int main()
16
 {
17
 #ifdef LIBCURL_VERSION_MAJOR
18
-#if LIBCURL_VERSION_MAJOR > 7
19
+#if LIBCURL_VERSION_MAJOR > 8
20
   exit(1);
21
+#elif LIBCURL_VERSION_MAJOR == 8
22
+  exit(0);
23
 #elif LIBCURL_VERSION_MAJOR == 7 && LIBCURL_VERSION_MINOR >= 28
24
   exit(0);
25
 #else

Return to bug 270357