Can you not use MacPorts Python and instead use the Apple supplied Python?

Alternatively, edit the Makefile for mod_wsgi after having run
configure and insert into at start of LDFLAGS options:

  -F/usr/ports/Library/Frameworks

Thus would say something like:

  LDFLAGS =   -F/usr/ports/Library/Frameworks
-L/usr/ports/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/config
... other options

Try that, if that still doesn't work, I will tell you to change
LDFLAGS to something else instead.

I want you to try this first though so can see if I can do that as
alternate work around for other solution, which has problems.

Graham

2009/9/9 John Blaze <[email protected]>:
>
> I'm using Snow Leopard and the above script works fine in FreeBSD
> (production) - this Snow Leopard is driving me nuts.
>
> this is my ls -las
>  0 drwxr-xr-x   12 root  wheel    408 29 Aug 03:38 .
>  0 drwxr-xr-x  631 root  wheel  21454 29 Aug 11:11 ..
> 32 -rw-r--r--    1 root  wheel  44405  8 Jul 02:57 Makefile
> 16 -rw-r--r--    1 root  wheel  18265  8 Jul 02:56 Setup
>  0 -rw-r--r--    1 root  wheel    368  8 Jul 02:56 Setup.config
>  0 -rw-r--r--    1 root  wheel     41  8 Jul 02:56 Setup.local
>  0 -rw-r--r--    1 root  wheel   2077  8 Jul 02:56 config.c
>  0 -rw-r--r--    1 root  wheel   1457  8 Jul 02:56 config.c.in
>  0 -rwxr-xr-x    1 root  wheel   7122  8 Jul 02:56 install-sh
>  8 lrwxr-xr-x    1 root  wheel     15 29 Aug 03:38 libpython2.6.a -
>> ../../../Python
>  0 -rwxr-xr-x    1 root  wheel   7431  8 Jul 02:56 makesetup
> 16 -rw-r--r--    1 root  wheel  20640  8 Jul 02:56 python.o
>
> my otool is
> /usr/ports/apache2/modules/mod_wsgi.so:
>        /usr/ports/Library/Frameworks/Python.framework/Versions/2.6/Python
> (compatibility version 2.6.0, current version 2.6.0)
>        /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current
> version 123.0.0)
>
> and only error Apache gives is:
> [Tue Sep 08 22:26:13 2009] [error] [client 127.0.0.1] Premature end of
> script headers: wsgi_trac_handler.wsgi
>
> On Sep 8, 7:11 pm, Graham Dumpleton <[email protected]>
> wrote:
>> 2009/9/9 John Blaze <[email protected]>:
>>
>>
>>
>>
>>
>>
>>
>> > Hi most of my install problems have been solved, but I keep getting
>> > this message on all me wsgi files: child pid 98608 exit signal Trace/
>> > BPT trap (5)
>>
>> > This works fine
>> > import sys, os
>> > def application(environ, start_response):
>> >    status = '200 OK'
>> >    output = 'Hello World!'
>> >    print >> environ['wsgi.errors'], "application debug #1"
>> >    response_headers = [('Content-type', 'text/plain'),
>> >                        ('Content-Length', str(len(output)))]
>> >    start_response(status, response_headers)
>> >    print >> environ['wsgi.errors'], "application debug #2"
>> >    return [output]
>>
>> > But I simple Trac wsgi file does not
>>
>> > import sys
>> > sys.stdout = sys.stderr
>>
>> > import os
>> > os.environ['TRAC_ENV'] = '/Users/jstates/Sites/Trac/theirry'
>> > os.environ['PYTHON_EGG_CACHE'] = '/Users/jstates/Sites/Trac/theirry/
>> > eggs'
>> > import trac.web.main
>> > application = trac.web.main.dispatch_request
>>
>> > Does that wsgi startup look correct, or what am I doing wrong?
>>
>> Trac problems can come from a few areas.
>>
>> 1. Not setting:
>>
>>   WSGIApplicationGroup %{GLOBAL}
>>
>> This is needed as Python wrappers for subversion only work reliably in
>> main interpreter.
>>
>> 2. Mismatch in expat library used by Apache and by Python. If using
>> Python 2.5 or later, shouldn't be a problem.
>>
>> 3. You are load subversion Apache modules, mod_dav_svn etc, and the
>> version of subversion they use is different to that which Python
>> subversion wrappers are using.
>>
>> 4. Mismatch in database library being used. Often caused by mod_php
>> using a conflicting version.
>>
>> Can you comment on the above and whether they may be an issue or
>> whether you are using Apache module that can conflict.
>>
>> Also ensure you read:
>>
>> http://code.google.com/p/modwsgi/wiki/ApplicationIssueshttp://code.google.com/p/modwsgi/wiki/InstallationIssues
>>
>> Graham
>>
>> Graham
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/modwsgi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to