northscale / libconflate

A library for managing configuration of clustered applications -- Bringing it all together.

This URL has Read+Write access

Jayesh Jose (author)
Wed Dec 02 08:39:22 -0800 2009
steveyen (committer)
Wed Dec 02 08:39:22 -0800 2009
README.markdown

Building

First, you need to build and install libstrophe:

Libstrophe

git clone git://github.com/dustin/libstrophe.git
cd libstrophe
git submodule init
git submodule update
./bootstrap.sh
./configure
make

And then install it:

mkdir ~/{lib,include}
cp *.h ~/include
cp *.a ~/lib

The Library and Example Bot

Now you're ready to build the library and example application.

git clone git://github.com/northscale/libconflate.git
cd libconflate
make

Trying the Example

There's a bit of infrastructure required to see it all work, but the example (bot.c) is ready to talk to your xmpp server and handle messages.

./examples/bot myjid@example.com mypassword

(optionally, you can specify a third argument to tell it exactly what xmpp server to connect to if you'd like to avoid SRV lookups)