Code:
connobject.c:142: error: request for member 'next' in something not a structure or union
apxs:Error: Command failed with rc=65536
.
make[1]: *** [mod_python.so] Error 1
make[1]: Leaving directory `/home/coremail/mod_python-3.3.1/src'
make: *** [do_dso] Error 2

Error: Status 1 encountered during processing.

Bug reported at: Gentoo Bug 230211 - www-apache/mod_python-3.3.1 - connobject.c:142: error: request for member 'next' in something not a structure or union

Solution:

You can download the source and implement a suggested fix - on line 142 of
connobject.c you can replace

Code:
!(b == APR_BRIGADE_SENTINEL(b) ||
with:

Code:
!(b == APR_BRIGADE_SENTINEL(bb) ||
suggested here:
[Fwd: connobject.c broke with apr 1.3.2]

However this is obviously untested, though it compiles fine.