1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Package: hylafax
Subject: make build recognize libtiff 4.1
Author: Giuseppe Sacco <eppesuig at debian.org>
Forwarded: no
Last-Update: 2020-01-13
This patch changes the shell expansion patter in order to accept libtiff
4.1 using the same parameters as libtiff 4.0.
It also changes the URL for libtiff web site
---
diff -urN s827/configure s830/configure
===================================================================
--- s827/configure
+++ s830/configure
@@ -2572,7 +2572,7 @@ EOF
tiff_offset_t="uint32"
tiff_bytecount_t="uint32"
;;
- 4.[0]) tiff_runlen_t="uint32"
+ 4.[01]) tiff_runlen_t="uint32"
tiff_offset_t="uint64"
tiff_bytecount_t="uint64"
echo '#define TIFFHeader TIFFHeaderClassic'
@@ -2617,9 +2617,9 @@ EOF
Incompatible TIFF Library.
HylaFAX ${VERSION} requires TIFF software distribution versions 3.4 through
-3.9. If you do not have up to date TIFF software on your system
+4.1. If you do not have up to date TIFF software on your system
then you can retrieve it from the location where you obtained this software.
-The Home Page for version 3.5 and later is http://www.remotesensing.org/libtiff/
+The Home Page for version 4.1 and later is https://libtiff.gitlab.io/libtiff/
EOF
boom
return 1
|