Re: mod_perl always segfault on thread creation

2012-08-22 Thread Damyan Ivanov
-=| hack bear, 22.08.2012 16:16:33 -0700 |=- > > I'm doing a dynamic build (the default setting I believe.) here are the ldd > results (that's how we can tell, right?) To me this seems like a static build. Yes, it links dynamicly to system libraries, but the perl library is staticly linked. Com

Re: Mod_Perl2 getting started

2012-08-22 Thread Randolf Richardson
> Thank you - that's one of the better guides I've seen. > Funny I didn“t catch it through Google. Thanks for the feedback. It's pretty new so I think it will be some time before Google figures out where to place it in the search results. If you know of anyone else who would find

RE: mod_perl always segfault on thread creation

2012-08-22 Thread hack bear
I'm doing a dynamic build (the default setting I believe.) here are the ldd results (that's how we can tell, right?) # ldd /usr/bin/perl linux-vdso.so.1 => (0x72dff000) libnsl.so.1 => /lib64/libnsl.so.1 (0x0039c3c0) libdl.so.2 => /lib64/libdl.so.2 (0x0039bec0

RE: mod_perl always segfault on thread creation

2012-08-22 Thread Doug Hunt
Hi Rommel: Are you building statically or dynamically? I had a problem with segfaulting mod_perl, the solution for which eluded me for a long time. I had been doing a static apache/mod_perl build on CentOS 6.3 (similar to RedHat Enterprise 6.3). I finally cured the problem by just doing a d

RE: mod_perl always segfault on thread creation

2012-08-22 Thread hack bear
Thanks but the trick doesn't seem to help. First the instruction seems wrong. With it, the resulting perl executable does not even have useithreads defined. Then I try CFLAGS='-m64 -mtune=nocona' ./Configure -Dinstallusrbinperl -Dusethreads -Duseithreads -Dprefix=/usr -des -A ccflags="-fPIC -

AW: Mod_Perl2 getting started

2012-08-22 Thread Alexander.Elgert
http://perl.apache.org/docs/1.0/guide/porting.html -- Deutsche Telekom AG Seamless ICT Security Infrastructure & Management im Auftrag T-Systems International GmbH Dipl. Inf Alexander Elgert Langwadener Strasse 17 64625 Bensheim +49 176 22 717 661 (Mobil) +49 671 83419-12 (Tel) +49 671 83419-30 (F

Re: Mod_Perl2 getting started

2012-08-22 Thread Keywan Ghadami
Hi Joe, have also a look at Frameworks and Interfaces like PSGI or Catalyst. They provide a more generic way to do these things: "parsed request, handles args as querystrings and Post data, uploads a file or two, and returns an html page to the requestor" that way you can use mod_perl in the b