diff options
author | tron <tron@pkgsrc.org> | 2001-10-14 17:19:58 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-10-14 17:19:58 +0000 |
commit | 2536d45da71f54b5ec4256da0771277a975eb00e (patch) | |
tree | 7c7767b8c0bd3d51b1f4d3671be2da4197c6db08 /comms/estic/patches | |
parent | e66b47256171735a3fad5bf59591ba550ad46cc1 (diff) | |
download | pkgsrc-2536d45da71f54b5ec4256da0771277a975eb00e.tar.gz |
Fix build problems when the new toolchain is used.
Diffstat (limited to 'comms/estic/patches')
-rw-r--r-- | comms/estic/patches/patch-ac | 11 | ||||
-rw-r--r-- | comms/estic/patches/patch-au | 13 | ||||
-rw-r--r-- | comms/estic/patches/patch-av | 15 | ||||
-rw-r--r-- | comms/estic/patches/patch-aw | 22 |
4 files changed, 58 insertions, 3 deletions
diff --git a/comms/estic/patches/patch-ac b/comms/estic/patches/patch-ac index d2e3ae53ad2..5355bfad7ad 100644 --- a/comms/estic/patches/patch-ac +++ b/comms/estic/patches/patch-ac @@ -1,8 +1,13 @@ -$NetBSD: patch-ac,v 1.1.1.1 2001/02/10 18:34:23 tron Exp $ +$NetBSD: patch-ac,v 1.2 2001/10/14 17:19:58 tron Exp $ --- ../spunk/password.cc.orig Thu Nov 7 18:06:48 1996 -+++ ../spunk/password.cc Sat Feb 10 18:38:35 2001 -@@ -529,10 +529,10 @@ ++++ ../spunk/password.cc Sun Oct 14 19:09:32 2001 +@@ -525,14 +525,14 @@ + + + +-static void EntryEditor (PasswordEntry* E, int& Abort, int& Changed) ++void EntryEditor (PasswordEntry* E, int& Abort, int& Changed) // Allow editing of one password entry { // ID's of the menue items diff --git a/comms/estic/patches/patch-au b/comms/estic/patches/patch-au new file mode 100644 index 00000000000..331a7821a31 --- /dev/null +++ b/comms/estic/patches/patch-au @@ -0,0 +1,13 @@ +$NetBSD: patch-au,v 1.1 2001/10/14 17:19:59 tron Exp $ + +--- ../spunk/stream.cc.orig Wed Dec 18 13:09:02 1996 ++++ ../spunk/stream.cc Sun Oct 14 19:12:10 2001 +@@ -347,7 +347,7 @@ + + void Stream::CopyFrom (Stream& S, size_t Count) + { +- static const BufSize = 4096; // Size of copy buffer ++ static const size_t BufSize = 4096; // Size of copy buffer + + + // Check parameter diff --git a/comms/estic/patches/patch-av b/comms/estic/patches/patch-av new file mode 100644 index 00000000000..9ba771a96b3 --- /dev/null +++ b/comms/estic/patches/patch-av @@ -0,0 +1,15 @@ +$NetBSD: patch-av,v 1.1 2001/10/14 17:19:59 tron Exp $ + +--- ../spunk/textstrm.cc.orig Thu Nov 7 18:06:52 1996 ++++ ../spunk/textstrm.cc Sun Oct 14 19:14:11 2001 +@@ -66,8 +66,8 @@ + // LineLen is the estimated length of a line in the file used for + // estimating the size of the buffer. + { +- static const Delta = 100; +- static const BufSize = 4096; ++ static const u32 Delta = 100; ++ static const u32 BufSize = 4096; + + // Estimate the count of lines + if ((Limit = Size / LineLen) < 100) { diff --git a/comms/estic/patches/patch-aw b/comms/estic/patches/patch-aw new file mode 100644 index 00000000000..02dcbc6e906 --- /dev/null +++ b/comms/estic/patches/patch-aw @@ -0,0 +1,22 @@ +$NetBSD: patch-aw,v 1.1 2001/10/14 17:19:59 tron Exp $ + +--- ../spunk/window.cc.orig Sun Jan 26 18:17:38 1997 ++++ ../spunk/window.cc Sun Oct 14 19:15:25 2001 +@@ -1432,7 +1432,7 @@ + // Write a string to the inner window. Note: Attr is an index, not a real + // attribute ! + { +- const BufSize = 256; ++ const int BufSize = 256; + u16 Buf [256]; + + // Check if the given string is empty +@@ -1554,7 +1554,7 @@ + // Write a string to the inner window. Note: Attr is an index, not a real + // attribute ! + { +- const BufSize = 256; ++ const int BufSize = 256; + u16 Buf [BufSize]; + + // If the Y coord is outside the inner window, there is nothing to do |