Commit ef4cf81c authored by Ryan Bloom's avatar Ryan Bloom
Browse files

Move the error_bucket definition from the HTTP module to the core server.

Every protocol will need this definition, so it belongs in the core.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88318 13f79535-47bb-0310-9956-ffa450edef68
parent 196f8568
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
Changes with Apache 2.0.12-dev

  *) Move the error_bucket definition from the http module to the
     core server.  Every protocol will need this ability, not just
     HTTP.  [Ryan Bloom]

  *) Modify mod_file_cache to save pre-formatted strings for 
     content-length and last-modified headers for performance. 
     [Mike Abbot <mja@trudge.engr.sgi.com>]
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ dnl modules enabled in this directory by default

APACHE_MODPATH_INIT(http)

http_objects="http_core.lo http_protocol.lo http_request.lo error_bucket.lo"
http_objects="http_core.lo http_protocol.lo http_request.lo"

APACHE_MODULE(core, HTTP protocol handling, $http_objects, , yes)
APACHE_MODULE(mime, mapping of file-extension to MIME, , , yes)
+2 −1
Original line number Diff line number Diff line
@@ -12,7 +12,8 @@ LTLIBRARY_SOURCES = \
	util_script.c util_uri.c util_md5.c util_cfgtree.c util_ebcdic.c \
	rfc1413.c connection.c listen.c \
        mpm_common.c util_charset.c util_debug.c util_xml.c \
	util_filter.c exports.c buildmark.c scoreboard.c
	util_filter.c exports.c buildmark.c scoreboard.c \
	error_bucket.c

targets = delete-exports $(LTLIBRARY_NAME)

+0 −0

File moved.