From 8c5f7879cfb138ee69ac025a6d9773954c9510c6 Mon Sep 17 00:00:00 2001 From: helge Date: Thu, 17 Nov 2005 16:03:26 +0000 Subject: [PATCH] properly include string.h git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1177 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- sope-xml/XmlRpc/ChangeLog | 5 +++++ sope-xml/XmlRpc/NSMutableString+XmlRpcDecoder.m | 1 + sope-xml/XmlRpc/Version | 2 +- sope-xml/libxmlSAXDriver/ChangeLog | 4 ++++ sope-xml/libxmlSAXDriver/TableCallbacks.m | 1 + sope-xml/libxmlSAXDriver/Version | 2 +- sope-xml/libxmlSAXDriver/libxmlDocSAXDriver.m | 1 + sope-xml/libxmlSAXDriver/libxmlHTMLSAXDriver.m | 1 + sope-xml/libxmlSAXDriver/libxmlSAXDriver.m | 1 + sope-xml/samples/ChangeLog | 4 ++++ sope-xml/samples/testqp.m | 1 + 11 files changed, 21 insertions(+), 2 deletions(-) diff --git a/sope-xml/XmlRpc/ChangeLog b/sope-xml/XmlRpc/ChangeLog index c6628b91..348a5159 100644 --- a/sope-xml/XmlRpc/ChangeLog +++ b/sope-xml/XmlRpc/ChangeLog @@ -1,3 +1,8 @@ +2005-11-17 Helge Hess + + * NSMutableString+XmlRpcDecoder.m: properly include string.h to fix a + memcpy warning (v4.5.26) + 2005-05-03 Helge Hess * NSObject+XmlRpc.m, XmlRpcSaxHandler.m: fixed gcc 4.0 warnings diff --git a/sope-xml/XmlRpc/NSMutableString+XmlRpcDecoder.m b/sope-xml/XmlRpc/NSMutableString+XmlRpcDecoder.m index ed48594e..f0ece46a 100644 --- a/sope-xml/XmlRpc/NSMutableString+XmlRpcDecoder.m +++ b/sope-xml/XmlRpc/NSMutableString+XmlRpcDecoder.m @@ -20,6 +20,7 @@ */ #include "common.h" +#include @implementation NSMutableString(XmlRpcDecoder) diff --git a/sope-xml/XmlRpc/Version b/sope-xml/XmlRpc/Version index 67ebc1c5..b19f72a2 100644 --- a/sope-xml/XmlRpc/Version +++ b/sope-xml/XmlRpc/Version @@ -1,3 +1,3 @@ # version file -SUBMINOR_VERSION:=25 +SUBMINOR_VERSION:=26 diff --git a/sope-xml/libxmlSAXDriver/ChangeLog b/sope-xml/libxmlSAXDriver/ChangeLog index eb830b38..8642e41b 100644 --- a/sope-xml/libxmlSAXDriver/ChangeLog +++ b/sope-xml/libxmlSAXDriver/ChangeLog @@ -1,3 +1,7 @@ +2005-11-17 Helge Hess + + * properly include string.h to avoid warnings (v4.5.23) + 2005-09-14 Helge Hess * libxmlSAXDriver.m: improved 'activeDriver' handling in some edge diff --git a/sope-xml/libxmlSAXDriver/TableCallbacks.m b/sope-xml/libxmlSAXDriver/TableCallbacks.m index 738606f8..af0c2648 100644 --- a/sope-xml/libxmlSAXDriver/TableCallbacks.m +++ b/sope-xml/libxmlSAXDriver/TableCallbacks.m @@ -21,6 +21,7 @@ #include "TableCallbacks.h" #include "common.h" +#include //#define NSNonOwnedCStringMapKeyCallBacks NSNonOwnedPointerMapKeyCallBacks diff --git a/sope-xml/libxmlSAXDriver/Version b/sope-xml/libxmlSAXDriver/Version index b0de02fb..02c5970d 100644 --- a/sope-xml/libxmlSAXDriver/Version +++ b/sope-xml/libxmlSAXDriver/Version @@ -1,3 +1,3 @@ # version -SUBMINOR_VERSION:=22 +SUBMINOR_VERSION:=23 diff --git a/sope-xml/libxmlSAXDriver/libxmlDocSAXDriver.m b/sope-xml/libxmlSAXDriver/libxmlDocSAXDriver.m index 1656527d..d5ec3f97 100644 --- a/sope-xml/libxmlSAXDriver/libxmlDocSAXDriver.m +++ b/sope-xml/libxmlSAXDriver/libxmlDocSAXDriver.m @@ -24,6 +24,7 @@ #include #include #include "common.h" +#include #include #include diff --git a/sope-xml/libxmlSAXDriver/libxmlHTMLSAXDriver.m b/sope-xml/libxmlSAXDriver/libxmlHTMLSAXDriver.m index a6523d8e..77fc04b0 100644 --- a/sope-xml/libxmlSAXDriver/libxmlHTMLSAXDriver.m +++ b/sope-xml/libxmlSAXDriver/libxmlHTMLSAXDriver.m @@ -25,6 +25,7 @@ #include #include #include "common.h" +#include #include #include diff --git a/sope-xml/libxmlSAXDriver/libxmlSAXDriver.m b/sope-xml/libxmlSAXDriver/libxmlSAXDriver.m index 17b1dfca..5388b6e9 100644 --- a/sope-xml/libxmlSAXDriver/libxmlSAXDriver.m +++ b/sope-xml/libxmlSAXDriver/libxmlSAXDriver.m @@ -25,6 +25,7 @@ #include #include #include "common.h" +#include #include diff --git a/sope-xml/samples/ChangeLog b/sope-xml/samples/ChangeLog index 0a195060..58e07958 100644 --- a/sope-xml/samples/ChangeLog +++ b/sope-xml/samples/ChangeLog @@ -1,3 +1,7 @@ +2005-11-17 Helge Hess + + * testqp.m: properly include string.h to fix a strlen warning + 2005-08-16 Helge Hess * saxxml.m: print a usage information in case no arguments are given or diff --git a/sope-xml/samples/testqp.m b/sope-xml/samples/testqp.m index 996e835b..3df85cae 100644 --- a/sope-xml/samples/testqp.m +++ b/sope-xml/samples/testqp.m @@ -25,6 +25,7 @@ #include #include #include +#include /* Usage -- 2.39.5