michael starke
starke.m at gmx.de
Mon Jan 15 06:19:19 EST 2007
Well, i fixed it =) I found out, that my installtion of apache2 was incorret, i had no mod_so support (i thought it was always enabled on apache2.x) but with a rebuilt (--enable-modules-shared=all --enable-so) i started the mod_python built (no makefile alteration, just plain apxs and python options) and it worked out well. Thanks for your patience, i was having a hard time and did not realize the problem was in apache not in mod_python. Maybe if someone else has the same problem you know what to aks too =) Greetings, michael On 12.01.2007, at 11:06, Graham Dumpleton wrote: > BTW, I know you want to use Python 2.4, but can you go back and > actually > try the Python 2.3.5 supplied with the operating system as standard > instead > to see if that works. > > Graham > > On 12/01/2007, at 1:50 PM, Graham Dumpleton wrote: > >> michael starke wrote .. >>> I'm confused, either i'm making some stupid mistake all the time or >>> it's still not working. >>> I removed the 3 arguments one by one and still, the built fails. >>> Damn, is there a way to get the mod built on another machine and >>> then >>> just load up the installtion to the macbook, hoping that it works? >> >> Are you doing a: >> >> make clean >> >> between build attempts when changing the makefile? >> >> Can you run: >> >> gcc -v >> >> again so can see what version number it is now saying? >> >> Graham >> >> >>> On 11.01.2007, at 22:07, Graham Dumpleton wrote: >>> >>>> >>>> On 12/01/2007, at 2:48 AM, michael starke wrote: >>>> >>>>> Even the routines make mistakes, makes them look more human. >>>>> >>>>> I did what you suggested, the line in my makefile (after >>>>> configure, i told you, am new to this =) looks like this: >>>>> >>>>> LDFLAGS= -Wl,-framework,Python -u _PyMac_Error $ >>>>> (PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) - >>>>> arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g >>>>> >>>>> I changed it to >>>>> >>>>> LDFLAGS= -Wl,-framework,Python -u _PyMac_Error -arch i386 -arch >>>>> ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g >>>> >>>> Try taking out: >>>> >>>> -arch ppc >>>> >>>> and if still not working, also take out: >>>> >>>> -arch i386 >>>> >>>> You could even drop the: >>>> >>>> -isysroot /Developer/SDKs/MacOSX10.4u.sdk >>>> >>>> which I have never seen before and may be screwing up libtool. >>>> >>>> Graham >>>>
|