]> granicus.if.org Git - apache/log
apache
23 years agoap_save_brigade() can fail, so report what happened via an apr_status_t
Jeff Trawick [Fri, 29 Dec 2000 13:56:30 +0000 (13:56 +0000)]
ap_save_brigade() can fail, so report what happened via an apr_status_t
return code.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87548 13f79535-47bb-0310-9956-ffa450edef68

23 years agoRecognize a downstream error as such (instead of saying simply "returning error").
Jeff Trawick [Fri, 29 Dec 2000 13:51:38 +0000 (13:51 +0000)]
Recognize a downstream error as such (instead of saying simply "returning error").

Trace the apr_status_t whenever helpful.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87547 13f79535-47bb-0310-9956-ffa450edef68

23 years agoBecause we can't get APR_EAGAIN from sendfile if we have a timeout, we
Ryan Bloom [Thu, 28 Dec 2000 23:27:20 +0000 (23:27 +0000)]
Because we can't get APR_EAGAIN from sendfile if we have a timeout, we
can simplify this test now.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87545 13f79535-47bb-0310-9956-ffa450edef68

23 years agoOn EBCDIC machines, fix up the charset of the header terminator.
Jeff Trawick [Thu, 28 Dec 2000 22:23:34 +0000 (22:23 +0000)]
On EBCDIC machines, fix up the charset of the header terminator.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87542 13f79535-47bb-0310-9956-ffa450edef68

23 years agoWe don't want to install CVS files, but the -P option to cp means something
Ryan Bloom [Thu, 28 Dec 2000 06:08:30 +0000 (06:08 +0000)]
We don't want to install CVS files, but the -P option to cp means something
different on FreeBSD than it means on Linux.  This puts the recursive
copy back in, and just has us delete the CVS directories after they are
copied into place.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87541 13f79535-47bb-0310-9956-ffa450edef68

23 years agoIgnore CRLF (or LF) when PEEK'ing at data on the socket. The general
Ryan Bloom [Thu, 28 Dec 2000 01:14:22 +0000 (01:14 +0000)]
Ignore CRLF (or LF) when PEEK'ing at data on the socket.  The general
problem is that some browsers send an extra line at the end of a POST
request.  We use the PEEK method to determine if there is any data left
on the socket, if there is then we delay sending the response until we
have enough data to make it worthwhile.  If the browser sends an extra
blank line, we don't want to delay the response at all.  The only time
we use the PEEK method is to check for a second request, so this is safe
to do.

This also solves Joe Orton's problem of specifying a Content- Length
of 1 for a blank line, and having the server wait to send back a response.
The problem is that Linux (all Unix really) sends two characters \r\n for
a blank line, so specifying a C-L of 1 means that the server still sees
a \n when it PEEKs that the socket data.  That \n can be safely ignored
however.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87540 13f79535-47bb-0310-9956-ffa450edef68

23 years agoLast change to get SuEXEC working again, and respecting configuration
Ryan Bloom [Wed, 27 Dec 2000 23:41:16 +0000 (23:41 +0000)]
Last change to get SuEXEC working again, and respecting configuration
changes made using autoconf setup.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87539 13f79535-47bb-0310-9956-ffa450edef68

23 years agoGet SuEXEC building properly.
Ryan Bloom [Wed, 27 Dec 2000 23:30:37 +0000 (23:30 +0000)]
Get SuEXEC building properly.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87538 13f79535-47bb-0310-9956-ffa450edef68

23 years agoOn Unix, we do not want to use an absolute path for CGI scripts. SuEXEC
Ryan Bloom [Wed, 27 Dec 2000 23:30:07 +0000 (23:30 +0000)]
On Unix, we do not want to use an absolute path for CGI scripts.  SuEXEC
will not let us use one, and when not using SuEXEC, we chdir() into the
correct directory.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87537 13f79535-47bb-0310-9956-ffa450edef68

23 years agoWe cannot set the SUEXEC_BIN directory from autoconf, because all of the
Ryan Bloom [Wed, 27 Dec 2000 23:24:53 +0000 (23:24 +0000)]
We cannot set the SUEXEC_BIN directory from autoconf, because all of the
instructions say that in order to modify this variable, you have to modify
httpd.h

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87536 13f79535-47bb-0310-9956-ffa450edef68

23 years agoFix a small typo that was causing big problems.
Ryan Bloom [Wed, 27 Dec 2000 05:00:26 +0000 (05:00 +0000)]
Fix a small typo that was causing big problems.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87532 13f79535-47bb-0310-9956-ffa450edef68

23 years agoMake it possible to build suexec from the top-level Makefiles, and make it
Ryan Bloom [Wed, 27 Dec 2000 02:34:16 +0000 (02:34 +0000)]
Make it possible to build suexec from the top-level Makefiles, and make it
install when using make install

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87531 13f79535-47bb-0310-9956-ffa450edef68

23 years agoGet suexec compiling again.
Ryan Bloom [Wed, 27 Dec 2000 02:01:47 +0000 (02:01 +0000)]
Get suexec compiling again.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87530 13f79535-47bb-0310-9956-ffa450edef68

23 years agoWe don't want to install the CVS directory when we use make install
Ryan Bloom [Wed, 27 Dec 2000 01:25:18 +0000 (01:25 +0000)]
We don't want to install the CVS directory when we use make install

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87529 13f79535-47bb-0310-9956-ffa450edef68

23 years agoFinish up the config.m4 file overhaul, so that we can load config.m4 files
Ryan Bloom [Tue, 26 Dec 2000 22:48:49 +0000 (22:48 +0000)]
Finish up the config.m4 file overhaul, so that we can load config.m4 files
in order.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87528 13f79535-47bb-0310-9956-ffa450edef68

23 years agoMove the config.m4 file to config5.m4 in the generators directory so that
Ryan Bloom [Tue, 26 Dec 2000 22:46:09 +0000 (22:46 +0000)]
Move the config.m4 file to config5.m4 in the generators directory so that
we can actually make the cgi module decision based on MPM.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87527 13f79535-47bb-0310-9956-ffa450edef68

23 years agoAllow buildconf to find the config.m4 files in the correct order. This
Ryan Bloom [Tue, 26 Dec 2000 21:39:35 +0000 (21:39 +0000)]
Allow buildconf to find the config.m4 files in the correct order.  This
allows the decisions made in one config.m4 file to be based on decisions
made in previous config.m4 files.  For example, the config.m4 in the
generators config.m4 can choose the correc cgi module based on which MPM
is chosen.

To do this, we find all filenames config*.m4, and then we re-order the
filename so that it looks like:  *config.m4/path/to/file.  Once all files
are in this format, we sort the files, and then re-arrange the file names
again to put them in the correct order.  There may be better ways to do
this, but I couldn't find a portable way to call sort so that this would
work.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87526 13f79535-47bb-0310-9956-ffa450edef68

23 years agoTime for bed soon. :-)
Ryan Bloom [Sat, 23 Dec 2000 07:15:43 +0000 (07:15 +0000)]
Time for bed soon.  :-)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87525 13f79535-47bb-0310-9956-ffa450edef68

23 years agoGet mod_cgid to use apr calls for creating the actual CGI process.
Ryan Bloom [Sat, 23 Dec 2000 07:09:01 +0000 (07:09 +0000)]
Get mod_cgid to use apr calls for creating the actual CGI process.
This also allows mod_cgid to use ap_os_create_priviledged_process,
thus allowing for SuExec execution from mod_cgid.  Currently, we do
not support everything that standard SuExec supports, but at least
it works minimally now.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87524 13f79535-47bb-0310-9956-ffa450edef68

23 years agoAllow SuExec to be configured from the ./configure command line
Ryan Bloom [Sat, 23 Dec 2000 03:15:16 +0000 (03:15 +0000)]
Allow SuExec to be configured from the ./configure command line

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87521 13f79535-47bb-0310-9956-ffa450edef68

23 years agoget the layout from the right directory
Greg Stein [Sat, 23 Dec 2000 02:52:08 +0000 (02:52 +0000)]
get the layout from the right directory

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87518 13f79535-47bb-0310-9956-ffa450edef68

23 years agoand some background for why --disable-shared was added and what needs to be
Greg Stein [Sat, 23 Dec 2000 02:11:10 +0000 (02:11 +0000)]
and some background for why --disable-shared was added and what needs to be
done to get it back out of there.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87516 13f79535-47bb-0310-9956-ffa450edef68

23 years agoUpdate the Readme and Install docs to reflect 2.0 a bit better.
Ryan Bloom [Sat, 23 Dec 2000 01:46:42 +0000 (01:46 +0000)]
Update the Readme and Install docs to reflect 2.0 a bit better.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87515 13f79535-47bb-0310-9956-ffa450edef68

23 years agoIf we get EAGAIN returned from apr_sendfile, then we need to loop back and
Ryan Bloom [Fri, 22 Dec 2000 23:43:16 +0000 (23:43 +0000)]
If we get EAGAIN returned from apr_sendfile, then we need to loop back and
call it again.  This change allows us to serve large files (such as
apache_2.0a9.tar.gz) using Apache 2.0 on FreeBSD.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87514 13f79535-47bb-0310-9956-ffa450edef68

23 years agoBinbuild.sh works again, so remove the STATUS item.
Ryan Bloom [Fri, 22 Dec 2000 23:42:02 +0000 (23:42 +0000)]
Binbuild.sh works again, so remove the STATUS item.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87513 13f79535-47bb-0310-9956-ffa450edef68

23 years agoBack out the .libs thing from the aprutil linking. Add --disable-shared (for
Greg Stein [Fri, 22 Dec 2000 22:44:45 +0000 (22:44 +0000)]
Back out the .libs thing from the aprutil linking. Add --disable-shared (for
now) to the subdir config to ensure that we only get a static library for
aprutil (which allows for linking all of its functions into the executable).
[ APR will need something similar if/when it gets libtool-ized ]

Mark a note in STATUS indicating we should eventually toss the
--disable-shared flag.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87512 13f79535-47bb-0310-9956-ffa450edef68

23 years agoAllow the auth modules to load into the server.
Ryan Bloom [Fri, 22 Dec 2000 21:34:09 +0000 (21:34 +0000)]
Allow the auth modules to load into the server.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87510 13f79535-47bb-0310-9956-ffa450edef68

23 years agobe gone, fool!
Greg Stein [Fri, 22 Dec 2000 12:02:43 +0000 (12:02 +0000)]
be gone, fool!

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87508 13f79535-47bb-0310-9956-ffa450edef68

23 years agominor correction to libexecdir for the standard Apache layout
Greg Stein [Fri, 22 Dec 2000 11:58:55 +0000 (11:58 +0000)]
minor correction to libexecdir for the standard Apache layout

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87507 13f79535-47bb-0310-9956-ffa450edef68

23 years agoCleanups so that the support programs build cleanly. The Win32 values
Ryan Bloom [Fri, 22 Dec 2000 00:02:52 +0000 (00:02 +0000)]
Cleanups so that the support programs build cleanly.  The Win32 values
need to be sanity checked.
Submitted by: Cliff Woolley <cliffwoolley@yahoo.com>
Reviewed by: Ryan Bloom

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87506 13f79535-47bb-0310-9956-ffa450edef68

23 years agoPlace a note in some of the files that contain obsolete information.
Joshua Slive [Thu, 21 Dec 2000 22:36:03 +0000 (22:36 +0000)]
Place a note in some of the files that contain obsolete information.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87505 13f79535-47bb-0310-9956-ffa450edef68

23 years ago OPTIONS request crashed server, this fixes it
William A. Rowe Jr [Thu, 21 Dec 2000 21:09:56 +0000 (21:09 +0000)]
  OPTIONS request crashed server, this fixes it

Submitted by: Joe Orton
Reviewed by: W Rowe

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87504 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Last of the Win32 goodness I've noticed
William A. Rowe Jr [Thu, 21 Dec 2000 21:07:18 +0000 (21:07 +0000)]
  Last of the Win32 goodness I've noticed

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87503 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Simplify and order the dependencies as well as possible.
William A. Rowe Jr [Thu, 21 Dec 2000 21:02:20 +0000 (21:02 +0000)]
  Simplify and order the dependencies as well as possible.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87502 13f79535-47bb-0310-9956-ffa450edef68

23 years ago All the supports now build on APR (+APRUTIL), no reliance on httpd.
William A. Rowe Jr [Thu, 21 Dec 2000 21:00:45 +0000 (21:00 +0000)]
  All the supports now build on APR (+APRUTIL), no reliance on httpd.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87501 13f79535-47bb-0310-9956-ffa450edef68

23 years ago This should build entirely with APR support.
William A. Rowe Jr [Thu, 21 Dec 2000 20:33:50 +0000 (20:33 +0000)]
  This should build entirely with APR support.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87500 13f79535-47bb-0310-9956-ffa450edef68

23 years ago This should build entirely with apr/aprutil support
William A. Rowe Jr [Thu, 21 Dec 2000 20:32:33 +0000 (20:32 +0000)]
  This should build entirely with apr/aprutil support

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87499 13f79535-47bb-0310-9956-ffa450edef68

23 years ago This program should run entirely without ap_config support from
William A. Rowe Jr [Thu, 21 Dec 2000 20:29:26 +0000 (20:29 +0000)]
  This program should run entirely without ap_config support from
  Apache, given that it is apr'ized

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87498 13f79535-47bb-0310-9956-ffa450edef68

23 years ago More Win32 Goodness
William A. Rowe Jr [Thu, 21 Dec 2000 19:51:06 +0000 (19:51 +0000)]
  More Win32 Goodness

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87497 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Win32 Goodness
William A. Rowe Jr [Thu, 21 Dec 2000 19:47:51 +0000 (19:47 +0000)]
  Win32 Goodness

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87496 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Allow the server to run in the bin/ subdirectory, and back up over the
William A. Rowe Jr [Thu, 21 Dec 2000 16:25:44 +0000 (16:25 +0000)]
  Allow the server to run in the bin/ subdirectory, and back up over the
  bin/ directory when determining the Win32 ServerRoot.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87495 13f79535-47bb-0310-9956-ffa450edef68

23 years agoFill out some docs for the MPMs. The content is there, but the formatting
Ryan Bloom [Thu, 21 Dec 2000 15:41:16 +0000 (15:41 +0000)]
Fill out some docs for the MPMs.  The content is there, but the formatting
could probably use some work.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87494 13f79535-47bb-0310-9956-ffa450edef68

23 years agoforgot to axe this line a couple commits ago, when I added the NOTE about
Greg Stein [Thu, 21 Dec 2000 12:04:02 +0000 (12:04 +0000)]
forgot to axe this line a couple commits ago, when I added the NOTE about
buildconf.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87493 13f79535-47bb-0310-9956-ffa450edef68

23 years agono content change. just reflow.
Greg Stein [Thu, 21 Dec 2000 12:02:18 +0000 (12:02 +0000)]
no content change. just reflow.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87492 13f79535-47bb-0310-9956-ffa450edef68

23 years agobunch of random updates... this file still had a lot of 1.3'isms, and also
Greg Stein [Thu, 21 Dec 2000 11:41:23 +0000 (11:41 +0000)]
bunch of random updates... this file still had a lot of 1.3'isms, and also
needed a goodly number of changes for current layouts, web locations, etc.

added mod_dav, mod_dav_fs, and removed the obsolete loggers.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87491 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Given the delay, it's time to put the binaries where they belong, in bin\
William A. Rowe Jr [Thu, 21 Dec 2000 07:13:18 +0000 (07:13 +0000)]
  Given the delay, it's time to put the binaries where they belong, in bin\
  for win32

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87489 13f79535-47bb-0310-9956-ffa450edef68

23 years agoSmall update to add reference to developer docs
Joshua Slive [Thu, 21 Dec 2000 05:43:36 +0000 (05:43 +0000)]
Small update to add reference to developer docs
and correct graceful restart signal.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87488 13f79535-47bb-0310-9956-ffa450edef68

23 years agoA few small changes to bring this up to 2.0.
Joshua Slive [Thu, 21 Dec 2000 05:38:28 +0000 (05:38 +0000)]
A few small changes to bring this up to 2.0.
This doc could use a major rewrite.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87487 13f79535-47bb-0310-9956-ffa450edef68

23 years agoBring the vhost directory into the current century.
Joshua Slive [Thu, 21 Dec 2000 05:16:17 +0000 (05:16 +0000)]
Bring the vhost directory into the current century.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87486 13f79535-47bb-0310-9956-ffa450edef68

23 years agoUpdate the release schedule.
Ryan Bloom [Thu, 21 Dec 2000 02:52:00 +0000 (02:52 +0000)]
Update the release schedule.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87485 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Document the Win32 .so change. Time to rest the brain.
William A. Rowe Jr [Thu, 21 Dec 2000 02:26:56 +0000 (02:26 +0000)]
  Document the Win32 .so change.  Time to rest the brain.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87484 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Warnings for users, start filling this up before we roll.
William A. Rowe Jr [Thu, 21 Dec 2000 02:07:38 +0000 (02:07 +0000)]
  Warnings for users, start filling this up before we roll.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87483 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Add known bugs to Announcement in preparation for release.
William A. Rowe Jr [Thu, 21 Dec 2000 02:02:43 +0000 (02:02 +0000)]
  Add known bugs to Announcement in preparation for release.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87482 13f79535-47bb-0310-9956-ffa450edef68

23 years agoFix a 1.3 to 2.0.
Ryan Bloom [Thu, 21 Dec 2000 01:54:59 +0000 (01:54 +0000)]
Fix a 1.3 to 2.0.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87481 13f79535-47bb-0310-9956-ffa450edef68

23 years agoFix two references to the wrong files in binbuild.sh
Ryan Bloom [Thu, 21 Dec 2000 01:50:44 +0000 (01:50 +0000)]
Fix two references to the wrong files in binbuild.sh

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87480 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Out of the sandbox and into prime time. Note... these should always and
William A. Rowe Jr [Thu, 21 Dec 2000 01:46:22 +0000 (01:46 +0000)]
  Out of the sandbox and into prime time.  Note... these should always and
  only be regenerated immediately prior to the tag and roll.  Do not assume
  they are current with the sources in the development tree.  They should
  be generated as vc5 make files, since only vc5 makefiles are readable by
  both vc5 and vc6.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87479 13f79535-47bb-0310-9956-ffa450edef68

23 years agoprevent crash when connection closed before complete request received
Allan K. Edwards [Thu, 21 Dec 2000 01:44:28 +0000 (01:44 +0000)]
prevent crash when connection closed before complete request received

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87478 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Back out the target path change from serverroot\bin back to serverroot
William A. Rowe Jr [Thu, 21 Dec 2000 01:32:43 +0000 (01:32 +0000)]
  Back out the target path change from serverroot\bin back to serverroot
  for Apache.exe and it's associated lib*.dll files until after beta one.
  Change the make projects as well... and a commit of the actual .mak files
  will be coming in a moment.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87477 13f79535-47bb-0310-9956-ffa450edef68

23 years agoActually link apr-util's .a file, instead of relying on libtool. We may
Ryan Bloom [Thu, 21 Dec 2000 01:27:46 +0000 (01:27 +0000)]
Actually link apr-util's .a file, instead of relying on libtool.  We may
want to change this later, but right now, we want a single binary that
has every function it requires.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87476 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Correction, commited the vc5. Need vc6 in the tree. Humble appologies.
William A. Rowe Jr [Thu, 21 Dec 2000 01:25:10 +0000 (01:25 +0000)]
  Correction, commited the vc5.  Need vc6 in the tree.  Humble appologies.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87475 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Missed aprlib -> apr in the project overhaul
William A. Rowe Jr [Thu, 21 Dec 2000 01:19:17 +0000 (01:19 +0000)]
  Missed aprlib -> apr in the project overhaul

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87474 13f79535-47bb-0310-9956-ffa450edef68

23 years agoUpdate the README. Libtool and autoconf are not required unless you are
Ryan Bloom [Thu, 21 Dec 2000 01:11:12 +0000 (01:11 +0000)]
Update the README.  Libtool and autoconf are not required unless you are
a developer.  This should make that clearer.
Submitted by: Greg Stein

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87473 13f79535-47bb-0310-9956-ffa450edef68

23 years agoAdd the INSTALL file.
Ryan Bloom [Thu, 21 Dec 2000 01:05:16 +0000 (01:05 +0000)]
Add the INSTALL file.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87472 13f79535-47bb-0310-9956-ffa450edef68

23 years ago The Win32 overhaul, in summary;
William A. Rowe Jr [Thu, 21 Dec 2000 01:04:49 +0000 (01:04 +0000)]
  The Win32 overhaul, in summary;
    Modules are named mod_foo.so
    Dynamic Libraries are named libfoo.dll, and are stored in bin/
    The former ApacheCoreDll is now libhttpd.dll
    Apache.exe moves to bin/
    The make install now copies include, lib, and libexec
    All build options are normalized, filenames adjusted appropriately

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87471 13f79535-47bb-0310-9956-ffa450edef68

23 years agoAdd the README file. Almost a copy from 1.3, but slightly modified.
Ryan Bloom [Thu, 21 Dec 2000 00:34:42 +0000 (00:34 +0000)]
Add the README file.  Almost a copy from 1.3, but slightly modified.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87470 13f79535-47bb-0310-9956-ffa450edef68

23 years agoThis is about 99% complete for the binbuild script. The only problem that
Ryan Bloom [Wed, 20 Dec 2000 23:48:06 +0000 (23:48 +0000)]
This is about 99% complete for the binbuild script.  The only problem that
still remains is that some of the apr-util functions aren't being compiled
in, so they work when the apr-util library is in the right location, but
once that library is removed, the server won't start.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87468 13f79535-47bb-0310-9956-ffa450edef68

23 years agoSend HTTP status line in ascii from ebcdic boxes...makes browsers much happier.
Greg Ames [Wed, 20 Dec 2000 23:13:01 +0000 (23:13 +0000)]
Send HTTP status line in ascii from ebcdic boxes...makes browsers much happier.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87467 13f79535-47bb-0310-9956-ffa450edef68

23 years agowhy do people keep removing this blank line?
Roy T. Fielding [Wed, 20 Dec 2000 19:14:34 +0000 (19:14 +0000)]
why do people keep removing this blank line?

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87466 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Talk about a nasty hack :-/ Here is the Win32 build solution for the
William A. Rowe Jr [Wed, 20 Dec 2000 17:40:31 +0000 (17:40 +0000)]
  Talk about a nasty hack :-/  Here is the Win32 build solution for the
  missing xcopy /Y option on NT4.0.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87464 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Hmmm... seems the /dy solution wasn't sufficiently portable. This patch
William A. Rowe Jr [Wed, 20 Dec 2000 16:55:50 +0000 (16:55 +0000)]
  Hmmm... seems the /dy solution wasn't sufficiently portable.  This patch
  prevents us from displaying the files copied, but at least bypasses the
  confirmation messages.

Submitted by: W Stoddard
Reviewed by: W Rowe

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87462 13f79535-47bb-0310-9956-ffa450edef68

23 years agoRemove a STATUS entry that can't be implemented cleanly. The problem
Ryan Bloom [Wed, 20 Dec 2000 16:55:37 +0000 (16:55 +0000)]
Remove a STATUS entry that can't be implemented cleanly.  The problem
is that there are multiple ways to start a CGI script, mod_cgi, mod_cgid,
and mod_include.  If we move the directives out of the core and into one
of those modules, then the rest of the modules won't have it.

This may be solvable once mod_include calls out to mod_cgi(d) for the
exec tags.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87461 13f79535-47bb-0310-9956-ffa450edef68

23 years agoSwitch to the APR-provided APR_CHARSET_EBCDIC feature test macro.
Jeff Trawick [Wed, 20 Dec 2000 16:44:01 +0000 (16:44 +0000)]
Switch to the APR-provided APR_CHARSET_EBCDIC feature test macro.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87460 13f79535-47bb-0310-9956-ffa450edef68

23 years agoAdd a note about the directives to add input and output filters.
Ryan Bloom [Wed, 20 Dec 2000 16:35:22 +0000 (16:35 +0000)]
Add a note about the directives to add input and output filters.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87458 13f79535-47bb-0310-9956-ffa450edef68

23 years agoToday would be a good day to roll a beta. :-)
Ryan Bloom [Wed, 20 Dec 2000 16:21:08 +0000 (16:21 +0000)]
Today would be a good day to roll a beta.   :-)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87456 13f79535-47bb-0310-9956-ffa450edef68

23 years agoMention the sendfile issue with FreeBSD.
Ryan Bloom [Wed, 20 Dec 2000 15:07:12 +0000 (15:07 +0000)]
Mention the sendfile issue with FreeBSD.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87455 13f79535-47bb-0310-9956-ffa450edef68

23 years agoCommit the Announcement for people to review before we go beta.
Ryan Bloom [Wed, 20 Dec 2000 15:02:06 +0000 (15:02 +0000)]
Commit the Announcement for people to review before we go beta.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87454 13f79535-47bb-0310-9956-ffa450edef68

23 years agosdbm is in apr-util now.
Bill Stoddard [Wed, 20 Dec 2000 14:27:16 +0000 (14:27 +0000)]
sdbm is in apr-util now.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87453 13f79535-47bb-0310-9956-ffa450edef68

23 years agoInclude mpm.h so the tests for SPMT_OS2_MPM actually work.
Brian Havard [Wed, 20 Dec 2000 14:27:02 +0000 (14:27 +0000)]
Include mpm.h so the tests for SPMT_OS2_MPM actually work.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87452 13f79535-47bb-0310-9956-ffa450edef68

23 years agoWhen building exports list, allow for multi-part and negative conditions
Brian Havard [Wed, 20 Dec 2000 14:25:02 +0000 (14:25 +0000)]
When building exports list, allow for multi-part and negative conditions
in #if tests.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87451 13f79535-47bb-0310-9956-ffa450edef68

23 years agomention the recent IPv6 changes... I had hoped to get the doc
Jeff Trawick [Wed, 20 Dec 2000 13:08:21 +0000 (13:08 +0000)]
mention the recent IPv6 changes...  I had hoped to get the doc
updated by this time but...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87450 13f79535-47bb-0310-9956-ffa450edef68

23 years agoexports.c was dependent upon delete-exports, but that dependency will always
Greg Stein [Wed, 20 Dec 2000 10:19:06 +0000 (10:19 +0000)]
exports.c was dependent upon delete-exports, but that dependency will always
fail since there is no delete-exports file (thus, exports.c would always get
regenerated, recompiled, and relinked). Instead, we move the delete-exports
target "up" to the "all" target. However, ltlib.mk doesn't allow us to add
things to the "all" target, so we also revise the set of .mk files to use.

also use TARGET_EXPORTS consistently.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87449 13f79535-47bb-0310-9956-ffa450edef68

23 years agoGet the binbuild.sh script into the CVS repository and start to modify
Ryan Bloom [Wed, 20 Dec 2000 06:47:48 +0000 (06:47 +0000)]
Get the binbuild.sh script into the CVS repository and start to modify
it to work with httpd-2.0.  There are still a lot of issues with this
script, but we have to start someplace.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87448 13f79535-47bb-0310-9956-ffa450edef68

23 years agoRemove the test directory from the top level Makefile, and move the STATUS
Ryan Bloom [Wed, 20 Dec 2000 06:26:58 +0000 (06:26 +0000)]
Remove the test directory from the top level Makefile, and move the STATUS
item to "non-showstopper but nice to fix" category.  This is in preparation
for tomorrow's BETA.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87447 13f79535-47bb-0310-9956-ffa450edef68

23 years agoRemove some STATUS items, and finish off the install dir re-org.
Ryan Bloom [Wed, 20 Dec 2000 06:17:53 +0000 (06:17 +0000)]
Remove some STATUS items, and finish off the install dir re-org.

1)  DSO modules are installed in modules/.  If/when Unix gets some
    shared libraries, those should be installed in libraries/.

2)  apache.org:8092 is currently running Apache 2.0.  When Brian has time,
    this will move to port 80

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87446 13f79535-47bb-0310-9956-ffa450edef68

23 years agoupdate this lil gem
Doug MacEachern [Wed, 20 Dec 2000 05:38:34 +0000 (05:38 +0000)]
update this lil gem

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87445 13f79535-47bb-0310-9956-ffa450edef68

23 years agoAdd the config.layout page back.
Ryan Bloom [Wed, 20 Dec 2000 01:18:35 +0000 (01:18 +0000)]
Add the config.layout page back.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87443 13f79535-47bb-0310-9956-ffa450edef68

23 years agoRemove some redundant checks.
Ryan Bloom [Wed, 20 Dec 2000 00:59:06 +0000 (00:59 +0000)]
Remove some redundant checks.
Submitted by: Greg Stein

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87441 13f79535-47bb-0310-9956-ffa450edef68

23 years agoStop calling shared modules libapachemod_*. mod_* is much easier to deal
Ryan Bloom [Tue, 19 Dec 2000 23:37:47 +0000 (23:37 +0000)]
Stop calling shared modules libapachemod_*.  mod_* is much easier to deal
with.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87435 13f79535-47bb-0310-9956-ffa450edef68

23 years agoStop searching in installdir/includes/apr.
Ryan Bloom [Tue, 19 Dec 2000 23:33:54 +0000 (23:33 +0000)]
Stop searching in installdir/includes/apr.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87434 13f79535-47bb-0310-9956-ffa450edef68

23 years ago Round out the Win32 build. Changes include:
William A. Rowe Jr [Tue, 19 Dec 2000 23:22:06 +0000 (23:22 +0000)]
  Round out the Win32 build.  Changes include:

    ApacheModuleProxy.dsp moved to os/win32 with the rest of them
      (yes, all could move the their respective folders, this was the
       path of least resistance.)
    All compilation and linkage tags are identical, no incremental tags
      CPP /Gm removed, /incremental:no consistently applied, and the
      exception handling /GX was removed from release builds.
    Every lib builds to LibD/LibR directories.  Every executable and
      dynamic module builds to Debug/Release directories.  /Fd"name" tags
      force .pdb/.idb files to be named as the project, rather than VC##.
    Assure the build works correctly, and is similar to the normal style.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87432 13f79535-47bb-0310-9956-ffa450edef68

23 years agoInstall all headers in the include/ directory.
Ryan Bloom [Tue, 19 Dec 2000 22:25:42 +0000 (22:25 +0000)]
Install all headers in the include/ directory.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87431 13f79535-47bb-0310-9956-ffa450edef68

23 years agotell AWK to erase existing httpd.default.conf so rebuilds don't append it.
Allan K. Edwards [Tue, 19 Dec 2000 21:31:55 +0000 (21:31 +0000)]
tell AWK to erase existing httpd.default.conf so rebuilds don't append it.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87430 13f79535-47bb-0310-9956-ffa450edef68

23 years agoImproved Polish translation.
Joshua Slive [Tue, 19 Dec 2000 21:30:58 +0000 (21:30 +0000)]
Improved Polish translation.
Submitted by: Bartlomiej Grzybicki <bartgee@mail.morliny.pl>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87429 13f79535-47bb-0310-9956-ffa450edef68

23 years agoap_start_shutdown is not used by anybody outside of the MPMs, so we don't
Ryan Bloom [Tue, 19 Dec 2000 20:44:24 +0000 (20:44 +0000)]
ap_start_shutdown is not used by anybody outside of the MPMs, so we don't
need to put it in the ap_mpm.h header file.  This also makes all of the
instances of ap_start_shutdown static.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87428 13f79535-47bb-0310-9956-ffa450edef68

23 years agoFind the RM program during configuration.
Ryan Bloom [Tue, 19 Dec 2000 19:45:06 +0000 (19:45 +0000)]
Find the RM program during configuration.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87427 13f79535-47bb-0310-9956-ffa450edef68

23 years agoRemove a warning on some platforms.
Ryan Bloom [Tue, 19 Dec 2000 19:44:16 +0000 (19:44 +0000)]
Remove a warning on some platforms.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87426 13f79535-47bb-0310-9956-ffa450edef68

23 years agoCorrect a mistake in the delete-exports target
Ryan Bloom [Tue, 19 Dec 2000 17:52:40 +0000 (17:52 +0000)]
Correct a mistake in the delete-exports target

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87425 13f79535-47bb-0310-9956-ffa450edef68

23 years agoForce all Apache functions to be linked into the executable, whether they
Ryan Bloom [Tue, 19 Dec 2000 17:05:48 +0000 (17:05 +0000)]
Force all Apache functions to be linked into the executable, whether they
are used or not.  This uses the same mechanism that is used for APR
and APR-util.  This may not be the correct solution, but it works, and that
is what I really care about.  This also renames CHARSET_EBCDIC to
AP_CHARSET_EBCDIC.  This is for namespace correctness, but it also makes
the exports script a bit easier.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87424 13f79535-47bb-0310-9956-ffa450edef68

23 years agoRework the RFC1413 handling to make it thread-safe, use a timeout
Jeff Trawick [Tue, 19 Dec 2000 16:08:03 +0000 (16:08 +0000)]
Rework the RFC1413 handling to make it thread-safe, use a timeout
on the query, and remove IPv4 dependencies.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87423 13f79535-47bb-0310-9956-ffa450edef68

23 years agoGet all of the auth modules to the point that they will install and
Ryan Bloom [Tue, 19 Dec 2000 15:09:02 +0000 (15:09 +0000)]
Get all of the auth modules to the point that they will install and
be loadable into the server.  Our new build/install mechanism expects
that all modules will have a common name format.  The auth modules
didn't use that format, so we didn't install them properly.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87422 13f79535-47bb-0310-9956-ffa450edef68