Mercurial > pidgin
annotate src/protocols/silc/README @ 12435:8f98014a4e7d
[gaim-migrate @ 14742]
1. Protecting the --enable-debug warning tests with an "if gcc" check.
2. Adding a number of warning flags to --enable-debug. All cases of the added warnings have been fixed, except:
a. The pointer-arith warnings. I think someone smarter than me should decide whether we need to fix those (and how) or if that should be disabled. That said, I think all the errors left (after you consider the exception listed as "b" below) are in libzephyr.
b. Those in src/protocols/sametime/meanwhile at siege's request. Don't worry about these for now.
3. Noting a few warnings we could enable, and the cases we'd have to deal with. Thoughts on these warnings?
4. I added support for FORTIFY_SOURCE. If your compiler has support for this feature, --enable-debug will set _FORTIFY_SOURCE=2. I'm doing this in --enable-debug for the warnings you get. I wouldn't mind having it on by default for the runtime protections as well. Thoughts?
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Fri, 09 Dec 2005 05:32:59 +0000 |
| parents | 5851a9219bc7 |
| children |
| rev | line source |
|---|---|
| 8849 | 1 SILC Gaim Plugin |
| 2 ================ | |
| 3 | |
| 4 This is Gaim protocol plugin of the protocol called Secure Internet Live | |
| 5 Conferencing (SILC). The implementation will use the SILC Toolkit, | |
| 6 freely available from the http://silcnet.org/ site, for the actual SILC | |
| 7 protocol implementation. | |
| 8 | |
| 9 To include the SILC into Gaim, one needs to first compile and install | |
| 10 the SILC Toolkit. It is done as follows: | |
| 11 | |
| 12167 | 12 ./configure --enable-shared |
| 8849 | 13 make |
| 14 make install | |
| 15 | |
| 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 | |
| 18 /usr/local/silc directory. | |
| 19 | |
| 20 Once the Toolkit is installed one needs to tell for the Gaim ./configure | |
| 12167 | 21 script where the SILC Toolkit is located. It is done as simply as: |
| 22 | |
| 23 ./configure | |
| 24 | |
| 25 if pkg-config is installed in your system. If it is isn't it's done as: | |
| 8849 | 26 |
| 27 ./configure --with-silc-libs=/path/to/silc/lib | |
| 28 --with-silc-includes=/path/to/silc/include | |
| 29 | |
| 30 If the Toolkit cannot be located the SILC will not be compiled into the | |
| 31 Gaim. |
