Compiling Errors using Borland C++ Builder 5
Status: Beta
Brought to you by:
cmorley
Hello,
i have a legacy Application and need to insert XmlRpc transporting. I would like to use your library but there is an error while compiling. I'm using windows and so I added _WINDOWS to the Preprocessor. Unfortunatelly it was still not compiling. After some time debugging I found the problem. It is a including problem in the XmlRpcSocket.cpp.
The Borland Compiler doesn't include the errno.h in his std implementation. So, to fix the error I have to include it manually. So to fix this you have to insert the include errno.h independent from using windows or not. In detail this meens moving the line #include <errno.h> from line 24 to line 6.
After that all is compiling well.