diff options
author | gutteridge <gutteridge@pkgsrc.org> | 2021-02-28 22:16:52 +0000 |
---|---|---|
committer | gutteridge <gutteridge@pkgsrc.org> | 2021-02-28 22:16:52 +0000 |
commit | b35704328202338c478377914593b149c77347aa (patch) | |
tree | 0d8b5d235ae1208d288041a69b6a5fdd1aa510d3 | |
parent | 017137f85fe27c0dc3e10b6c75784b582cba65e3 (diff) | |
download | pkgsrc-b35704328202338c478377914593b149c77347aa.tar.gz |
hylafax: fix builds with tiff 4.2
-rw-r--r-- | comms/hylafax/distinfo | 4 | ||||
-rw-r--r-- | comms/hylafax/patches/patch-ae | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/comms/hylafax/distinfo b/comms/hylafax/distinfo index 8b42de65f7f..586829a5155 100644 --- a/comms/hylafax/distinfo +++ b/comms/hylafax/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.29 2020/05/14 19:17:45 joerg Exp $ +$NetBSD: distinfo,v 1.30 2021/02/28 22:16:52 gutteridge Exp $ SHA1 (hylafax-6.0.6.tar.gz) = 8d8cc9a5f242ef83d7bc6f5cd200fec1351b280e RMD160 (hylafax-6.0.6.tar.gz) = 1f6e3022fe9886f2cde9fb406277d5496ee24f1c @@ -8,7 +8,7 @@ SHA1 (patch-aa) = 54f34633757a4925084d9e7e4c1e743bca48e4ba SHA1 (patch-ab) = 5ee930814178223fa66dd308f365ff400559fd1d SHA1 (patch-ac) = b2051ac2e43d0635797043605d96f128e535c976 SHA1 (patch-ad) = a7e361980c94a025be0b326c1cf694cce3cbff72 -SHA1 (patch-ae) = 0c54469c43434590f00372b71af31eb526c79be6 +SHA1 (patch-ae) = ae094450e3c55f65992cea06a390f4971c49cb55 SHA1 (patch-af) = f1dd817fcd086bfdd354351dc0b92027250edcba SHA1 (patch-ag) = 52024e0184e2607c6cfb2c6c19c9f31b3c37ec95 SHA1 (patch-ah) = 8558a0f9d970ce1cddbeb76fc87a1c450bd0941d diff --git a/comms/hylafax/patches/patch-ae b/comms/hylafax/patches/patch-ae index 9f57968312c..e031bc0da51 100644 --- a/comms/hylafax/patches/patch-ae +++ b/comms/hylafax/patches/patch-ae @@ -1,4 +1,4 @@ -$NetBSD: patch-ae,v 1.20 2020/05/14 19:17:45 joerg Exp $ +$NetBSD: patch-ae,v 1.21 2021/02/28 22:16:52 gutteridge Exp $ * Customize paths. * Configure for pkgsrc. @@ -6,6 +6,7 @@ $NetBSD: patch-ae,v 1.20 2020/05/14 19:17:45 joerg Exp $ the .a file) to match the other internal libraries. Otherwise the wrappers reorder it relative to the other internal libraries and some symbols aren't resolved at link time. +* Allow newer libtiff. --- configure.orig 2012-06-06 00:58:38.000000000 +0000 +++ configure @@ -151,7 +152,7 @@ symbols aren't resolved at link time. tiff_bytecount_t="uint32" ;; - 4.[0]) tiff_runlen_t="uint32" -+ 4.[01]) tiff_runlen_t="uint32" ++ 4.[012]) tiff_runlen_t="uint32" tiff_offset_t="uint64" tiff_bytecount_t="uint64" echo '#define TIFFHeader TIFFHeaderClassic' |