freebsd-ports/textproc/clucene-contrib/files/patch-src_CLucene_jstreams_inputstreamreader.cpp
Josh Paetzel be5629e921 CLucene is a C++ port of Lucene: the high-performance,
full-featured text search engine written in Java.
CLucene is faster than lucene as it is written in C++.

WWW:	http://sourceforge.net/projects/clucene/

PR:		ports/151951
Submitted by:	Tom Judge <tom at tomjudge.com>
2010-11-05 15:49:20 +00:00

29 lines
977 B
C++

--- src/CLucene/jstreams/inputstreamreader.cpp Sat Feb 10 13:56:34 2007
+++ src/CLucene/jstreams/inputstreamreader.cpp.orig Fri Nov 24 13:42:02 2006
@@ -13,7 +13,7 @@
#ifndef ICONV_CONST
//we try to guess whether the iconv function requires
//a const char. We have no way of automatically figuring
- //this out if we didnt use autoconf, so we guess based
+ //this out if we did not use autoconf, so we guess based
//on certain parameters:
#ifdef _LIBICONV_H
#define ICONV_CONST const
@@ -49,7 +49,7 @@
return;
}
charbuf.setSize(262);
- mark(262);
+ //mark(262);
charsLeft = 0;
}
InputStreamReader::~InputStreamReader() {
@@ -86,7 +86,7 @@
nwritten = space;
break;
default:
- exit(-1);
+ printf("InputStreamReader::error %d\n", errno);
}
} else { //input sequence was completely converted
charbuf.readPos = charbuf.start;