1====================
2Release version:
3====================
4
5First, unpack the plugin, and cd to its directory.
6
7Running ./configure:
8
9  If you have Gaim installed in a system directory, you should be able to just run
10  ./configure
11
12  If you have Gaim installed in /usr/local, you may need to add /usr/local/lib/pkgconfig
13  to your PKG_CONFIG_PATH environment variable first.  So run it like
14
15  PKG_CONFIG_PATH=$(PKG_CONFIG_PATH):/usr/local/lib/pkgconfig ./configure
16
17  If your NSS/NSPR libraries are installed somewhere random, you may need to add
18  something else to your PKG_CONFIG_PATH for them, or use one of the configure options:
19
20--with-nspr-includes=PATH
21  Specify the location of the Mozilla NSPR include files.  Make sure that
22  they're installed (the Redhat package used to be mozilla-nspr-devel, and is now
23  seamonkey-nss-devel, for example).
24  PATH should be where the nspr.h header file was installed to.
25
26--with-nss-includes=PATH
27  Ditto, but the Mozilla NSS include files.  Redhat package is
28  seamonkey-nss-devel.  Look for nssbase.h
29
30--with-nspr-libs=PATH
31  Specify the location of the NSPR runtime libraries (libnspr4.so or
32  libnspr4.a)
33
34--with-nss-libs=PATH
35  Specify the location of the NSS runtime libraries (libnss3.so or
36  libnss3.a)
37
38If you specified a --prefix when compiling Gaim, you should specify it for the plugin as well.
39
40NOTE:  If you update Gaim, you should re-compile and re-install the plugin, otherwise
41you will probably see some strange behavior.
42
43
44==============
45CVS version:
46==============
47
48First run ./autogen.sh
49
50Then follow the above instructions.
51