freeswitch/libs/xmlrpc-c
Mike Jerris 2e3e09cb38 FS-7966: fix more msvc 2015 build warnings. 2015-08-31 13:26:36 -04:00
..
Windows FS-7966. First pass at moving to Visual Studio 2015. 2015-08-21 18:28:32 -04:00
conf/abyss_root/htdocs FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
doc FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
examples FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
include FS-6293: abandon xmlrpc-c build system entirely. We can revist this when we try to pull this lib out of tree, in the mean time, this fixes a ton of problems. 2014-03-18 09:50:12 -04:00
lib FS-7966: fix more msvc 2015 build warnings. 2015-08-31 13:26:36 -04:00
src Fix line endings per .gitattributes 2014-08-08 15:24:42 +00:00
tools FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
GNUmakefile FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
Makefile merged new xmlrpc-c revision 1472 from https://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/trunk 2008-05-23 20:56:24 +00:00
Makefile.depend add xmlrpc-c 1.03.14 to in tree libs 2006-12-21 03:57:49 +00:00
README merged new xmlrpc-c revision 1472 from https://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/trunk 2008-05-23 20:56:24 +00:00
common.mk FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
config.mk.in FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
configure.ac clean up some bootstrap warnings 2014-03-07 18:36:26 -05:00
configure.gnu FS-6293: we need this for srcdir for xmlrpc-c 2014-03-17 10:57:18 -04:00
dll-common.mk FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
dylib-common.mk FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
install-sh add xmlrpc-c 1.03.14 to in tree libs 2006-12-21 03:57:49 +00:00
irix-common.mk FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
missing merged new xmlrpc-c revision 1472 from https://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/trunk 2008-05-23 20:56:24 +00:00
mkinstalldirs merged new xmlrpc-c revision 1472 from https://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/trunk 2008-05-23 20:56:24 +00:00
srcdir.mk.in FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
stamp-h.in add xmlrpc-c 1.03.14 to in tree libs 2006-12-21 03:57:49 +00:00
transport_config.mk FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
unix-common.mk FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
version.h FS-6293: abandon xmlrpc-c build system entirely. We can revist this when we try to pull this lib out of tree, in the mean time, this fixes a ton of problems. 2014-03-18 09:50:12 -04:00
version.mk FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
xmlrpc-c-config.main FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
xmlrpc-c-config.test.main FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
xmlrpc_amconfig.h.in FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00
xmlrpc_config.h.in FS-2746 --resolve large xmlrpc update thanks garmt 2012-10-13 11:37:25 -05:00

README

This is the source code for XML-RPC for C/C++, called Xmlrpc-c for short.

XML-RPC for C/C++ is programming libraries and related tools to help you
write an XML-RPC server or client in C or C++.

Documentation for the package is at

  http://xmlrpc-c.sourceforge.net/doc

See the Xmlrpc-c website at:

  http://xmlrpc-c.sourceforge.net/


PREREQUISITES
-------------

To build a useful Xmlrpc-c client library, you'll need to have at
least one HTTP library.  Xmlrpc-c knows how to use W3C Libwww (Version
5.3.2 or newer), Curl, and Wininet.  The configurator gives you the
option of building libraries that use any or all of these, and
defaults to every one you appear to have installed.  If you don't
appear to have any installed, the configurator causes the build to
omit client facilities altogether.

Information about W3C Libwww, including how to get it are at
<http://www.w3.org/Library>.

For Curl, see <http://curl.haxx.se>.

Wininet comes with Windows, and isn't available for any other platform.

You also need an XML parser/builder library.  An old version of Expat
is included in the package and used by default, so there's no actual
prerequisite here.  But if you separately obtain Libxml2, you can
configure the build to use that instead.  There's no really pressing
reason to do that, though.

BUILDING, INSTALLING
--------------------

See the file doc/INSTALL.

In the simplest case, it's just a conventional

  $ ./configure
  $ make
  $ make install


ADDITIONAL INFORMATION
----------------------

See the doc/ directory of the source tree for information about the
source code.  User documentation is on the web, as described above.