public
Description: A simple, lightweight C library for writing XMPP clients
Homepage: http://code.stanziq.com/strophe
Clone URL: git://github.com/metajack/libstrophe.git
name age message
file .gitignore Loading commit data...
file .gitmodules Tue Dec 23 06:25:16 -0800 2008 Fixed repo url for expat. [metajack]
file CHANGES.txt Wed Apr 05 16:57:56 -0700 2006 Updated changes. [James Canete]
file COPYING.txt Tue Jun 14 07:10:31 -0700 2005 Move the xmpp library to its new name. [Ralph Giles]
file Doxyfile Wed Jul 02 16:17:27 -0700 2008 Fix examples to use new API and lots of compile... [metajack]
file LICENSE.txt Thu Jun 19 15:13:16 -0700 2008 Doc updates and fix svn:externals. [metajack]
file Makefile.am Tue Apr 14 12:47:20 -0700 2009 Abstracted XML parser library and switched to a... [metajack]
file README.txt Sun Jan 25 09:40:13 -0800 2009 Tweak readme to note some dependencies If you ... [melo]
file bootstrap.sh
file configure.ac
directory docs/ Tue Jun 24 07:43:54 -0700 2008 Most public API points are now documented. [metajack]
directory examples/
submodule expat - adf19a3 Mon Dec 15 14:29:28 -0800 2008 Added expat submodule for tracking vendor relea... [metajack]
directory src/
file strophe.h Sun Jan 25 09:37:58 -0800 2009 Promote xmpp_send_raw and xmpp_send_raw_string ... [melo]
file strophepp.h
directory tests/ Tue Apr 14 12:47:20 -0700 2009 Abstracted XML parser library and switched to a... [metajack]
directory vs2008/ Tue Jul 08 16:09:22 -0700 2008 Add Visual Studio 2008 project files. [James Canete]
README.txt
This is strophe, our XMPP client library.

Our goals are:

    * usable quickly
    * well documented
    * reliable

== Build Instructions ==

We use the 'scons' tool to build the library, unit tests, 
documentation and examples. You'll need to obtain a copy
from http://www.scons.org/ or from your system distributor.

Once scons is installed, invoke 'scons' in the top-level
directory to build the library. This will create a static
library (also in the top-level) directory which can be
linked into other programs. The public api is defined
in <strophe.h> which is also in the top-level directory.

Invoke 'scons test' in the top-level directory to execute
the unit and self tests.

The examples/ directory contains some examples of how to
use the library; these may be helpful in addition to the
API documentation in doc/.


== Requirements ==

Libstrophe requires libresolv on UNIX systems. Make sure you include -lresolv
if you are compiling by hand.

It also uses expat for XML processing, but a current copy is included in the
expat/ directory of the SVN checkout