From 343542edf96191e7e01a787ea57bcde421176e21 Mon Sep 17 00:00:00 2001 From: Bill Fumerola Date: Sat, 1 Jun 2002 03:02:14 +0000 Subject: update to 1.7.0 and fix some bugs both in the previous port and in the xerces codebase itself. although this commit is a combination of all three PRs, i didn't take every PR verbatim (and left out some smaller parts of the first two PRs). any mistakes in the merging of these PRs is mine and if the original submitters would like to generate diffs after this commit, i'll look at those as well. Gregory Bond gets credit for spotting some particularly nasty problems in the old port. Remember folks, just because it compiles doesn't mean it works.. PR: ports/36248, ports/37016, ports/37619 Submitted by: Hidekazu Kuroki , Daniel Lang , Gregory Bond --- textproc/xerces-c/files/patch-XMLString | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 textproc/xerces-c/files/patch-XMLString (limited to 'textproc/xerces-c/files/patch-XMLString') diff --git a/textproc/xerces-c/files/patch-XMLString b/textproc/xerces-c/files/patch-XMLString new file mode 100644 index 000000000000..75ffa9b0bd61 --- /dev/null +++ b/textproc/xerces-c/files/patch-XMLString @@ -0,0 +1,20 @@ +--- src/xercesc/util/XMLString.cpp.orig Fri May 31 19:07:45 2002 ++++ src/xercesc/util/XMLString.cpp Fri May 31 19:08:09 2002 +@@ -254,7 +254,7 @@ + + int XMLString::compareIString(const char* const str1, const char* const str2) + { +- return stricmp(str1, str2); ++ return strcasecmp(str1, str2); + } + + +@@ -277,7 +277,7 @@ + if (!count) + return 0; + +- return strnicmp(str1, str2, count); ++ return strncasecmp(str1, str2, count); + } + + -- cgit v1.2.3