diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2023-02-12 22:08:41 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2023-02-12 22:08:41 -0600 |
commit | 12bf0314937b208b9c07d15972314d61ef845006 (patch) | |
tree | e3ba3ad7d158ddcec83a608b583136ae32c135f5 /legacy/clucene/tchar-cast.patch | |
parent | ff814c108b7b21ef31182aa43276348c69d0c448 (diff) | |
download | packages-12bf0314937b208b9c07d15972314d61ef845006.tar.gz packages-12bf0314937b208b9c07d15972314d61ef845006.tar.bz2 packages-12bf0314937b208b9c07d15972314d61ef845006.tar.xz packages-12bf0314937b208b9c07d15972314d61ef845006.zip |
user/clucene: Retire to legacy/
No upstream commits in years. No response to bug reports from other
teams. Really weird test failures on 32-bit architectures, likely
caused by interactions with signedness and 64-bit integers.
Ref: #873 #880
Diffstat (limited to 'legacy/clucene/tchar-cast.patch')
-rw-r--r-- | legacy/clucene/tchar-cast.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/legacy/clucene/tchar-cast.patch b/legacy/clucene/tchar-cast.patch new file mode 100644 index 000000000..698ed739c --- /dev/null +++ b/legacy/clucene/tchar-cast.patch @@ -0,0 +1,11 @@ +--- a/src/core/CLucene/queryParser/legacy/Lexer.cpp 2011-03-16 20:21:07.000000000 -0400 ++++ b/src/core/CLucene/queryParser/legacy/Lexer.cpp 2014-06-24 18:33:06.000000000 -0400 +@@ -117,7 +117,7 @@ + if( _istspace(ch)!=0 ) { + continue; + } +- TCHAR buf[2] = {ch,'\0'}; ++ TCHAR buf[2] = {TCHAR(ch),'\0'}; + switch(ch) { + case '+': + token->set(buf, QueryToken::PLUS); |