• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D17-Sep-2021780 3726

Makefile.inH A D03-May-202236 KiB929830

Makefile.mingwH A D17-Sep-20211.6 KiB9455

READMEH A D17-Sep-20211 KiB3222

TODOH A D17-Sep-2021192 96

buddy.cH A D17-Sep-202149.1 KiB1,7511,373

chat.cH A D17-Sep-202139.3 KiB1,4571,135

ft.cH A D17-Sep-202111.8 KiB413300

ops.cH A D17-Sep-202162.1 KiB2,0661,598

pk.cH A D17-Sep-20218.2 KiB275212

silc.cH A D17-Sep-202162.3 KiB1,9691,633

silcpurple.hH A D17-Sep-20216 KiB174134

util.cH A D17-Sep-202122.8 KiB777618

wb.cH A D17-Sep-202112.6 KiB521374

wb.hH A D17-Sep-20211.8 KiB5027

README

1SILC Purple Plugin
2==================
3
4This is the Purple protocol plugin of the protocol called Secure Internet
5Live Conferencing (SILC).  The implementation will use the SILC Toolkit,
6freely available from the http://silcnet.org/ site, for the actual SILC
7protocol implementation.
8
9To include SILC into Purple, one needs to first compile and install
10the SILC Toolkit.  It is done as follows:
11
12	./configure --enable-shared
13	make
14	make install
15
16This will compile shared libraries of the SILC Toolkit.  If the --prefix
17is not given to ./configure, the binaries are installed into the
18/usr/local/silc directory.
19
20Once the Toolkit is installed one needs to tell Purple's ./configure
21script where the SILC Toolkit is located.  It is done as simply as:
22
23	./configure
24
25if pkg-config is installed in your system.  If it is isn't it's done as:
26
27	./configure --with-silc-libs=/path/to/silc/lib
28		    --with-silc-includes=/path/to/silc/include
29
30If the SILC Toolkit cannot be found then the SILC protocol plugin will
31not be compiled.
32