- Dec 07, 2000
-
-
Jeff Trawick authored
httpd.exp: Add the new APR symbol apr_parse_addr_port. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87252 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87251 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
definition) have no dependencies on anything else. this will also ensure that we have *.exports available for building server/ *) add the "test" SUBDIR back in so that it gets called for "make clean" and other types of make targets. *) revise test/Makefile.in so that it does not build any test programs by default. add "make test" to build any/all test programs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87250 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
- enable it to be run from any dir by passing a parameter for the location of srclib, and using its own location for determining where the AWK script is located - accept exports files on STDIN, and produce output on STDOUT - use "pwd" and cd back to it, rather than assuming ../../.. (which might not apply if we feed it other export files) - add USAGE reporting *) generate exports.c during normal build of "server" rather than during the buildconf stage. update invocation to match above changes *) revamp the ap_ugly_hack referencing in main.c: put it at the bottom of the file with the other, similar references, and style it similarly. *) remove the ap_ugly_hack declaration from http_main.h; it is internal to the "server" code git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87249 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
*) do not put the (const void *) cast into the code (it isn't needed) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87248 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
*) simplify by removing the extra AC_DEFUN() in each file git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87247 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
*) juse use APACHE_MODULE (the custom defun only saved a single arg) *) toss AC_SUBST(STANDARD_LIBS) line; it isn't used/needed git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87246 13f79535-47bb-0310-9956-ffa450edef68
-
Manoj Kasichainula authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87245 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87243 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87242 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
functions. This allows modules to implement their own SSI tags easily. The idea is simple enough, a module can insert it's own tag and function combination into a hash table provided by mod_include. While mod_include parses an SSI file, when it encounters a tag in the file, it does a hash lookup to find the function that implements that tag, and passes all of the relevant data to the function. That function is then responsible for processing the tag and handing the remaining data back to mod_include for further processing. Submitted by: Paul J. Reder <rederpj@raleigh.ibm.com> Reviewed by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87241 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87240 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87239 13f79535-47bb-0310-9956-ffa450edef68
-
- Dec 06, 2000
-
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87238 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
Submitted by: Paul J. Reder <rederpj@raleigh.ibm.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87237 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87236 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
build if necessary. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87235 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
- use apr_dbm.h and the updated naming - don't try to link against libap(util?) or libsdbm. just use libaprutil. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87234 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87233 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87232 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
APRUTIL now. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87231 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Goodbye exported apr_canonical_error git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87230 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This solves two issues, one is a backref from apr-util into the apache namespace, and the second is the proper linkage declarations and their explanations. Documented the distinction between AP_IMPLEMENT_HOOK_ and AP_IMPLEMENT_EXPORT_HOOK_ This doesn't resolve any export issues within apr-util, however. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87229 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
serving files again. The APR_DECLARE_DATA declaration allows the ap_*_type structures to be exported which is reqired for the correct operation of the AP_BUCKET_IS_* macros. An alternate way to fix this problem is to explicitly break the bucket type out of the "type" structure in ap_bucketi and represent each bucket type with an enum. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87228 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87226 13f79535-47bb-0310-9956-ffa450edef68
-
- Dec 05, 2000
-
-
Ryan Bloom authored
because I can't install Apache right now. As soon as I get the make install target working, I'll test this MPM. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87224 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Fix some leftover dirtyness from the conversion. All is building over in Win32 land. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87223 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Fixed the make, crippled dav till it's building. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87222 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
The -big- fix, all the proper linkages for BaseAddr.ref plus a bit. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87221 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
We build through Apache.exe!!! Onwards... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87220 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Got a little carried away earlier with path names :-) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87219 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Slide symbols from one place to another. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87218 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
A little fix here, little fix there git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87217 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
This also modified Apache's buildconf to add those symbols to the exports.c file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87216 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87215 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Set up dependencies on the apr-util package. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87214 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
A bit of inclusion for the apr-util package. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87213 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This patch illustrates the new locations, and makes the majority of the adjustments. Now to actually try to build the thing. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87212 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87211 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Release the last occurance of apr_canonical_error. Next stop, apr. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87210 13f79535-47bb-0310-9956-ffa450edef68
-