README
changeset 5 1398cd8fc554
child 10 a7575953642d
equal deleted inserted replaced
4:b24eab8a6515 5:1398cd8fc554
       
     1 
       
     2 This is a pep module for mcabber. It just provides common message
       
     3 listener for other modules like tune, avatar etc.
       
     4 
       
     5 This module have no options, just load it before loading modules,
       
     6 that depend on it.
       
     7 
       
     8 Note, that you must not unload this module, while other modules,
       
     9 that depend on it are loaded! This may cause segfault. In fact,
       
    10 if you by accident did that, you can load module back and avoid
       
    11 segfault, but you need to reload other modules to re-register
       
    12 their callbacks to this module. Segfault will happen, if you'll
       
    13 try to load/unload depending module while this is not loaded.
       
    14 I'll try to do something about that, but for now be careful.
       
    15 
       
    16 INSTALLATION
       
    17 
       
    18 To install it, you need:
       
    19 cmake
       
    20 make
       
    21 gcc
       
    22 glib
       
    23 loudmouth
       
    24 mcabber's headers
       
    25 
       
    26 Then do
       
    27 $ mkdir build
       
    28 $ cd build
       
    29 $ cmake ..
       
    30 $ make edit_cache
       
    31 $ make
       
    32 # make install
       
    33 
       
    34 Debian users can instead of make install do
       
    35 $ fakeroot make package
       
    36 # dpkg -i ...-*.deb
       
    37 
       
    38 Users of other distributions can select appropriate package
       
    39 generator, using cache editor.
       
    40 
       
    41 LICENSE
       
    42 
       
    43 This code underlies terms of GNU GPL v2 or later. You can find it in file COPYING
       
    44 from this distribution or on a GNU web-site <http://www.gnu.org/licenses/>.
       
    45 
       
    46 CONTACTS
       
    47 
       
    48 I will be happy to get feedback, patches, suggestions, etc.
       
    49 You can send me email or contact via jabber <isbear@unixzone.org.ua>.
       
    50 
       
    51   -- Myhailo Danylenko <isbear@ukrpost.net>
       
    52 
       
    53