>>>> "Hrvoje" == Hrvoje Niksic
<hniksic(a)srce.hr> writes:
Hrvoje> TIFF is still getting misdetected for me. Has Martin's patch been
Hrvoje> applied?
--- configure.in.old
+++ configure.in
@@ -2716,8 +2726,8 @@
fi
dnl autodetect TIFF
- test -z "$with_tiff" && { AC_CHECK_HEADER(tiffio.h,
,with_tiff=no) }
- test -z "$with_tiff" && { AC_CHECK_LIB(tiff,
TIFFReadScanline,[:],with_tiff=no) }
+ test -z "$with_tiff" && { AC_CHECK_HEADER(tiffio.h,
,with_tiff=no) }
+ test -z "$with_tiff" && { AC_CHECK_LIB(tiff,
TIFFClientOpen,[:],with_tiff=no) }
test -z "$with_tiff" && with_tiff=yes
if test "$with_tiff" = "yes"; then
AC_DEFINE(HAVE_TIFF)
I got confused over whether this was the correct fix, and so it didn't
get submitted officially. It's still in my own version of
configure.in, and works for me.
Hrvoje, please test and second this patch.
Martin