public
Fork of metajack/libstrophe
Description: A simple, lightweight C library for writing XMPP clients
Homepage: http://code.stanziq.com/strophe
Clone URL: git://github.com/dustin/libstrophe.git
CaptTofu (author)
Fri Oct 09 09:37:47 -0700 2009
commit  f8279eab86385ea45afa5c0032e2559da38bfcdd
tree    47076408f79ac4dabb4330b3e2666d2526508f82
parent  05273f9f90c6823079c4981c714439304a30126e
name age message
file .gitignore Thu Oct 01 14:20:30 -0700 2009 install pkg-config package description, so that... [alk]
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 Doxyfile Tue May 05 09:18:48 -0700 2009 Made doxygen input/output directories relative [Arc Riley]
file GPL-LICENSE.txt Mon Jun 15 14:26:10 -0700 2009 Dual licensed libstrophe under MIT and GPLv3. ... [Jack Moffitt]
file LICENSE.txt Mon Jun 15 14:26:10 -0700 2009 Dual licensed libstrophe under MIT and GPLv3. ... [Jack Moffitt]
file MIT-LICENSE.txt Mon Jun 15 14:26:10 -0700 2009 Dual licensed libstrophe under MIT and GPLv3. ... [Jack Moffitt]
file Makefile.am Fri Oct 09 21:09:20 -0700 2009 Added checks for compiler type, and then set wa... [ingenthr]
file README.txt Sun Jan 25 09:40:13 -0800 2009 Tweak readme to note some dependencies If you ... [melo]
file bootstrap.sh Fri Oct 09 21:09:21 -0700 2009 Add the which dance for aclocal and the multitu... [ingenthr]
file configure.ac Fri Oct 09 21:09:20 -0700 2009 Backed out a number of warnings. Previous buil... [ingenthr]
directory docs/ Tue Jun 24 07:43:54 -0700 2008 Most public API points are now documented. [metajack]
directory examples/ Mon Jun 15 14:26:10 -0700 2009 Dual licensed libstrophe under MIT and GPLv3. ... [Jack Moffitt]
submodule expat - adf19a3 Mon Dec 15 14:29:28 -0800 2008 Added expat submodule for tracking vendor relea... [metajack]
file libstrophe.pc.in Fri Oct 02 03:52:05 -0700 2009 Revert "use openssl via pkg-config so that stat... [alk]
directory src/ Thu Oct 01 15:02:48 -0700 2009 Ensure value compared is initalized in handler_... [ingenthr]
file strophe.h Mon Jun 15 14:37:21 -0700 2009 Capture the bound jid. I'd kind of like to be ... [dustin]
file strophepp.h Mon Jun 15 14:26:10 -0700 2009 Dual licensed libstrophe under MIT and GPLv3. ... [Jack Moffitt]
directory tests/ Fri Oct 09 21:10:16 -0700 2009 external declaration in primary source file icc... [CaptTofu]
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