[PD-cvs] SF.net SVN: pure-data: [10144] branches/pd-extended/v0-40/externals/iem/ iemxmlrpc/xmlrpc++/src

zmoelnig at users.sourceforge.net zmoelnig at users.sourceforge.net
Sun Jul 6 21:53:12 CEST 2008


Revision: 10144
          http://pure-data.svn.sourceforge.net/pure-data/?rev=10144&view=rev
Author:   zmoelnig
Date:     2008-07-06 12:53:11 -0700 (Sun, 06 Jul 2008)

Log Message:
-----------
added missing includes...

Modified Paths:
--------------
    branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcClient.cpp
    branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcServerConnection.cpp
    branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcSocket.cpp

Modified: branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcClient.cpp
===================================================================
--- branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcClient.cpp	2008-07-06 19:01:01 UTC (rev 10143)
+++ branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcClient.cpp	2008-07-06 19:53:11 UTC (rev 10144)
@@ -6,6 +6,8 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
+#include <strings.h>
 
 
 using namespace XmlRpc;

Modified: branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcServerConnection.cpp
===================================================================
--- branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcServerConnection.cpp	2008-07-06 19:01:01 UTC (rev 10143)
+++ branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcServerConnection.cpp	2008-07-06 19:53:11 UTC (rev 10144)
@@ -6,8 +6,12 @@
 #ifndef MAKEDEPEND
 # include <stdio.h>
 # include <stdlib.h>
+# include <string.h>
+# include <strings.h>
 #endif
 
+
+
 using namespace XmlRpc;
 
 // Static data

Modified: branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcSocket.cpp
===================================================================
--- branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcSocket.cpp	2008-07-06 19:01:01 UTC (rev 10143)
+++ branches/pd-extended/v0-40/externals/iem/iemxmlrpc/xmlrpc++/src/XmlRpcSocket.cpp	2008-07-06 19:53:11 UTC (rev 10144)
@@ -5,7 +5,7 @@
 #ifndef MAKEDEPEND
 
 #if defined(_WINDOWS)
-# include <stdio.h>
+# include <stdio.h>
 # include <winsock2.h>
 //# pragma lib(WS2_32.lib)
 
@@ -22,6 +22,8 @@
 # include <netdb.h>
 # include <errno.h>
 # include <fcntl.h>
+
+# include <string.h>
 }
 #endif  // _WINDOWS
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Pd-cvs mailing list