INSTALL

perdition
Mail retrieval proxy server
Copyright (C) 1999-2003  Horms <horms@verge.net.au>
----------------------------------------------------------------------

To install perdition 
--------------------

tar zxf perdition-1.11.tar.gz
cd perdition-1.11
./configure --enable-static [--prefix=/usr]
make
make install


To build RPMS
-------------

rpmbuild -ta perdition-1.11.tar.gz

or

cd perdition-1.11
./configure --enable-static --prefix=/usr
make distcheck
rpmbuild -ta perdition-1.11.tar.gz

N.B: If you have an older version of rpm you may need to use
     the "rpm" command instead of "rpmbuild". The command line
     options should be the same.


To build Debian Packages
------------------------

dpkg-build [-us] [-uc]

You will need to create a popmap and decide on your invocation method.
For details on this please see the README


To install on Solaris 8
-----------------------

You may need to set some envirnoment variables to aid the build process.
The following worked for me using a bourne shell. Make apropriate
adjustments if you are using a C shell.

CPPFLAGS="-I/usr/local/include/"
export CPPFLAGS
LDFLAGS="-L/usr/local/lib/"
export LDFLAGS

cd perdition-1.11
./configure --enable-static [--prefix=/usr]
make
make install


To install on FreeBSD 4.2-RELEASE
---------------------------------

You may need to set some envirnoment variables to aid the build process.
The following worked for me using a bourne shell. Make apropriate
adjustments if you are using a C shell.

CPPFLAGS="-I/usr/local/include/"
export CPPFLAGS
LDFLAGS="-L/usr/local/lib/"
export LDFLAGS

The Makefiles that are generated may not work with make so use
gmake instead.

cd perdition-1.11
./configure --enable-static [--prefix=/usr]
gmake
gmake install



