Added conditional #include <strings.h> to XmlRpcServerConnection.cpp, since it uses functions that are only declared in that header on my system.
Logged In: NO
--- XmlRpcServerConnection.cpp +++ XmlRpcServerConnection.cpp @@ -6,6 +6,9 @@ #ifndef MAKEDEPEND # include <stdio.h> # include <stdlib.h> +# ifndef _WINDOWS +# include <strings.h> +# endif #endif
using namespace XmlRpc;
Logged In: YES user_id=1025359
--- XmlRpcClient.cpp +++ XmlRpcClient.cpp @@ -6,6 +6,9 @@
#include <stdio.h> #include <stdlib.h> +#ifndef _WINDOWS +# include <strings.h> +#endif
Log in to post a comment.
Logged In: NO
--- XmlRpcServerConnection.cpp
+++ XmlRpcServerConnection.cpp
@@ -6,6 +6,9 @@
#ifndef MAKEDEPEND
# include <stdio.h>
# include <stdlib.h>
+# ifndef _WINDOWS
+# include <strings.h>
+# endif
#endif
using namespace XmlRpc;
Logged In: YES
user_id=1025359
--- XmlRpcClient.cpp
+++ XmlRpcClient.cpp
@@ -6,6 +6,9 @@
#include <stdio.h>
#include <stdlib.h>
+#ifndef _WINDOWS
+# include <strings.h>
+#endif