Re: cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestConfig.pm

2002-01-05 Thread Stas Bekman
Rick Myers wrote: On Jan 05, 2002 at 11:07:03 +0800, Stas Bekman wrote: But we shouldn't permit this to mask the existing problem of servers not being shut down at end of testing.. You mean this options introduces some new problems? It shouldn't change anything at all. All it does is doing the

Re: mod_deflate as a DSO on Solaris (perhaps generic?)

2002-01-05 Thread Jeff Trawick
Albert Chin [EMAIL PROTECTED] writes: Cannot load /export/home/trawick/apacheinst/modules/mod_deflate.so into server: ld.so.1: httpd: fatal: relocation error: file /export/home/trawick/apacheinst/modules/mod_deflate.so: symbol deflateInit2_: referenced symbol not found What is the

[PATCH] Allow DocumentRoot within Location blocks

2002-01-05 Thread Sander Striker
Hi, I've tried to tackle this issue in STATUS: * Allow the DocumentRoot directive within Location scopes? This allows the beloved (crusty) Alias /foo/ /somepath/foo/ followed by a Directory /somepath/foo to become simply Location /foo/ DocumentRoot /somefile/foo (IMHO a

Re: Running Apache in the foreground

2002-01-05 Thread Jos Backus
On Fri, Jan 04, 2002 at 11:52:26PM -0800, Jos Backus wrote: On Fri, Jan 04, 2002 at 09:26:46PM -0800, Justin Erenkrantz wrote: Yeah, this seems to be a bug in autoconf because this is not portable /bin/sh code. IIRC, all cases must have an action item. I misread this (shame on me), sorry.

Re: Running Apache in the foreground

2002-01-05 Thread Sascha Schumann
On Sat, 5 Jan 2002, Jos Backus wrote: On Fri, Jan 04, 2002 at 11:52:26PM -0800, Jos Backus wrote: On Fri, Jan 04, 2002 at 09:26:46PM -0800, Justin Erenkrantz wrote: Yeah, this seems to be a bug in autoconf because this is not portable /bin/sh code. IIRC, all cases must have an action

Re: suexec and apache2.0

2002-01-05 Thread Austin Gonyou
So then a detection of something like PAM or other authentication facility or a lookup of the UID against /etc/passwd and group to resolve UID to UNAME might be in order? Is there a way around that? On Fri, 2002-01-04 at 19:59, GUMMALAM,MOHAN (HP-Cupertino,ex2) wrote: Currently suexec does not

Re: mod_deflate as a DSO on Solaris (perhaps generic?)

2002-01-05 Thread Albert Chin
On Sat, Jan 05, 2002 at 09:03:21AM -0500, Jeff Trawick wrote: Albert Chin [EMAIL PROTECTED] writes: Cannot load /export/home/trawick/apacheinst/modules/mod_deflate.so into server: ld.so.1: httpd: fatal: relocation error: file /export/home/trawick/apacheinst/modules/mod_deflate.so:

trouble with httpd-2.0 HEAD

2002-01-05 Thread Doug MacEachern
updating for the first time in 2 weeks, blowing up here: /bin/sh /usr/local/apache/build/prefork-debug-shared-all-exp/srclib/apr/libtool --silent --mode=compile gcc -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wall -g -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT

Re: trouble with httpd-2.0 HEAD

2002-01-05 Thread Justin Erenkrantz
On Sat, Jan 05, 2002 at 03:55:45PM -0800, Doug MacEachern wrote: updating for the first time in 2 weeks, blowing up here: /bin/sh /usr/local/apache/build/prefork-debug-shared-all-exp/srclib/apr/libtool --silent --mode=compile gcc -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations

Re: trouble with httpd-2.0 HEAD

2002-01-05 Thread Doug MacEachern
On Sat, 5 Jan 2002, Justin Erenkrantz wrote: @APR_INCLUDES@ is not being substituted properly. You reran buildconf and configure? yeah, the script i use always blows away the old build tree and re-runs buildconf and configure.

Re: trouble with httpd-2.0 HEAD

2002-01-05 Thread Doug MacEachern
On Sat, 5 Jan 2002, Justin Erenkrantz wrote: How is APR-util's configure script getting the --with-apr option (see config.nice)? -- justin % cat srclib/apr-util/config.nice #! /bin/sh # # Created by configure CFLAGS=-Wall -g; export CFLAGS

Re: mod_deflate as a DSO on Solaris (perhaps generic?)

2002-01-05 Thread Albert Chin
On Fri, Jan 04, 2002 at 07:38:02PM -0500, Jeff Trawick wrote: On my Solaris systems (Solaris 8 for i86 and Sparc), configure finds /usr/local/lib/libz.a and /usr/local/include/whatever, but mod_deflate.so won't load because of an unresolved reference to deflateInit2_. checking whether to

Re: trouble with httpd-2.0 HEAD

2002-01-05 Thread Justin Erenkrantz
On Sat, Jan 05, 2002 at 04:37:35PM -0800, Doug MacEachern wrote: CFLAGS=-Wall -g; export CFLAGS /usr/local/apache/src/httpd-2.0-cvs/srclib/apr-util/configure \ snip, snip --with-apr=../apr \ --prefix=/usr/local/apache/install/prefork-debug-shared-all-exp \ $@ Huh. That's what I have and it

Re: trouble with httpd-2.0 HEAD

2002-01-05 Thread Doug MacEachern
On Sat, 5 Jan 2002, Justin Erenkrantz wrote: Huh. That's what I have and it works. What does config.status say for APR_INCLUDES: nada. there's no reference to APR_INCLUDES in there at all. are you using a --srcdir? that's my main suspect, though i haven't tried without it yet. It

Re: mod_deflate as a DSO on Solaris (perhaps generic?)

2002-01-05 Thread Justin Erenkrantz
On Sat, Jan 05, 2002 at 06:38:01PM -0600, Albert Chin wrote: On Fri, Jan 04, 2002 at 07:38:02PM -0500, Jeff Trawick wrote: On my Solaris systems (Solaris 8 for i86 and Sparc), configure finds /usr/local/lib/libz.a and /usr/local/include/whatever, but mod_deflate.so won't load because of an

Re: trouble with httpd-2.0 HEAD

2002-01-05 Thread Justin Erenkrantz
On Sat, Jan 05, 2002 at 04:50:11PM -0800, Doug MacEachern wrote: On Sat, 5 Jan 2002, Justin Erenkrantz wrote: Huh. That's what I have and it works. What does config.status say for APR_INCLUDES: nada. there's no reference to APR_INCLUDES in there at all. are you using a --srcdir?

Re: mod_deflate as a DSO on Solaris (perhaps generic?)

2002-01-05 Thread Albert Chin
On Sat, Jan 05, 2002 at 05:50:00PM -0600, Albert Chin wrote: On Sat, Jan 05, 2002 at 09:03:21AM -0500, Jeff Trawick wrote: Albert Chin [EMAIL PROTECTED] writes: Cannot load /export/home/trawick/apacheinst/modules/mod_deflate.so into server: ld.so.1: httpd: fatal: relocation error:

Re: mod_deflate as a DSO on Solaris (perhaps generic?)

2002-01-05 Thread Justin Erenkrantz
On Sat, Jan 05, 2002 at 06:53:43PM -0600, Albert Chin wrote: You'll note that there is *no* -lz anywhere. So, I don't see how mod_deflate would ever get loaded. Looking at config.status, -lz is in EXTRA_LIBS. So: Correct. We specify the libraries in EXTRA_LIBS when we build httpd not when

Re: trouble with httpd-2.0 HEAD

2002-01-05 Thread Doug MacEachern
everything is ok now after blowing away the cvs tree and checking out from scratch. either something stale in the cvs tree, or a bug in my build script. sorry for the hassle.

Emacs stanza?

2002-01-05 Thread Rodent of Unusual Size
I don't know how many people use Emacs to edit the Apache stuff, but would anyone object to a stanza at the bottom of the source files to help put Emacs in the right stylistic mood? To wit, something like: /* * Local Variables: * mode: C * c-file-style: bsd * indent-tabs-mode: nil * End: