Ticket #67177: 84049.patch
File 84049.patch, 2.8 KB (added by ryandesign (Ryan Carsten Schmidt), 20 months ago) |
---|
-
trunk/configure
51680 51680 done 51681 51681 51682 51682 if test "x${have_libcurl}" = "xyes"; then 51683 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if libcurl is version 7 and>= 7.28.0" >&551684 printf %s "checking if libcurl is version 7 and>= 7.28.0... " >&6; }51683 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if libcurl is >= 7.28.0" >&5 51684 printf %s "checking if libcurl is >= 7.28.0... " >&6; } 51685 51685 if test ${r_cv_have_curl728+y} 51686 51686 then : 51687 51687 printf %s "(cached) " >&6 … … 51699 51699 { 51700 51700 #ifdef LIBCURL_VERSION_MAJOR 51701 51701 #if LIBCURL_VERSION_MAJOR > 7 51702 exit( 1);51702 exit(0); 51703 51703 #elif LIBCURL_VERSION_MAJOR == 7 && LIBCURL_VERSION_MINOR >= 28 51704 51704 exit(0); 51705 51705 #else -
trunk/doc/manual/R-admin.texi
3344 3344 @c libcurl 7.28.0 was released in Oct 2012 3345 3345 @c libcurl 7.32.0 was released in Aug 2013 3346 3346 @c Ubuntu 14.04LTS has 7.35.0 RHEL/Centos 7 has 7.29.0 (we are told) 3347 Library @code{libcurl} (version 7.28.0 or later@footnote{but not a major 3348 version greater than 7 should there ever be one: the major version has 3349 been 7 since 2000.}) is required. Information on @code{libcurl} is 3350 found from the @command{curl-config} script: if that is missing or needs 3351 to be overridden@footnote{for example to specify static linking with a 3352 build which has both shared and static libraries.} there are macros to 3353 do so described in file @file{config.site}. 3347 Library @code{libcurl} (version 7.28.0 or later) is required. 3348 Information on @code{libcurl} is found from the @command{curl-config} 3349 script: if that is missing or needs to be overridden@footnote{for 3350 example to specify static linking with a build which has both shared and 3351 static libraries.} there are macros to do so described in file 3352 @file{config.site}. 3354 3353 3355 3354 A @command{tar} program is needed to unpack the sources and packages 3356 3355 (including the recommended packages). A version@footnote{Such as -
trunk/m4/R.m4
4620 4620 AC_CHECK_HEADERS(curl/curl.h, [have_libcurl=yes], [have_libcurl=no]) 4621 4621 4622 4622 if test "x${have_libcurl}" = "xyes"; then 4623 AC_CACHE_CHECK([if libcurl is version 7 and>= 7.28.0], [r_cv_have_curl728],4623 AC_CACHE_CHECK([if libcurl is >= 7.28.0], [r_cv_have_curl728], 4624 4624 [AC_RUN_IFELSE([AC_LANG_SOURCE([[ 4625 4625 #include <stdlib.h> 4626 4626 #include <curl/curl.h> … … 4628 4628 { 4629 4629 #ifdef LIBCURL_VERSION_MAJOR 4630 4630 #if LIBCURL_VERSION_MAJOR > 7 4631 exit( 1);4631 exit(0); 4632 4632 #elif LIBCURL_VERSION_MAJOR == 7 && LIBCURL_VERSION_MINOR >= 28 4633 4633 exit(0); 4634 4634 #else