=================================
PostgreSQL configuration settings
=================================

1. edit src/include/config.h to modify the following parameters
to:

#define DEF_MAXBACKENDS 105
#define BLCKSZ  4096

2. compile package with:

./configure
gmake clean
gmake COPT="-m486" all
gmake install

3. raise kernel shared memory limits

# allow for 500,000,000 bytes of shared memory (need to be root to do
this)
echo "500000000" > /proc/sys/kernel/shmmax

