VERSION 2.3
===========

python2.3 setup.py build_ext --force
	--include-dirs /segfs/bliss/depot/pythonbliss/installdir/suse72/extensions/include/python
	--build-lib ./lib/python2.3/suse72

Same thing for suse82, solaris7, solaris8


OLDER VERSIONS
==============

Just to give you some hint about how to generate the shared library for a certain platform:

If you type:

python setup.py build

while being on this directory, the new library will be created somewhere down the ./build path (watch the screen output). However, if you want to generate the library in a specfific directory, you should type:


python setup.py build --force --build-plat ./lib/hpux102
python setup.py build --force --build-plat ./lib/suse62 
python setup.py build --force --build-plat ./lib/solaris25
python setup.py build --force --build-plat ./lib/solaris7 
python setup.py build --force --build-plat ./lib/solaris8 

depending on which machine you are.

