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/cxx-tchar.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/cxx-tchar.patch')
-rw-r--r-- | legacy/clucene/cxx-tchar.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/legacy/clucene/cxx-tchar.patch b/legacy/clucene/cxx-tchar.patch new file mode 100644 index 000000000..7b36659d3 --- /dev/null +++ b/legacy/clucene/cxx-tchar.patch @@ -0,0 +1,15 @@ +$NetBSD: patch-src_shared_CLucene_config_repl__tchar.h,v 1.1 2013/08/13 10:24:22 joerg Exp $ + +--- a/src/shared/CLucene/config/repl_tchar.h 2011-03-17 00:21:07.000000000 +0000 ++++ b/src/shared/CLucene/config/repl_tchar.h +@@ -36,8 +36,8 @@ + #define _tcsncpy wcsncpy //copy a specified amount of one string to another string. + #define _tcscat wcscat //copy a string onto the end of the other string + #define _tcsncat wcsncat +- #define _tcschr wcschr //find location of one character +- #define _tcsstr wcsstr //find location of a string ++ #define _tcschr ::std::wcschr //find location of one character ++ #define _tcsstr ::std::wcsstr //find location of a string + #define _tcslen wcslen //get length of a string + #define _tcscmp wcscmp //case sensitive compare two strings + #define _tcsncmp wcsncmp //case sensitive compare two strings |