summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create branch 'PCRE'.PCRE(no author)2002-03-202-0/+7522
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/PCRE@94034 13f79535-47bb-0310-9956-ffa450edef68
* This commit was manufactured by cvs2svn to create branch 'PCRE'.(no author)2000-05-05713-189320/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/PCRE@85156 13f79535-47bb-0310-9956-ffa450edef68
* Initial revisionRyan Bloom2000-05-0552-0/+38906
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85154 13f79535-47bb-0310-9956-ffa450edef68
* Replace hsregex with PCRE. The PCRE library is always used in 2.0,Ryan Bloom2000-05-057-20/+98
| | | | | | | | regardless of what system we are on. Currently, we are using the POSIX wrappers that PCRE provides. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85153 13f79535-47bb-0310-9956-ffa450edef68
* Fix a stupid mistake in apxs.in.Ryan Bloom2000-05-051-1/+1
| | | | | | | Submitted by: Greg Stein git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85152 13f79535-47bb-0310-9956-ffa450edef68
* I forgot to update the alpha information with the last alpha release.Ryan Bloom2000-05-051-2/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85151 13f79535-47bb-0310-9956-ffa450edef68
* Make apxs mostly work for 2.0. It doesn't add the module to the configRyan Bloom2000-05-053-68/+38
| | | | | | | file yet, but that should be trivial to add back in. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85150 13f79535-47bb-0310-9956-ffa450edef68
* William A. Rowe Jr2000-05-051-4/+4
| | | | | | | | | Ahem... the newsgroups seem unruly over the explicit reference to the other half of Wintel. This seems like a more accurate statement git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85148 13f79535-47bb-0310-9956-ffa450edef68
* Install os.h and os-inline.c from src/os/$(OSDIR) to $(prefix)/includeRyan Bloom2000-05-041-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85146 13f79535-47bb-0310-9956-ffa450edef68
* Move the generating empty deps stuff into fastgen.sh. The .deps filesSascha Schumann2000-05-042-4/+4
| | | | | | | | | | | are only used by Makefiles which are created by fastgen.sh, so fastgen is the natural place to create them. The "portable dirname" regex has been changed to remove any number of trailing slashes. Just in case. :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85139 13f79535-47bb-0310-9956-ffa450edef68
* Back out an inadvertant change to apxs.Ryan Bloom2000-05-041-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85138 13f79535-47bb-0310-9956-ffa450edef68
* Port reliable piped logs to mpmt_pthread and dexter. Also a couple of smallRyan Bloom2000-05-047-37/+66
| | | | | | | cleanups for reliable piped logs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85137 13f79535-47bb-0310-9956-ffa450edef68
* Make reliable piped logs work on 2.0.Ryan Bloom2000-05-0411-362/+56
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85136 13f79535-47bb-0310-9956-ffa450edef68
* Get rid of warning by including crypt.h when available.Roy T. Fielding2000-05-041-5/+7
| | | | | | | Make tmpnam stuff less complex. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85134 13f79535-47bb-0310-9956-ffa450edef68
* Use our own buffer for tmpnam() if the platform seems to knowKen Coar2000-05-031-1/+16
| | | | | | | about it. Avoids threading and reentrancy problems. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85132 13f79535-47bb-0310-9956-ffa450edef68
* Win32: Fix some bugs in the restart logic. This is still rather adhoc. A ↵Bill Stoddard2000-05-031-26/+47
| | | | | | | | | | | | | | | | | | more rigorous solution is to maintain a list of overlapped io structures in the child_main control thread and use HasOverLappedIoCompleted() to manage the connections and pending io. We must resort to maintaining a list of pending io (i.e. overlapped structures) should we ever begin using AcceptEx to receive data. Why? We need to be able to detect when a connection is received but no data is being sent over that connection. There is a Win32 function (whose name I forget at the moment) to handle this. Why can't Win32 just timeout the connection using setopt??? It would make life so much easier if AcceptEx just returned TIMEOUT in this condition rather than requiring the application to explicitly poll the socket to see if data is available. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85131 13f79535-47bb-0310-9956-ffa450edef68
* Be more expliciti in our error messages if the tmpnam() call fails,Ken Coar2000-05-031-1/+9
| | | | | | | | | or we have trouble opening the filename it returns. PR: Not a solution, but will help debug several git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85129 13f79535-47bb-0310-9956-ffa450edef68
* The 'portable dirname' shouldn't leave a trailing / on the directory nameBrian Havard2000-05-031-1/+1
| | | | | | | as it causes double trailing / in some places which confuses some programs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85128 13f79535-47bb-0310-9956-ffa450edef68
* Configure creates config.nice now containing your configure options.Sascha Schumann2000-05-032-0/+18
| | | | | | | | | Syntax: ./config.nice [--more-options] Obtained from: PHP git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85127 13f79535-47bb-0310-9956-ffa450edef68
* Blurf. Move the preload down a bit toJim Jagielski2000-05-031-4/+4
| | | | | | | ensure that the location of config.guess is set :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85126 13f79535-47bb-0310-9956-ffa450edef68
* And preload from the top.Jim Jagielski2000-05-032-0/+5
| | | | | | | | | | | | | Next on the list: using hints.m4 to set whether to use HSregex and to select the "default" mpm for each OS type. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85125 13f79535-47bb-0310-9956-ffa450edef68
* - checking for thread options is matureSascha Schumann2000-05-011-3/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85124 13f79535-47bb-0310-9956-ffa450edef68
* Cleanup the STATUS file a bit.Ryan Bloom2000-05-011-6/+1
| | | | | | | | -- Configuration modules have been rejected -- make install works already. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85122 13f79535-47bb-0310-9956-ffa450edef68
* William A. Rowe Jr2000-05-015-40/+40
| | | | | | | | | | | Final .dsp changes to produce the lightest weight builds without precompiled headers or source browse files under Win32. Enabling these is straightforward, if that's what the user desires. Also correct minor errors, and reset some project defaults to their current config. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85121 13f79535-47bb-0310-9956-ffa450edef68
* add missing ';' in non-ASCII pathJeff Trawick2000-05-011-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85120 13f79535-47bb-0310-9956-ffa450edef68
* William A. Rowe Jr2000-05-011-0/+2
| | | | | | | Just a last few files to ignore in the installed Win32 tree. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85119 13f79535-47bb-0310-9956-ffa450edef68
* William A. Rowe Jr2000-05-013-11/+8
| | | | | | | | | | | | | | | Significantly shorten the Win32 build and shrink symbol tables for precompiled headers and debugging by eliminating large chunks of the windows.h declarations, especially the graphical user interface declarations. Also eliminates redundant inclusion of winsock and windows headers. As the GUI sections can be included by adding the windows.h include prior to any apr headers, these includes now imply something completely different. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85117 13f79535-47bb-0310-9956-ffa450edef68
* Make install target work on AIX.Sascha Schumann2000-04-301-12/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85116 13f79535-47bb-0310-9956-ffa450edef68
* Use F_SETFL for setting the O_NONBLOCK status flag. F_SETFD is for settingSascha Schumann2000-04-302-2/+2
| | | | | | | | | file descriptor flags (like FD_CLOEXEC). PR: #47 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85115 13f79535-47bb-0310-9956-ffa450edef68
* Make piped logs work again in 2.0. The next step is reliable piped logs.Ryan Bloom2000-04-301-9/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85114 13f79535-47bb-0310-9956-ffa450edef68
* Add VPATH support to Apache:Sascha Schumann2000-04-306-18/+34
| | | | | | | | | | | | | | | os/$(OS_DIR) is now equivalent to the old $(OS_DIR) Necessary include paths are added only in VPATH mode. Dependencies are stored in the build directory now. They contain paths which depend on the current build, and therefore they are not general. Fixed two dependencies in main/Makefile.in. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85113 13f79535-47bb-0310-9956-ffa450edef68
* Most of the support programs are created during the build, so we can expectSascha Schumann2000-04-301-7/+7
| | | | | | | them to be in $(builddir). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85111 13f79535-47bb-0310-9956-ffa450edef68
* Always create the target directory, if it does not exist. Also use theSascha Schumann2000-04-301-1/+2
| | | | | | | Makefile template from the source tree. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85110 13f79535-47bb-0310-9956-ffa450edef68
* We want to build in the build dir, not the src dir.Sascha Schumann2000-04-301-1/+1
| | | | | | | s/top_srcdir/top_builddir/ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85109 13f79535-47bb-0310-9956-ffa450edef68
* Allow for help messages for modules.Jim Jagielski2000-04-302-36/+35
| | | | | | | | | | PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85105 13f79535-47bb-0310-9956-ffa450edef68
* Work around the non-working pthread.h detection on OpenBSD.Sascha Schumann2000-04-301-13/+6
| | | | | | | | | | We can savely assume that pthread.h exists on every system which supports Pthreads. PR: #29 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85104 13f79535-47bb-0310-9956-ffa450edef68
* Get rid of last relative include path in our MakefilesSascha Schumann2000-04-301-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85103 13f79535-47bb-0310-9956-ffa450edef68
* Overall UNIX build system improvements:Sascha Schumann2000-04-3020-111/+21
| | | | | | | | | | | | | | | | | * Makefile header is now completely dynamic * Absolute paths everywhere (fixes Tru64 support) * Get rid of LTLIBRARY_SHARED_NAME rule in library.mk (fixes Irix support, untested) * VPATH does not contain variables anymore (fixes UnixWare support) * Remove inclusion of program.mk in support/Makefile.in (PROGRAM_NAME is empty => breaks Irix and others) * Call REENTRANCY_FLAGS earlier, so that flags are passed to header checks (might fix OpenBSD pthread.h-detection, untested) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85102 13f79535-47bb-0310-9956-ffa450edef68
* Add ap_sigwait() to support old-style sigwait().Sascha Schumann2000-04-294-2/+21
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85101 13f79535-47bb-0310-9956-ffa450edef68
* Update some docs.Ryan Bloom2000-04-293-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85100 13f79535-47bb-0310-9956-ffa450edef68
* PR:William A. Rowe Jr2000-04-291-1/+0
| | | | | | | | | | | | Obtained from: Submitted by: Reviewed by: Sorry I missed one. I -really- believe now that ap.h can now be safely swept out to the attic, but I will leave for someone in unix to test and confirm. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85099 13f79535-47bb-0310-9956-ffa450edef68
* PR:William A. Rowe Jr2000-04-292-8/+0
| | | | | | | | | | | | Obtained from: Submitted by: William Rowe Reviewed by: With this change, I believe that ap.h can now be safely swept out to the attic, but I will leave for at least one other to confirm. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85098 13f79535-47bb-0310-9956-ffa450edef68
* PR:William A. Rowe Jr2000-04-292-2/+2
| | | | | | | | | | | | | | | | | Obtained from: Submitted by: William Rowe Reviewed by: Created ap_base64.h to extract those declarations for clarity from ap.h CORE_PRIVATE, httpd.h do not belong in library functions, removed from ap.lib Use apr headers for declarations in ap.lib stuff, kill AP_LONG from ap_sha1.h Move credit to lib/apr/lib/ap_snprintf.c from ap.h for authorship git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85097 13f79535-47bb-0310-9956-ffa450edef68
* Get rid of NO_RECURSION. This was originally implemented for PHP and is notSascha Schumann2000-04-291-14/+12
| | | | | | | used by Apache (will soon be obsolete in PHP as well). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85096 13f79535-47bb-0310-9956-ffa450edef68
* PR:William A. Rowe Jr2000-04-281-1/+1
| | | | | | | | | | | Obtained from: Submitted by: William Rowe Reviewed by: Sorry, trying to watch for those no-newline edits... let one slip by. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85089 13f79535-47bb-0310-9956-ffa450edef68
* PR:William A. Rowe Jr2000-04-281-0/+4
| | | | | | | | | | | Obtained from: Submitted by: William Rowe Reviewed by: Second round of changes to assure Win32 droppings don't infect the tree. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85088 13f79535-47bb-0310-9956-ffa450edef68
* PR:William A. Rowe Jr2000-04-281-0/+1
| | | | | | | | | | | | Obtained from: Submitted by: William Rowe Reviewed by: Not good... can't be adding to the makefile.win list of files to copy without adding to the list of projects to build :-| git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85087 13f79535-47bb-0310-9956-ffa450edef68
* PR:William A. Rowe Jr2000-04-284-4/+8
| | | | | | | | | | | Obtained from: Submitted by: William Rowe Reviewed by: First round of .cvsignore changes for Win32's droppings git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85086 13f79535-47bb-0310-9956-ffa450edef68
* Update the version string for the current dev version.Ryan Bloom2000-04-282-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85085 13f79535-47bb-0310-9956-ffa450edef68
* Update version information for 3rd alpha.Ryan Bloom2000-04-282-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85084 13f79535-47bb-0310-9956-ffa450edef68