summaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2001-05-10 21:00:33 +0000
committerdmcmahill <dmcmahill>2001-05-10 21:00:33 +0000
commit9f0c998078816f63e6f61863419bbb4aa17d2f1a (patch)
treea1aa7c62dd820eb463e6927e0f4171665e291985 /comms
parent625e1263df66e265a32ae3f1be8d67f5fb224c2a (diff)
downloadpkgsrc-9f0c998078816f63e6f61863419bbb4aa17d2f1a.tar.gz
fix type mismatch for 64 bit machines. Should not affect 32 bit machines.
Diffstat (limited to 'comms')
-rw-r--r--comms/hylafax/distinfo4
-rw-r--r--comms/hylafax/patches/patch-as13
-rw-r--r--comms/hylafax/patches/patch-at13
3 files changed, 29 insertions, 1 deletions
diff --git a/comms/hylafax/distinfo b/comms/hylafax/distinfo
index 964e557a936..f435aa724be 100644
--- a/comms/hylafax/distinfo
+++ b/comms/hylafax/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.3 2001/04/23 15:06:11 abs Exp $
+$NetBSD: distinfo,v 1.4 2001/05/10 21:00:33 dmcmahill Exp $
SHA1 (hylafax/hylafax-4.1beta3.tar.gz) = a54eab5a92b59a82699d08185433ea83b7647bd1
Size (hylafax/hylafax-4.1beta3.tar.gz) = 1233050 bytes
@@ -22,3 +22,5 @@ SHA1 (patch-ao) = f1c084ca1b4e5fbba29d723bdeaac9d34b2f5289
SHA1 (patch-ap) = 64a54dd34080fd734bac291ec91785ec36c6f747
SHA1 (patch-aq) = 04add689446223f5b3541f1100d063b38f6ede0e
SHA1 (patch-ar) = 63b47f7f5197dea10b8c542b04eff61b2cd03ed4
+SHA1 (patch-as) = 0b169ee8ba8385112e88a7335ff74bd3c0825e69
+SHA1 (patch-at) = 2833cfe9bc94b1fb99cbb6c3015093f274f7f69f
diff --git a/comms/hylafax/patches/patch-as b/comms/hylafax/patches/patch-as
new file mode 100644
index 00000000000..51ed1a9364d
--- /dev/null
+++ b/comms/hylafax/patches/patch-as
@@ -0,0 +1,13 @@
+$NetBSD: patch-as,v 1.3 2001/05/10 21:00:34 dmcmahill Exp $
+
+fix type mismatch on 64 bit machines
+
+--- faxd/FaxModem.c++.orig Mon Feb 5 01:32:57 2001
++++ faxd/FaxModem.c++ Thu May 10 16:48:15 2001
+@@ -815,5 +815,5 @@
+
+ void
+-FaxModem::correctPhaseCData(u_char* buf, u_long* pBufSize,
++FaxModem::correctPhaseCData(u_char* buf, uint32* pBufSize,
+ u_int fillorder, const Class2Params& params)
+ {
diff --git a/comms/hylafax/patches/patch-at b/comms/hylafax/patches/patch-at
new file mode 100644
index 00000000000..aab89ecae8d
--- /dev/null
+++ b/comms/hylafax/patches/patch-at
@@ -0,0 +1,13 @@
+$NetBSD: patch-at,v 1.1 2001/05/10 21:00:34 dmcmahill Exp $
+
+fix type mismatch on 64 bit machines
+
+--- faxd/FaxModem.h.orig Mon Feb 5 01:32:57 2001
++++ faxd/FaxModem.h Thu May 10 16:48:05 2001
+@@ -145,5 +145,5 @@
+ * Correct if neccessary Phase C (T.4) data (remove extra RTC etc.)
+ */
+- void correctPhaseCData(u_char* buf, u_long* pBufSize,
++ void correctPhaseCData(u_char* buf, uint32* pBufSize,
+ u_int fillorder, const Class2Params& params);
+ public: