Displaying 2 results from an estimated 2 matches for "use_libtiff".
2019 Feb 25
1
Is libtiff >= 4.0.0 now required by R for TIFF support?
...it was just
$ grep -i tiff _log_3.3.0
Capabilities skipped: TIFF, ICU
(This has been the output for all versions we've installed since 3.3.0.)
I looked at the configure script, and in 3.2.5, the tests for libtiff
starts like this (I've adjusted the indentation):
if test "${use_libtiff}" = yes; then
for ac_header in tiffio.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default"
if test "x$ac_cv_header_tiffio_h" = xyes; then :
cat >>confdefs.h <<_ACEOF...
2012 Aug 11
2
compile fails with x86_64-alpine-linux-uclibc-gcc
...00
@@ -396,6 +396,10 @@
[AS_HELP_STRING([--with-jpeglib],[use jpeglib library (if available) @<:@yes@:>@])],
[R_ARG_USE(jpeglib)],
[use_jpeglib=yes])
+AC_ARG_WITH([libtiff],
+[AS_HELP_STRING([--with-libtiff],[use libtiff library (if available) @<:@yes@:>@])],
+[R_ARG_USE(libtiff)],
+[use_libtiff=yes])
AC_ARG_WITH([system-zlib],
[AS_HELP_STRING([--with-system-zlib],[use system zlib library (if available) @<:@no@:>@])],
[R_ARG_USE_SYSTEM(zlib)],
--- m4/R.m4.orig 2012-01-02 17:05:22.000000000 +0000
+++ m4/R.m4 2012-01-02 17:08:08.000000000 +0000
@@ -2005,16 +2005,18 @@
[Defin...