They are part of the postgres source distibution. Note that tsearch is only in postgres 7.2.
To install contrib/fulltextindex, you'd do something like this:
- Download the source
- run configure
- cd contrib/fulltextindex
- gmake all
- gmake install
Then you read the docs to see how to use the contrib.
Same for tsearch. There's a gmake installcheck option though as well.
Chris