Changes between Initial Version and Version 3 of Ticket #8296


Ignore:
Timestamp:
Mar 24, 2016, 3:38:49 PM (8 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8296

    • Property Status changed from new to closed
    • Property Cc mww@… added
    • Property Resolution changed from to fixed
    • Property Port mod_python added
  • Ticket #8296 – Description

    initial v3  
    33There's a real nasty bug in mod_python 3.2.8 when built against the latest versions of APR (1.2.x) which manifests itself thusly:
    44
     5{{{
    56dyld: lazy symbol binding failed: Symbol not found: _apr_sockaddr_port_get
    67   Referenced from: /opt/local/apache2/modules/mod_python.so
     
    1314[Tue Mar 28 15:26:19 2006] [notice] child pid 7304 exit signal Trace/
    1415BPT trap (5)
     16}}}
    1517
    1618The attached patch against mod_python resolves this issue.  It would be great if the darwinports package included the patch.
    1719
    1820-- BEGIN PATCH --
    19 
     21{{{
    2022diff --speed-large-files --minimal -Nru mod_python-3.2.8.orig/src/connobject.c mod_python-3.2.8/src/connobject.c
    2123--- mod_python-3.2.8.orig/src/connobject.c      2006-03-08 01:57:06.753128000 -0500
     
    7375         f = open(CONFIG, "w")
    7476         f.write(str(s))
     77}}}