Ok, I've found the problem: Apache2::Build::apr_generation() is now returning 2 
instead of 1, but the apxs scripts on Windows are still called 
ap[ru]-1-config.bat.

I could easily tweak apr_generation() to account for that, but I guess the 
correct fix is to change apxs on Windows?

Where does apxs come from on *nix? On Windows I've long used the one at
http://perl.apache.org/dist/win32-bin/apxs_win32-0.6.tar.gz
with a minor (local) change to line 107 of apxs_win32. Really I'd like to put 
out a 0.7, but I've no idea how to create
http://perl.apache.org/dist/win32-bin/apxs_win32-0.7.tar.gz

Shall I make a 0.7 and put it in, say, http://people.apache.org/~stevehay/, for 
now, and then look at updating the perl.apache.org location later if someone 
knows how to?


> -----Original Message-----
> From: Steve Hay [mailto:steve....@verosoftware.com]
> Sent: 26 July 2013 08:55
> To: Jan Kaluza
> Cc: dev@perl.apache.org
> Subject: RE: [httpd24 branch] apr-ext crashes
> 
> APR.dll is indeed loaded and the boot function called, but
> APR_initialize() is a no-op because MP_HAVE_APR_LIBS is oddly not
> defined.
> 
> That's set by get_DEFINE() in the top-level Makefile.PL and goes wrong
> because $build->apru_link_flags is returning nothing. In a build of
> trunk against httpd-2.2 it returns " -L"C:\apache\lib" -llibaprutil-1
> -L"C:\apache\lib" -llibapr-1" as expected.
> 
> Knowing this now, I also realize that my changes to
> xs/APR/APR/Makefile.PL to use $build->apache_libs instead of $build-
> >apru_link_flags have been wrong. The real problem there was that
> apru_link_flags is blank when it shouldn't be, and is also the problem
> here.
> 
> I will revert those other changes when I've worked out why
> apru_link_flags is coming out blank, but right now I can't see why it
> works in trunk but not in httpd24. I will stare harder and surely find
> it sooner or later...
> 
> 
> > -----Original Message-----
> > From: Jan Kaluza [mailto:jkal...@redhat.com]
> > Sent: 22 July 2013 14:01
> > To: Steve Hay
> > Cc: dev@perl.apache.org
> > Subject: Re: [httpd24 branch] apr-ext crashes
> >
> > Isn't APR.so loaded dynamically and boot_APR called after that?
> > If it's like that, maybe APR.so is not loaded correctly on Windows?
> >
> > ----- Original Message -----
> > > apr_initialize is called in boot_APR in xs/APR/APR/APR.c, but I'm
> > > not able to find out from where it is called...
> > >
> > > ----- Original Message -----
> > > > Hm, maybe it's caused by the fact that apr_app_initialize is not
> > > > called anywhere in the tests which don't run as part of mod_perl.
> > > >
> > > > I think it's not needed to call apr_app_initialize() in the tests
> > > > which call apr_* methods on httpd's side (like in httpd handlers),
> > > > but it's needed to call that method in the tests which run
> without
> > > > httpd (like brigade.t).
> > > >
> > > > Jan Kaluza
> > > >
> > > > ----- Original Message -----
> > > > > Jan Kaluza wrote on 2013-07-22:
> > > > >  haven't finished with the other thread ( wrote on but I
> thought
> > > > > I'd  start  new threads for discussing:
> > > > > >> closely at apr-ext/brigade.t in a debug build. With the
> trunk
> > > > > >> and
> > > > > >> httpd-2.2 the script can be run at the command-line as
> > > > > >>
> > > > > >>   perl.exe -T -Iblib\arch -Iblib\lib -It\lib t\apr-ext
> > > > > >> t\brigade.t but with the httpd24 branch and httpd-2.4 it
> > > > > >> crashes in the
> > > > > >> APR::Pool->new() call right at the start of test().
> > > > > >>
> > > > > >> In mpxs_apr_pool_create() I have a non-NULL parent_pool_obj
> > but
> > > > > >> the first line of the function,
> > > > > >>
> > > > > >>   apr_pool_t *parent_pool =
> > mpxs_sv_object_deref(parent_pool_obj,
> > > > > >>   apr_pool_t);
> > > > > >> sets parent_pool to NULL, whence apr_pool_create() crashes
> > > > > >> because it tries to dereference parent_pool.
> > > > > >
> > > > > > I think this is not true. In the test you mentioned, there's
> > "my
> > > > > > $p = APR::Pool->new();". parent_pool_obj in
> > mpxs_apr_pool_create
> > > > > > is not Perl object and that's the reason why
> > > > > > mpxs_sv_object_deref returns NULL.
> > > > > > However, this is still valid, because if you call
> > > > > > apr_pool_create() with NULL parent, it creates new "root"
> pool
> > (see [1]).
> > > > > >
> > > > > > Could you try to get full backtrace from this crash?
> > > > > >
> > > > >
> > > > > See below. In fact, apr_pool_create_ex() contains this:
> > > > >
> > > > >     if (!parent)
> > > > >         parent = global_pool;
> > > > >
> > > > > but global_pool is also NULL, so it still crashes when it
> > reaches:
> > > > >
> > > > >     if (allocator == NULL)
> > > > >         allocator = parent->allocator;
> > > > >
> > > > > Setting a breakpoint in apr_pool_initialize() shows it is not
> > > > > getting called, which is presumably why global_pool is NULL.
> > > > >
> > > > >
> > > > > >     libapr-1.dll!apr_pool_create_ex(apr_pool_t * * newpool,
> > apr_pool_t *
> > > > > >     parent, int (int)* abort_fn, apr_allocator_t * allocator)
> > Line 889 +
> > > > > >     0x3
> > > > > >     bytes   C
> > > > >       Pool.dll!mpxs_apr_pool_create(interpreter * my_perl, sv *
> > > > >       parent_pool_obj)
> > > > >       Line 170        C
> > > > >       Pool.dll!XS_APR__Pool_new(interpreter * my_perl, cv * cv)
> > Line 123 +
> > > > >       0xd
> > > > >       bytes   C
> > > > >       perl518.dll!Perl_pp_entersub(interpreter * my_perl)  Line
> > 2875 + 0x12
> > > > >       bytes
> > > > >               C
> > > > >       perl518.dll!Perl_runops_debug(interpreter * my_perl)  Line
> > 2213 + 0xf
> > > > >       bytes
> > > > >               C
> > > > >       perl518.dll!S_run_body(interpreter * my_perl, long
> > oldscope)  Line 2467
> > > > >       +
> > > > >       0xf bytes       C
> > > > >       perl518.dll!perl_run(interpreter * my_perl)  Line 2386
> >     C
> > > > >       perl518.dll!RunPerl(int argc, char * * argv, char * * env)
> > Line 270 +
> > > > >       0x9
> > > > >       bytes   C
> > > > >       perl.exe!main(int argc, char * * argv, char * * env)  Line
> > 23 + 0x12
> > > > >       bytes
> > > > >               C
> > > > >       perl.exe!__tmainCRTStartup()  Line 555 + 0x17 bytes     C
> > > > >       kernel32.dll!@BaseThreadInitThunk@12()  + 0x12 bytes
> > > > >       ntdll.dll!___RtlUserThreadStart@8()  + 0x27 bytes
> > > > >       ntdll.dll!__RtlUserThreadStart@8()  + 0x1b bytes
> > > > >
> > > > >
> > > >
> > > > -----------------------------------------------------------------
> -
> > > > -
> > -
> > > > - To unsubscribe, e-mail: dev-unsubscr...@perl.apache.org For
> > > > additional commands, e-mail: dev-h...@perl.apache.org
> > > >
> > > >
> > >
> 
> -----------------------
>  ssi,-i vnbree.aer
> rdtn mn,-i ve@rac.g

Reply via email to