diff options
author | kristerw <kristerw> | 2004-05-23 22:33:17 +0000 |
---|---|---|
committer | kristerw <kristerw> | 2004-05-23 22:33:17 +0000 |
commit | eec46dc2e33288acca32495e35d55cb64aa76167 (patch) | |
tree | 0026bf137cd608b85718d002cb4ddd5b0f096326 /textproc | |
parent | 29e3abbaf22ad3d538770545ec264608ace23579 (diff) | |
download | pkgsrc-eec46dc2e33288acca32495e35d55cb64aa76167.tar.gz |
Make this compile when using gcc 3.3.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/isearch/distinfo | 4 | ||||
-rw-r--r-- | textproc/isearch/patches/patch-ab | 13 | ||||
-rw-r--r-- | textproc/isearch/patches/patch-ac | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/textproc/isearch/distinfo b/textproc/isearch/distinfo index 947ddcfe253..30c4f03a26e 100644 --- a/textproc/isearch/distinfo +++ b/textproc/isearch/distinfo @@ -1,5 +1,7 @@ -$NetBSD: distinfo,v 1.3 2002/05/03 22:36:08 jtb Exp $ +$NetBSD: distinfo,v 1.4 2004/05/23 22:33:17 kristerw Exp $ SHA1 (Isearch-1.47.01.tar.gz) = 86761d6055fdd7b954b7ac9d9fd3d0084d758e3f Size (Isearch-1.47.01.tar.gz) = 484760 bytes SHA1 (patch-aa) = 5c8291a92f84cc47131e45586879cf986e6a5c4d +SHA1 (patch-ab) = 1bdf80b2a355ac17ff090c7ae25d231bea5ab017 +SHA1 (patch-ac) = 232ef20b661a9e5fd32814da256a59c7146b7b69 diff --git a/textproc/isearch/patches/patch-ab b/textproc/isearch/patches/patch-ab new file mode 100644 index 00000000000..14ba0181d66 --- /dev/null +++ b/textproc/isearch/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2004/05/23 22:33:17 kristerw Exp $ + +--- src/string.cxx.orig 2004-05-24 00:25:54.000000000 +0200 ++++ src/string.cxx 2004-05-24 00:26:37.000000000 +0200 +@@ -574,7 +574,7 @@ + + // can this be const STRING& ? + ostream& operator<<(ostream& os, const STRING& str) { +- os.write(str.Buffer, str.Length); ++ os.write((const char*)str.Buffer, str.Length); + return os; + } + diff --git a/textproc/isearch/patches/patch-ac b/textproc/isearch/patches/patch-ac new file mode 100644 index 00000000000..c752e7e7cf5 --- /dev/null +++ b/textproc/isearch/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2004/05/23 22:33:17 kristerw Exp $ + +--- src/registry.cxx.orig 2004-05-24 00:24:41.000000000 +0200 ++++ src/registry.cxx 2004-05-24 00:25:10.000000000 +0200 +@@ -333,7 +333,7 @@ + REGISTRY::fprint(FILE* fp, const INT level) const + #else + void +-REGISTRY::fprint(FILE* fp, const INT level = 0) const ++REGISTRY::fprint(FILE* fp, const INT level) const + #endif + + #else |