PL/sh Installation Instructions
===============================

You need to have PostgreSQL 7.1 or later, and you need to have the
server include files available, either installed or in the PostgreSQL
source tree.

To build and install PL/sh, use this procedure: 

CPPFLAGS=-I/where/ever/pgsql/src/include ./configure --prefix=YOUR_CHOICE
make
make install

To declare the language in a database, use 

psql -d DBNAME -f PREFIX/share/pgplsh/createlang_pgplsh.sql

with a server running.  To drop it, use 'droplang plsh' in PostgreSQL
7.2 or later, or DROP FUNCTION plsh_handler(); DROP LANGUAGE 'plsh';
in earlier versions.
