Re: The use of CORE_PRIVATE

2005-02-09 Thread Bojan Smojver
Quoting Bojan Smojver <[EMAIL PROTECTED]>: > I'm trying to rely on functions that help in creating sub-requests, Actually, that would be requests as well, not just sub-requests. -- Bojan

Re: 2.0.53 on Windows

2005-02-09 Thread William A. Rowe, Jr.
Yes to both (source files, and binaries). Forgive, it's been a busy week and as .53 isn't a security release, this hasn't been at the top of my agenda :) Promise, the next security release, binaries + source .zip balls will be in-sync with the announce. Bill At 02:55 PM 2/9/2005, Alex Varju wro

Re: Decreasing need to recompile buildmark.c?

2005-02-09 Thread William A. Rowe, Jr.
I did exactly that for win32. The old win32 build system recompiled buildmark.c as a build step (bleh.) The new win32 build system has the compilation of buildmark.c as a prelink step - if we aren't linking libhttpd, we don't recompile buildmark. Seemed to be a trivial solution, and avoided many

2.0.53 on Windows

2005-02-09 Thread Alex Varju
Forgive me if this has already been mentioned, but I can't find anything in the archives. Is anybody planning on packaging a Windows version of the source files? Thanks, Alex.

Decreasing need to recompile buildmark.c?

2005-02-09 Thread Justin Erenkrantz
I'd like to see what we can do to minimize our need to always recompile buildmark.c. Ideally, it should only need to be recompiled if httpd is being relinked for some other reason - not every single time make is run. One possibility might be to do something via the $(PROGRAM_NAME) target in bu

RE: Entity headers in 304 reponse, WAS: RE: svn commit: r152973 - in httpd/httpd/trunk/modules/cache: cache_storage.c mod_cache.c mod_cache.h mod_disk_cache.c

2005-02-09 Thread Sander Striker
> From: Justin Erenkrantz [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 09, 2005 6:20 PM [...] > Hence, the response headers from the origin server on a 304 response aren't > guaranteed to be complete. So, what this commit does now is load in the > stored cached response headers and inte

Re: Entity headers in 304 reponse, WAS: RE: svn commit: r152973 - in httpd/httpd/trunk/modules/cache: cache_storage.c mod_cache.c mod_cache.h mod_disk_cache.c

2005-02-09 Thread Justin Erenkrantz
--On Wednesday, February 9, 2005 10:47 AM +0100 Sander Striker <[EMAIL PROTECTED]> wrote: [...] +/* RFC 2616 10.3.5 states that entity headers are not supposed + * to be in the 304 response. Therefore, we need to load in the + * cached headers before we update the cached

Re: [PATCH] remove formatting from ap_log_error calls

2005-02-09 Thread Jeff Trawick
On Wed, 9 Feb 2005 09:36:09 -0500, Eric Covener <[EMAIL PROTECTED]> wrote: > ap_log_error escapes escape sequences such as newline and tab so that > they appear as the two-character strings "\t" or "\n" in error_log > (unless httpd was > built with -DAP_UNSAFE_ERROR_LOG_UNESCAPED) as fallout from C

Re: Apache-Test subdirectory has moved

2005-02-09 Thread Geoffrey Young
> Also Geoff please don't forget to update the documentation. Both inside > the module and at perl.apache.org docs. Thanks. I couldn't find any mentions of the location of the repository outside of README-SVN. do you know of others? additionally, we should probably update httpd.apache.org/test

[PATCH] remove formatting from ap_log_error calls

2005-02-09 Thread Eric Covener
ap_log_error escapes escape sequences such as newline and tab so that they appear as the two-character strings "\t" or "\n" in error_log (unless httpd was built with -DAP_UNSAFE_ERROR_LOG_UNESCAPED) as fallout from CAN-2003-0020 Some callers throughout the code still send '\n' within the string ar

Re: mod_cache and Etag headers

2005-02-09 Thread David Lichteblau
Hi, Justin Erenkrantz <[EMAIL PROTECTED]> writes: > Okay, please try again. =) I've committed fixes in r152973: these > should go some way to addressing these problems. works fine now! Thank you, David

install warnings

2005-02-09 Thread Li, Qing
Hi, I'm new to apache. I've built httpd-2.1 out of the latest cvs. I got the following warning messages during installation: Installing build system files libtool: install: warning: `/usr/local/src/apache/httpd-2.1/srclib/aprutil/libaprutil-1.la' has not been ins

Entity headers in 304 reponse, WAS: RE: svn commit: r152973 - in httpd/httpd/trunk/modules/cache: cache_storage.c mod_cache.c mod_cache.h mod_disk_cache.c

2005-02-09 Thread Sander Striker
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 09, 2005 2:39 AM > New Revision: 152973 [...] +/* RFC 2616 10.3.5 states that entity headers are not supposed + * to be in the 304 response. Therefore, we need to load in the + * cached heade