Package: libapache2-mod-python / 3.3.1-11

Metadata

Package Version Patches format
libapache2-mod-python 3.3.1-11 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
01_configure.patch | (download)

configure.in | 18 10 + 8 - 0 !
1 file changed, 10 insertions(+), 8 deletions(-)

 patch configure script.
 Remove apache version check for debian package, since we don't want to
 build-depend on apache2.
02_makefile.patch | (download)

dist/Makefile.in | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 patch makefile to issue correct setup.py call.
04_autoconf_python_multiarch.patch | (download)

configure.in | 38 3 + 35 - 0 !
1 file changed, 3 insertions(+), 35 deletions(-)

 drop custom python detection and use pkg-config instead.
 Drop custom Python detection and use pkg-config instead. This fixes
 FTBFS due to multiarch include paths. Not sure if this should be
 fowrarded or not 
 (see https://lists.ubuntu.com/archives/ubuntu-devel/2013-January/036291.html)
05_fix_spelling.patch | (download)

src/requestobject.c | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 simple spelling fix in python docstring (thanks lintian)
10_bts521965.patch | (download)

src/connobject.c | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 fix a ftbfs due to new apr > 1.3.x (bb is the bucket brigade)
20_apache24.patch | (download)

src/connobject.c | 4 2 + 2 - 0 !
src/mod_python.c | 4 2 + 2 - 0 !
src/requestobject.c | 5 5 + 0 - 0 !
src/serverobject.c | 6 4 + 2 - 0 !
4 files changed, 13 insertions(+), 6 deletions(-)

 changes to build with apache 2.4
 This is a patch of minimal changes to compile mod_python with Apace 2.4.
 Changes mostly based around:
 http://httpd.apache.org/docs/2.4/developer/new_api_2_4.html
 .
 This does not change any internal properties that mod_python exposes
 (e.g. it still exposes remote_ip while Apache internally now uses
 client_ip).
 .
 This currently breaks the Request.requires() Python method which will now
 always return an empty tuple because the function was not rewritten to
 not use ap_requires() which is no longer available. The above API changes
 document contains some pointers on what should be done.