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 23, 2007, 4:44:43 PM (17 years ago)
- Author:
-
John Bailey
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v6
|
v7
|
|
182 | 182 | After the above, you should be able to use Pidgin by running `$HOME/bin/pidgin`. In some cases it may be necessary to set `LD_LIBRARY_PATH=$HOME/lib` before running Pidgin. |
183 | 183 | |
| 184 | === Non-root Including GNUTLS === |
| 185 | These instructions have been tested using the exact same versions of libraries specified in the GNUTLS section above, with the sole exception of libtasn1. GNUTLS includes a version of libtasn1 which seems to work. Install the libraries as follows. |
| 186 | |
| 187 | libgpg-error: |
| 188 | {{{ |
| 189 | ~/libgpg-error$ ./configure --prefix=$HOME |
| 190 | ~/libgpg-error$ make |
| 191 | ~/libgpg-error$ make install |
| 192 | }}} |
| 193 | |
| 194 | libgcrypt: |
| 195 | {{{ |
| 196 | # fix the configure script! |
| 197 | ~/libgcrypt$ perl -pi -e 's/ --prefix=\$gpg_error_config_prefix//' configure |
| 198 | ~/libgcrypt$ ./configure --prefix=$HOME --with-gpg-error-prefix=$HOME |
| 199 | ~/libgcrypt$ make |
| 200 | ~/libgcrypt$ make install |
| 201 | }}} |
| 202 | |
| 203 | GNUTLS: |
| 204 | {{{ |
| 205 | ~/gnutls$ LD_LIBRARY_PATH=$HOME/lib ./configure --prefix=$HOME --with-libgcrypt=$HOME |
| 206 | ~/gnutls$ make |
| 207 | ~/gnutls$ make install |
| 208 | }}} |
| 209 | |
| 210 | Pidgin: |
| 211 | {{{ |
| 212 | ~/pidgin$ ./configure --prefix=$HOME --enable-gnutls=yes \ |
| 213 | > --with-gnutls-libs=$HOME/lib --with-gnutls-includes=$HOME/include |
| 214 | ~/pidgin$ make |
| 215 | ~/pidgin$ make install |
| 216 | }}} |
| 217 | You should now be able to use Pidgin by running `$HOME/bin/pidgin`. In some cases, it might be necessary to set |
| 218 | `LD_LIBRARY_PATH=$HOME/lib` before running Pidgin. |
| 219 | |
| 220 | == Troubleshooting == |
| 221 | |
184 | 222 | == Random Questions == |
185 | 223 | |
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!