Trying to install mod_python 3.3.1 things seem to be smooth until I got this error
connobject.c: In function ‘_conn_read’:
connobject.c:142: error: request for member ‘next’ in something not a structure or union
apxs:Error: Command failed with rc=65536
Searching a bit and I got the solution by using the Apache SVN mod_python, which you can take from here: https://svn.apache.org/repos/asf/quetzalcoatl/mod_python/trunk
This fixed the problem during make.
Hope this help others, too.



Thanks for sharing! It was very helpful.
Another way to make mod_python work is replacing the line 142
!(b == APR_BRIGADE_SENTINEL(b) ||
with
!(b == APR_BRIGADE_SENTINEL(bb) ||