# HG changeset patch # User Myhailo Danylenko # Date 1257951893 -7200 # Node ID 1398cd8fc55440cf0a7662afee435b6915e567b6 # Parent b24eab8a65158a01186e22681a400a28919aaafb Readme diff -r b24eab8a6515 -r 1398cd8fc554 README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README Wed Nov 11 17:04:53 2009 +0200 @@ -0,0 +1,53 @@ + +This is a pep module for mcabber. It just provides common message +listener for other modules like tune, avatar etc. + +This module have no options, just load it before loading modules, +that depend on it. + +Note, that you must not unload this module, while other modules, +that depend on it are loaded! This may cause segfault. In fact, +if you by accident did that, you can load module back and avoid +segfault, but you need to reload other modules to re-register +their callbacks to this module. Segfault will happen, if you'll +try to load/unload depending module while this is not loaded. +I'll try to do something about that, but for now be careful. + +INSTALLATION + +To install it, you need: +cmake +make +gcc +glib +loudmouth +mcabber's headers + +Then do +$ mkdir build +$ cd build +$ cmake .. +$ make edit_cache +$ make +# make install + +Debian users can instead of make install do +$ fakeroot make package +# dpkg -i ...-*.deb + +Users of other distributions can select appropriate package +generator, using cache editor. + +LICENSE + +This code underlies terms of GNU GPL v2 or later. You can find it in file COPYING +from this distribution or on a GNU web-site . + +CONTACTS + +I will be happy to get feedback, patches, suggestions, etc. +You can send me email or contact via jabber . + + -- Myhailo Danylenko + +