RE: mod_webapp and apache 2.0

2001-12-06 Thread GAWLAS,JULIUS (HP-Cupertino,ex1)
and you don't have to hardwire it into mod_webapp sources. hope that helps Julius > -Original Message- > From: Justin Erenkrantz [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 06, 2001 12:39 AM > To: Tomcat Developers List > Subject: Re: mod_webapp and apach

Re: mod_webapp and apache 2.0

2001-12-06 Thread Justin Erenkrantz
On Wed, Dec 05, 2001 at 07:29:58PM -0800, Charles Yates wrote: > >On Wed, Dec 05, 2001 at 09:34:55AM -0800, Charles Yates wrote: > >> After getting errors from "apachectl configtest" relating > >>to invalid port I added a Port directive to httpd.conf and got > >>an error that Port directive had

Re: mod_webapp and apache 2.0

2001-12-05 Thread Charles Yates
>On Wed, Dec 05, 2001 at 09:34:55AM -0800, Charles Yates wrote: >>After getting errors from "apachectl configtest" relating >> to invalid port I added a Port directive to httpd.conf and got >> an error that Port directive had been replaced by Listen. I then >> removed my Port directive, hacke

Re: mod_webapp and apache 2.0

2001-12-05 Thread Justin Erenkrantz
On Wed, Dec 05, 2001 at 09:34:55AM -0800, Charles Yates wrote: >After getting errors from "apachectl configtest" relating > to invalid port I added a Port directive to httpd.conf and got > an error that Port directive had been replaced by Listen. I then > removed my Port directive, hacked on

mod_webapp and apache 2.0

2001-12-05 Thread Charles Yates
After getting errors from "apachectl configtest" relating to invalid port I added a Port directive to httpd.conf and got an error that Port directive had been replaced by Listen. I then removed my Port directive, hacked on webapp.c and wa_config.c to hard code server Port references and . . .

[PATCH] mod_webapp and Apache 2.0

2001-12-05 Thread Justin Erenkrantz
Gets rid of lame warnings against latest httpd-2.0 and APR. -- justin Index: webapp/apache-2.0/mod_webapp.c === RCS file: /home/cvspublic/jakarta-tomcat-connectors/webapp/apache-2.0/mod_webapp.c,v retrieving revision 1.6 diff -u -r1.

Re: Build system for mod_webapp and Apache 2.0

2001-09-05 Thread Ryan Bloom
On Wednesday 05 September 2001 09:57, jean-frederic clere wrote: > Ryan Bloom wrote: > > On Wednesday 05 September 2001 04:13, jean-frederic clere wrote: > > > > If you don't remove the --disable-shared, then libtool 1.4 can't compile > > mod_webapp as a dynamic library. > > I just want a DSO file

Re: Build system for mod_webapp and Apache 2.0

2001-09-05 Thread jean-frederic clere
Ryan Bloom wrote: > > On Wednesday 05 September 2001 04:13, jean-frederic clere wrote: > > If you don't remove the --disable-shared, then libtool 1.4 can't compile > mod_webapp as a dynamic library. I just want a DSO file... - On my Linux if I remove the --disable-shared to the APR, libtool co

Re: Build system for mod_webapp and Apache 2.0

2001-09-05 Thread Ryan Bloom
On Wednesday 05 September 2001 04:13, jean-frederic clere wrote: If you don't remove the --disable-shared, then libtool 1.4 can't compile mod_webapp as a dynamic library. It really sucks, but complain to the libtool developers. That flg must go, or we break anybody who tries to use the latest

Re: Build system for mod_webapp and Apache 2.0

2001-09-05 Thread jean-frederic clere
Hi, I have committed it. Note that the --disable-shared MUST NOT be removed otherwise libtool uses the dynamic libraries and we want it to use the static ones. Cheers Jean-frederic Ryan Bloom wrote: > > > > > LOCAL_HEADER([Configuring APR]) > > > > LOCAL_FILTEREXEC( > > > > - [./configure --

Re: Build system for mod_webapp and Apache 2.0

2001-08-31 Thread Ryan Bloom
> > > LOCAL_HEADER([Configuring APR]) > > > LOCAL_FILTEREXEC( > > > - [./configure --enable-static --disable-shared --disable-threads], > > > + [./configure --enable-static --disable-threads], > > > ["APR configure"]) > > > if ${TEST} "${ret}" -ne "0" > > > then > > > > Hmm... I'd like to rely

Re: Build system for mod_webapp and Apache 2.0

2001-08-31 Thread Pier Fumagalli
"Ryan Bloom" <[EMAIL PROTECTED]> wrote: > >> Hmm... I'd like to rely on the APR code coming with Apache 2.0 instead of >> building our local copy with Apache 2.0... (I'll see what I can figure out, >> hoping that 2.0 works on my OS/X box :) > > Oh, if that's what you want to do, I can make that

Re: Build system for mod_webapp and Apache 2.0

2001-08-31 Thread Ryan Bloom
On Friday 31 August 2001 10:36, Pier Fumagalli wrote: > > +TARGET="${SRCDIR}/apache-2.0" > > +makefile="apache-2.0/Makefile" > > +AC_MSG_RESULT([setting target module to... ${TARGET}]) > > + ] > > +) > > +AC_SUBST(TARGET) > > + > > +dnl > > Wasn't APXS for 2.0 completely broken? That'

Re: Build system for mod_webapp and Apache 2.0

2001-08-31 Thread Pier Fumagalli
"Ryan Bloom" <[EMAIL PROTECTED]> wrote: > > Hi everybody, I'm new to the list, but for anybody who doesn't know me, > I have been pretty active on httpd 2.0. DOH! :) Hi Ryan :) > I decided to port mod_webapp last week, and Pier committed the code for me, > but the build system isn't there, so

Re: Build system for mod_webapp and Apache 2.0

2001-08-31 Thread jean-frederic clere
Ryan Bloom wrote: > > On Thursday 30 August 2001 01:10, jean-frederic clere wrote: > > Ryan Bloom wrote: > > > Hi everybody, I'm new to the list, but for anybody who doesn't know me, > > > I have been pretty active on httpd 2.0. I decided to port mod_webapp > > > last week, and Pier committed t

Re: Build system for mod_webapp and Apache 2.0

2001-08-30 Thread Ryan Bloom
On Thursday 30 August 2001 01:10, jean-frederic clere wrote: > Ryan Bloom wrote: > > Hi everybody, I'm new to the list, but for anybody who doesn't know me, > > I have been pretty active on httpd 2.0. I decided to port mod_webapp > > last week, and Pier committed the code for me, but the build s

Re: Build system for mod_webapp and Apache 2.0

2001-08-30 Thread jean-frederic clere
Ryan Bloom wrote: > > Hi everybody, I'm new to the list, but for anybody who doesn't know me, > I have been pretty active on httpd 2.0. I decided to port mod_webapp last > week, and Pier committed the code for me, but the build system isn't there, so > I am posting the build system now. > > Th

Build system for mod_webapp and Apache 2.0

2001-08-29 Thread Ryan Bloom
Hi everybody, I'm new to the list, but for anybody who doesn't know me, I have been pretty active on httpd 2.0. I decided to port mod_webapp last week, and Pier committed the code for me, but the build system isn't there, so I am posting the build system now. This is currently working, althoug