diff options
author | wiz <wiz@pkgsrc.org> | 2004-05-22 11:58:42 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-05-22 11:58:42 +0000 |
commit | 860248e413bd557520d3f580cef3c3f506fa2892 (patch) | |
tree | 85fb1598696fc3751dd787896a531057a4439055 /comms | |
parent | 3baa1619d3ca2ff6efb2a02ce608ed8cd758a38d (diff) | |
download | pkgsrc-860248e413bd557520d3f580cef3c3f506fa2892.tar.gz |
Add patches to fix build on alpha; from Dave Huang in PR 25666.
Diffstat (limited to 'comms')
-rw-r--r-- | comms/hylafax/distinfo | 4 | ||||
-rw-r--r-- | comms/hylafax/patches/patch-ar | 13 | ||||
-rw-r--r-- | comms/hylafax/patches/patch-as | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/comms/hylafax/distinfo b/comms/hylafax/distinfo index 2996583b16d..50d713afd5c 100644 --- a/comms/hylafax/distinfo +++ b/comms/hylafax/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.9 2003/11/21 09:26:23 abs Exp $ +$NetBSD: distinfo,v 1.10 2004/05/22 11:58:42 wiz Exp $ SHA1 (hylafax/hylafax-4.1.8.tar.gz) = e720bc964ecad84146f4ea2cdcdc374af66e2ce5 Size (hylafax/hylafax-4.1.8.tar.gz) = 1285536 bytes @@ -19,3 +19,5 @@ SHA1 (patch-an) = 248947a7fcca4cb1d7417b71990a731324408fb8 SHA1 (patch-ao) = 2ff605159f2d95b8e5e4eee30c85c5b48ade66fd SHA1 (patch-ap) = 66dba8fb2252e2feb032dedc04df4f705411a813 SHA1 (patch-aq) = 53501db9369da6410faeaa11e8c4e910019f1d11 +SHA1 (patch-ar) = 7ecc2115f2ee87f2088c3c9d754a226a8cced5c9 +SHA1 (patch-as) = 9f712eb83a2629c130735c2b2c50f34dc58759b1 diff --git a/comms/hylafax/patches/patch-ar b/comms/hylafax/patches/patch-ar new file mode 100644 index 00000000000..76cfe5021e6 --- /dev/null +++ b/comms/hylafax/patches/patch-ar @@ -0,0 +1,13 @@ +$NetBSD: patch-ar,v 1.7 2004/05/22 11:58:42 wiz Exp $ + +--- faxd/Class1Send.c++.orig 2003-02-08 23:58:09.000000000 +0100 ++++ faxd/Class1Send.c++ +@@ -797,7 +797,7 @@ Class1Modem::sendPage(TIFF* tif, const C + uint32* stripbytecount; + (void) TIFFGetField(tif, TIFFTAG_STRIPBYTECOUNTS, &stripbytecount); + tstrip_t strip; +- u_long totdata = 0; ++ uint32 totdata = 0; + for (strip = 0; strip < nstrips; strip++) + totdata += stripbytecount[strip]; + /* diff --git a/comms/hylafax/patches/patch-as b/comms/hylafax/patches/patch-as new file mode 100644 index 00000000000..a7b5cae6d5f --- /dev/null +++ b/comms/hylafax/patches/patch-as @@ -0,0 +1,13 @@ +$NetBSD: patch-as,v 1.5 2004/05/22 11:58:42 wiz Exp $ + +--- faxd/Class2Send.c++.orig 2003-04-19 18:23:51.000000000 +0200 ++++ faxd/Class2Send.c++ +@@ -394,7 +394,7 @@ Class2Modem::sendPageData(TIFF* tif, u_i + uint32* stripbytecount; + (void) TIFFGetField(tif, TIFFTAG_STRIPBYTECOUNTS, &stripbytecount); + tstrip_t strip; +- u_long totdata = 0; ++ uint32 totdata = 0; + for (strip = 0; strip < nstrips; strip++) + totdata += stripbytecount[strip]; + /* |