- Oct 08, 2001
-
-
Dirk-Willem van Gulik authored
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91362 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91361 13f79535-47bb-0310-9956-ffa450edef68
-
Dirk-Willem van Gulik authored
> Before C99 the correct way to print a size_t is to use %lu, since > long was guaranteed to be the widest integral type, so redoing the > fix on that basis would be better. However with C99 size_t can be > as wide as unsigned long long so you need to use that format to > be safe, but then you compromise portability. So options; simply cast to (int) as I know the value is small; use %lu without a cast - but get warnings later on >C99. Or kind of the compromize below; do %lu but cast to be sure. Feel free to patch in a better fix ! Dw PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91360 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91357 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91356 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
of EXPAT to explain about the Expat search order, which is new git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91355 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91353 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91352 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
Rodrigo Parra Novo <rpn@terra.com.br> writes: I have ported Apache 1.3.20 to AtheOS (A new OS, described on www.atheos.cx), following the rules described by the PORTING document, which can be found in Apache's src/ directory. I'm sending the (rather simple) patch attached. It would be nice if someone from the Apache team could take a look at the patch, and tell me if anything is still missing. It would be also nice if (hopefully) this patch could be added to the current Apache 1.3 branch, on CVS. I (and others) have been running Apache on AtheOS for some time now, and everything seems to work correctly, with the following exceptions: 1. AtheOS does not use mmap() and shmget(), so we are using the ScoreBoard on disk, for now; 2. AtheOS does not support DSO for the moment, as shared libraries are treated a bit differently from the way they are treated on UNIX. Submitted by: Rodrigo Parra Novo <rpn@terra.com.br> Reviewed by: Martin Kraemer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91351 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
check that expat-lite existed, which was kind of bogus... Now, we allow it to choose which Expat we want. We prefer the system's Expat if available but will use expat-lite as a backup. We can also bypass that as well. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91350 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91349 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91348 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 06, 2001
-
-
Martin Kraemer authored
pre-1.3.21 value of @@ServerRoot@@/htdocs/manual. However, using the config.layout mechanism, or using the --manualdir= switch of configure allows you to override this default, and "make install" will not only install into the defined location, but will also fix the config file for you (the Alias and <Directory > paths are fixed). On non-unix platforms, this may be problematic, as the sed pattern replaces @@ServerRoot@@/htdocs/manual by the setting of $(manualdir). If that does not work for you, then please adapt whatever you used to "make install" (probably not Apache's Makefile.tmpl which contains this sed regex). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91341 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91339 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91334 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Up-to-date ready-to-go [to sleep :] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91328 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Right this change to conform to my minimal interpretation of Ken Coar's veto over creating /manual/ under ServerRoot. It's possible he also ment to veto the Alias, I'm not clear. If that's the case, these alias sections can be removed entirely. I personally believe they are goodness. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91327 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Done git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91326 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
More good notes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91325 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Additional correction for the mutex changes on the TPF platform. Should affect no other platforms. [David McCreedy <McCreedy@us.ibm.com>] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91324 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 05, 2001
-
-
Chuck Murcko authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91317 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91316 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
commit had already fixed the TPF problem without the overhead of a nasty nop function git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91314 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
This change is within an "#if defined(HAVE_TPF_CORE_SERIALIZED_ACCEPT)" block of code so it should not affect any other platforms. Submitted by: David McCreedy Reviewed by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91313 13f79535-47bb-0310-9956-ffa450edef68
-
Chuck Murcko authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91310 13f79535-47bb-0310-9956-ffa450edef68
-
Chuck Murcko authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91309 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
directory. No real configuration changes/effects. Submitted by: Jim Jagielski <jim@jaguNET.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91308 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
Fix the file-owner and file-group processing; I inadvertently added them as 'and' operations, so if they were specified but not matched, nothing else could match either. Fixed.. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91297 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 04, 2001
-
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91288 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
Submitted by: Sander Temme git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91287 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91286 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91285 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91284 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
Obtained from: Submitted by: Reviewed by: (Hopefully) a better patch for the TPF stuff... we want to avoid such nasty things as nop functions because they waste too many cycles. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91283 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Justified fixed courier is the single hardest format in the world to read. Having generated in excess of a billion documents in my former life, I will play authority on that ;) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91282 13f79535-47bb-0310-9956-ffa450edef68
-
Mark J. Cox authored
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91281 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Fix absolute -> relative build paths git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91280 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Missed a commented-out default git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91279 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
LoadModule isn't sufficient. Quick testing of foo.pdf.gz files (with a mime types declaration of app/x-pdf rather than app/pdf) still returns app/pdf - so mime_magic is run first. Other modules may have been similarly misordered. This patch creates an absolute reference of all modules to Add. If I've misworded anything, feel free to correct me. The module order itself is straight from www.apache.org's conf. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91278 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Of course, the export helps too. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91277 13f79535-47bb-0310-9956-ffa450edef68
-