pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc/aspell I don't pretend to understand this lay...
details: https://anonhg.NetBSD.org/pkgsrc/rev/703aa1f749f3
branches: trunk
changeset: 462340:703aa1f749f3
user: mycroft <mycroft%pkgsrc.org@localhost>
date: Tue Sep 30 17:26:58 2003 +0000
description:
I don't pretend to understand this layer of the C++ template abyss, but I found
this patch on the web that purports to make it work with GCC 3/libstdc++ 3.
diffstat:
textproc/aspell/distinfo | 3 ++-
textproc/aspell/patches/patch-ab | 19 +++++++++++++++++++
2 files changed, 21 insertions(+), 1 deletions(-)
diffs (34 lines):
diff -r 3e5f49ff1972 -r 703aa1f749f3 textproc/aspell/distinfo
--- a/textproc/aspell/distinfo Tue Sep 30 16:10:29 2003 +0000
+++ b/textproc/aspell/distinfo Tue Sep 30 17:26:58 2003 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.5 2003/07/14 17:06:34 jmmv Exp $
+$NetBSD: distinfo,v 1.6 2003/09/30 17:26:58 mycroft Exp $
SHA1 (aspell-0.50.3.tar.gz) = aea3c1e47c10bf2f189dbff91c3c137170af6a72
Size (aspell-0.50.3.tar.gz) = 939063 bytes
SHA1 (patch-aa) = ec9eff280bdb169814e134f541dee7c879a58fdd
+SHA1 (patch-ab) = 9b3e6dfbdf27b9bc0a10384be057685fba734aa7
diff -r 3e5f49ff1972 -r 703aa1f749f3 textproc/aspell/patches/patch-ab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/aspell/patches/patch-ab Tue Sep 30 17:26:58 2003 +0000
@@ -0,0 +1,19 @@
+$NetBSD: patch-ab,v 1.3 2003/09/30 17:26:58 mycroft Exp $
+
+--- modules/speller/default/split.cpp.orig 2001-11-30 03:55:48.000000000 +0000
++++ modules/speller/default/split.cpp 2003-09-30 17:23:23.000000000 +0000
+@@ -1,4 +1,4 @@
+-#include <strstream>
++#include <sstream>
+ #include "split.hpp"
+
+ using namespace std;
+@@ -8,7 +8,7 @@
+
+ vector<String> split(const String & str) {
+ vector<String> data;
+- istrstream s(str.c_str());
++ istringstream s(str.c_str());
+ String item;
+ while (s >> item) {
+ data.push_back(item);
Home |
Main Index |
Thread Index |
Old Index