comparison libpurple/protocols/silc/README @ 15936:b449dc6b8a20

A little doxygen love and some tiny gaim->purpleisms
author Mark Doliner <mark@kingant.net>
date Mon, 26 Mar 2007 05:28:57 +0000
parents 5fe8042783c1
children 980a104267da
comparison
equal deleted inserted replaced
15935:a26cbbd1409c 15936:b449dc6b8a20
1 SILC Gaim Plugin 1 SILC Purple Plugin
2 ================ 2 ==================
3 3
4 This is Gaim protocol plugin of the protocol called Secure Internet Live 4 This is the Purple protocol plugin of the protocol called Secure Internet
5 Conferencing (SILC). The implementation will use the SILC Toolkit, 5 Live Conferencing (SILC). The implementation will use the SILC Toolkit,
6 freely available from the http://silcnet.org/ site, for the actual SILC 6 freely available from the http://silcnet.org/ site, for the actual SILC
7 protocol implementation. 7 protocol implementation.
8 8
9 To include the SILC into Gaim, one needs to first compile and install 9 To include SILC into Purple, one needs to first compile and install
10 the SILC Toolkit. It is done as follows: 10 the SILC Toolkit. It is done as follows:
11 11
12 ./configure --enable-shared 12 ./configure --enable-shared
13 make 13 make
14 make install 14 make install
15 15
16 This will compile shared libraries of the SILC Toolkit. If the --prefix 16 This will compile shared libraries of the SILC Toolkit. If the --prefix
17 is not given to ./configure, the binaries are installed into the 17 is not given to ./configure, the binaries are installed into the
18 /usr/local/silc directory. 18 /usr/local/silc directory.
19 19
20 Once the Toolkit is installed one needs to tell for the Gaim ./configure 20 Once the Toolkit is installed one needs to tell Purple's ./configure
21 script where the SILC Toolkit is located. It is done as simply as: 21 script where the SILC Toolkit is located. It is done as simply as:
22 22
23 ./configure 23 ./configure
24 24
25 if pkg-config is installed in your system. If it is isn't it's done as: 25 if pkg-config is installed in your system. If it is isn't it's done as:
26 26
27 ./configure --with-silc-libs=/path/to/silc/lib 27 ./configure --with-silc-libs=/path/to/silc/lib
28 --with-silc-includes=/path/to/silc/include 28 --with-silc-includes=/path/to/silc/include
29 29
30 If the Toolkit cannot be located the SILC will not be compiled into the 30 If the SILC Toolkit cannot be found then the SILC protocol plugin will
31 Gaim. 31 not be compiled.