Re: Broken APXS

2007-07-23 Thread Mike
> >apxs accepts only *.c files as its input. For other extensions it > >doesn't invoke libtool in compile mode and several different issues > >leading to empty Apache module creation. The most probably reason is > >poor regex design. > This kind of invocation: $ apxs -cia mod_cpp.cpp other.C > > S

Re: Broken APXS

2007-07-23 Thread Joe Orton
On Sun, Jul 22, 2007 at 09:18:49AM -0400, Eric Covener wrote: > On 7/22/07, Mike <[EMAIL PROTECTED]> wrote: > >Greetings. > > > >apxs accepts only *.c files as its input. For other extensions it > >doesn't invoke libtool in compile mode and several different issues > >leading to empty Apache module

Re: Broken APXS

2007-07-22 Thread William A. Rowe, Jr.
Eric Covener wrote: > On 7/22/07, Nick Kew <[EMAIL PROTECTED]> wrote: >> On Sun, 22 Jul 2007 09:18:49 -0400 >> "Eric Covener" <[EMAIL PROTECTED]> wrote: >> >> > Seems to behave better w/ the patch below: >> > >> > http://people.apache.org/~covener/apxs-cpp.diff >> >> .cxx? Modules in other languag

Re: Broken APXS

2007-07-22 Thread Eric Covener
On 7/22/07, Nick Kew <[EMAIL PROTECTED]> wrote: On Sun, 22 Jul 2007 09:18:49 -0400 "Eric Covener" <[EMAIL PROTECTED]> wrote: > Seems to behave better w/ the patch below: > > http://people.apache.org/~covener/apxs-cpp.diff .cxx? Modules in other languages? How about adding an environment varia

Re: Broken APXS

2007-07-22 Thread Mike
On Sun, Jul 22, 2007 at 02:32:21PM +0100, Nick Kew wrote: > .cxx? Modules in other languages? Every shared-lib-compilable language (e. g. C++). > How about adding an environment variable? Something like: > > -my $srcs_regex = '\.(' . join('|', @srcs_extensions) . ')$'; > +my $srcs_regex

Re: Broken APXS

2007-07-22 Thread Mike
On Sun, Jul 22, 2007 at 09:18:49AM -0400, Eric Covener wrote: >> apxs accepts only *.c files as its input. For other extensions it >> doesn't invoke libtool in compile mode and several different issues >> leading to empty Apache module creation. The most probably reason is >> poor regex design. >

Re: Broken APXS

2007-07-22 Thread Nick Kew
On Sun, 22 Jul 2007 09:18:49 -0400 "Eric Covener" <[EMAIL PROTECTED]> wrote: > Seems to behave better w/ the patch below: > > http://people.apache.org/~covener/apxs-cpp.diff .cxx? Modules in other languages? How about adding an environment variable? Something like: -my $srcs_regex = '\.(

Re: Broken APXS

2007-07-22 Thread Eric Covener
On 7/22/07, Mike <[EMAIL PROTECTED]> wrote: Greetings. apxs accepts only *.c files as its input. For other extensions it doesn't invoke libtool in compile mode and several different issues leading to empty Apache module creation. The most probably reason is poor regex design. This kind of invo

Re: Broken APXS

2007-07-22 Thread William A. Rowe, Jr.
Mike wrote: > > Where could I find current apxs maintainter? Apache projects don't have component-maintainers the way you might find in bsd and similar hierarchical organizations. The good news is, you found the right place to bring this up. Bill

Broken APXS

2007-07-22 Thread Mike
Greetings. apxs accepts only *.c files as its input. For other extensions it doesn't invoke libtool in compile mode and several different issues leading to empty Apache module creation. The most probably reason is poor regex design. We've been having a nice discussion on modules-dev about fixing a