Trac is being migrated to new services! Issues can be found in our new
YouTrack instance and WIKI pages can be found on our
website.
- Timestamp:
-
May 19, 2007, 2:47:10 AM (17 years ago)
- Author:
-
John Bailey
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v3
|
v4
|
|
63 | 63 | |
64 | 64 | === OpenBSD 3.4 === |
65 | | Compile from source. See the notes below in GNUTLS versions that have been reported to work. |
| 65 | Compile from source. See the notes below for GNUTLS versions that have been reported to work. |
66 | 66 | |
67 | 67 | === Red Hat Linux 9 and earlier === |
… |
… |
|
104 | 104 | I strongly recommend you use pre-packaged binaries where possible, however if you MUST use source, these tips might help you. Either GNUTLS or Mozilla NSS and NSPR will work. I've witnessed more success with NSS and NSPR. |
105 | 105 | |
| 106 | === Mozilla NSS and NSPR === |
| 107 | [ftp://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_9_2_RTM/src/nss-3.9.2.tar.gz Get the NSS and NSPR source package] (despite its name, the package includes both NSS and NSPR). |
| 108 | |
| 109 | Once NSS and NSPR are built and installed, run Pidgin's configure script similarly to this (replace `$INCDIR` with the directory the .h files are in and replace `$LIBDIR` with the directory the .so files are in): |
| 110 | {{{ |
| 111 | ~/pidgin$ ./configure --with-nspr-includes=$INCDIR --with-nspr-libs=$LIBDIR \ |
| 112 | > --with-nss-includes=$INCDIR --with-nss-libs=$LIBDIR |
| 113 | }}} |
| 114 | |
| 115 | If you can't add to `/etc/ld.so.conf` (or your *nix OS doesn't have one), set the environment variable `LD_LIBRARY_PATH` instead, either before running Pidgin or (for Bourne and bash shells) on the Pidgin command line, like so: |
| 116 | {{{ |
| 117 | (csh) |
| 118 | ~$ setenv LD_LIBRARY_PATH /usr/lib/mozilla-1.4 |
| 119 | |
| 120 | (sh/bash) |
| 121 | ~$ LD_LIBRARY_PATH=/usr/lib/mozilla-1.4 ; export LD_LIBRARY_PATH |
| 122 | |
| 123 | (sh/bash on Pidgin command line) |
| 124 | ~$ LD_LIBRARY_PATH=/usr/lib/mozilla-1.4 pidgin |
| 125 | }}} |
| 126 | |
| 127 | The notes below on installing NSS and NSPR will probably be helpful. |
| 128 | |
106 | 129 | == Random Questions == |
107 | 130 | |
All information, including names and email addresses, entered onto this website or sent to mailing lists affiliated with this website will be public. Do not post confidential information, especially passwords!