From b363d2579af0a11b77e698aed2e1021c2233b644 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:50 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- tderesources/groupwise/soap/patches/utf8_entities.diff | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tderesources/groupwise/soap/patches/utf8_entities.diff (limited to 'tderesources/groupwise/soap/patches/utf8_entities.diff') diff --git a/tderesources/groupwise/soap/patches/utf8_entities.diff b/tderesources/groupwise/soap/patches/utf8_entities.diff new file mode 100644 index 000000000..656b0b942 --- /dev/null +++ b/tderesources/groupwise/soap/patches/utf8_entities.diff @@ -0,0 +1,15 @@ +--- tderesources/groupwise/soap/stdsoap2.cpp ++++ tderesources/groupwise/soap/stdsoap2.cpp 2004/10/15 12:42:53 +@@ -6470,7 +6470,11 @@ + } + #endif + if (c & mask) +- { if (soap_send_raw(soap, s, t - s - 1) || soap_pututf8(soap, (unsigned char)c)) ++ { ++ char S[2]; ++ S[0] = c; ++ S[1] = 0; ++ if (soap_send_raw(soap, s, t - s - 1) || soap_send(soap, S) ) + return soap->error; + s = t; + } -- cgit v1.2.1