In debian sid python wrapper does not build because the
python version test in aclocal fails. The problem is
that python2.2 module returns 2.2.3+ as sys.version[0].
Changing
pyver = map(string.atoi, string.split(pyver, '.'))
to
pyver = map(string.atoi, string.split(pyver[:3], '.'))
solves the problem.
--
Juan Manuel Gimeno <jmgimeno@jazzfree.com>