On 02/20/2014 02:57 PM, Andy Colson wrote:
On 02/20/2014 02:53 PM, Jeff Trawick wrote:
On Thu, Feb 20, 2014 at 3:49 PM, Andy Colson <a...@squeakycode.net 
<mailto:a...@squeakycode.net>> wrote:

    On 02/16/2014 09:36 AM, Steve Hay wrote:

        On 16 February 2014 15:11, Dominic Hargreaves <d...@earth.li 
<mailto:d...@earth.li>> wrote:

            On Sun, Feb 16, 2014 at 11:10:20PM +1100, Carl Brewer wrote:

                Having just downloaded this latest SVN repo, a grep for "2.4" 
in the
                root dir shows a couple of changes, but no explicit mention of 
2.4
                support.

                Before I try it, does it actually support 2.4 yet?


            The Debian project is shipping mod_perl with httpd24 support
            based on 
http://svn.apache.org/repos/__asf/perl/modperl/branches/__httpd24/ 
<http://svn.apache.org/repos/asf/perl/modperl/branches/httpd24/>.
            This appears to be good enough for our needs, so you might like to 
give
            it a try (our packages are based on a somewhat older version of that
            branch, and there seem to be quite a number of changes going in, so
            it's worth giving that a go. I haven't heard about any current 
plans for
            merging this to trunk, though.


        An update on the state of things regarding httpd-2.4 support in 
mod_perl:

        We are working hard to get this done and are 99% of the way there.
        Both volunteers and volunteers' time is limited, though, so progress
        has been slow. A lot of work has taken place in the httpd24 branch,
        and as Dominic says, some Linux distros are already shipping that.

        Further improvements to mod_perl have also been made in the threading
        branch, and in a bid to improve the state of httpd-2.4 support on
        Windows I recently merged the two together in a new branch called
        httpd24threading. This is where current development activity is taking
        place, and we are now sufficiently close that I expect this to be
        merged back to trunk soon.


    I'm on Slackware64 14.1.
    svn co 
http://svn.apache.org/repos/__asf/perl/modperl/branches/__httpd24threading/ 
<http://svn.apache.org/repos/asf/perl/modperl/branches/httpd24threading/> 
mod_perl
    cd mod_perl
    perl Makefile.PL
    ... seemed ok ...
    make
    ... seed ok...
    make test

    make[1]: Leaving directory `/pub/apps/mod_perl/xs'
    /usr/bin/perl5.18.1 -Iblib/arch -Iblib/lib \
    t/TEST -clean
    [warning] setting ulimit to allow core files
    ulimit -c unlimited; /usr/bin/perl5.18.1 /pub/apps/mod_perl/t/TEST -clean
    APACHE_TEST_GROUP= APACHE_TEST_APXS= APACHE_TEST_HTTPD= APACHE_TEST_USER= 
APACHE_TEST_PORT= \
    /usr/bin/perl5.18.1 -Iblib/arch -Iblib/lib \
    t/TEST -bugreport -verbose=0
    [warning] setting ulimit to allow core files
    ulimit -c unlimited; /usr/bin/perl5.18.1 /pub/apps/mod_perl/t/TEST 
-bugreport -verbose=0
    /usr/sbin/httpd  -d /pub/apps/mod_perl/t -f 
/pub/apps/mod_perl/t/conf/__httpd.conf -D APACHE2 -D PERL_USEITHREADS
    using Apache/2.4.6 (event MPM)

    waiting 300 seconds for server to start: .httpd: Syntax error on line 97 of 
/pub/apps/mod_perl/t/conf/__httpd.conf: Cannot load 
/usr/lib64/httpd/modules/mod___apreq2.so into server: 
/usr/lib64/httpd/modules/mod___apreq2.so: undefined symbol: ap_log_error
    [  error]
    server has died with status 255 (t/logs/error_log wasn't created, start the 
server in the debug mode)
    sh: line 1:  1523 Terminated              /usr/bin/perl5.18.1 
/pub/apps/mod_perl/t/TEST -bugreport -verbose=0
    make: *** [run_tests] Error 143

    Any hints?

    -Andy


/usr/lib64/httpd/modules/mod_apreq2.so isn't built for httpd 2.4, which has no 
ap_log_error symbol (ap_log_error is a macro that maps to something else).

--
Born in Roswell... married an alien...
http://emptyhammock.com/


Oh.. a hold over from when I was previously playing with mod_perl.  I'll blow 
it away and try again.

Thanks

-Andy



Got another error.  Looks like an apache config problem?


ulimit -c unlimited; /usr/bin/perl5.18.1 /pub/apps/mod_perl/t/TEST -bugreport 
-verbose=0
/usr/sbin/httpd  -d /pub/apps/mod_perl/t -f 
/pub/apps/mod_perl/t/conf/httpd.conf -D APACHE2 -D PERL_USEITHREADS
using Apache/2.4.6 (event MPM)

waiting 300 seconds for server to start: .[Thu Feb 20 15:03:57.520565 2014] 
[env:warn] [pid 26673:tid 140126673885056] AH01506: PassEnv variable 
LD_LIBRARY_PATH was undefined
AH00526: Syntax error on line 1194 of /pub/apps/mod_perl/t/conf/httpd.conf:
Invalid command 'Order', perhaps misspelled or defined by a module not included 
in the server configuration
[  error]
server has died with status 255 (t/logs/error_log wasn't created, start the 
server in the debug mode)
sh: line 1: 26577 Terminated              /usr/bin/perl5.18.1 
/pub/apps/mod_perl/t/TEST -bugreport -verbose=0
make: *** [run_tests] Error 143

at line 1194 of /pub/apps/mod_perl/t/conf/httpd.conf I find:
            <IfModule mod_authz_host.c>
                Order Deny,Allow
                Deny from all
                Allow from localhost
            </IfModule>

which is old style auth.. it should be more like:  "Require all granted", yes?

I do have a bunch of modules commented out, specifically the mod_access_compat 
module which when I restore it, does make the test work (woot!).

I tried to edit the file, but it must be regenerated cuz it errored out again.

So at this point, I can report:  Awesome!

Thanks,

-Andy

Reply via email to