Displaying 1 result from an estimated 1 matches for "tif_cppflags".
Did you mean:
def_cppflags
2019 Feb 25
1
Is libtiff >= 4.0.0 now required by R for TIFF support?
...en
mod=
## pkg-config support was introduced in libtiff 4.0.0
## I guess the module name might change in future, so
## program defensively here.
if "${PKGCONF}" --exists libtiff-4; then
mod=libtiff-4
fi
if test -n "${mod}"; then
save_CPPFLAGS=${CPPFLAGS}
TIF_CPPFLAGS=`"${PKGCONF}" --cflags ${mod}`
CPPFLAGS="${CPPFLAGS} ${TIF_CPPFLAGS}"
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...