Commit d685bd5c authored by Stefan Fritsch's avatar Stefan Fritsch
Browse files

adjustments of build priorities of modules without special dependencies

all -> most:
- mod_sed

reallyall -> most:
- mod_log_debug

reallyall -> all:
- mod_dav_lock
- mod_echo
- mod_charset_lite
- mod_slotmem_plain
- mod_dialup

few -> all:
- mod_data
- mod_reflector
- mod_asis

most -> all:
- mod_heartbeat
- mod_heartmonitor
- mod_watchdog

most -> reallyall:
- mod_imagemap
- mod_cern_meta
- mod_ident

See thread at
http://mail-archives.apache.org/mod_mbox/httpd-dev/201107.mbox/%3C201107052321.56063.sf@sfritsch.de%3E


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1146227 13f79535-47bb-0310-9956-ffa450edef68
parent 1317bee5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ case "$host" in
    ;;
esac

APACHE_MODULE(heartbeat, Generates Heartbeats, $heartbeat_objects, , most)
APACHE_MODULE(heartmonitor, Collects Heartbeats, , , most)
APACHE_MODULE(heartbeat, Generates Heartbeats, $heartbeat_objects, , )
APACHE_MODULE(heartmonitor, Collects Heartbeats, , , )

APACHE_MODPATH_FINISH
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ if test -z "$enable_watchdog"; then
    if test $ac_cv_define_APR_HAS_THREADS = "no"; then
        enable_watchdog="no"
    else
        enable_watchdog="most"
        enable_watchdog=""
    fi
fi

+1 −1
Original line number Diff line number Diff line
@@ -12,6 +12,6 @@ case "$host" in
    ;;
esac

APACHE_MODULE(dav_lock, DAV provider for generic locking - requires --enable-dav, $dav_lock_objects, , no)
APACHE_MODULE(dav_lock, DAV provider for generic locking - requires --enable-dav, $dav_lock_objects, , )

APACHE_MODPATH_FINISH
+1 −1
Original line number Diff line number Diff line
@@ -4,6 +4,6 @@ dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])

APACHE_MODPATH_INIT(echo)

APACHE_MODULE(echo, ECHO server, , , no)
APACHE_MODULE(echo, ECHO server, , , )

APACHE_MODPATH_FINISH
+4 −4
Original line number Diff line number Diff line
@@ -5,25 +5,25 @@ dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
APACHE_MODPATH_INIT(filters)

APACHE_MODULE(buffer, Filter Buffering, , , yes)
APACHE_MODULE(data, RFC2397 data encoder, , , yes)
APACHE_MODULE(data, RFC2397 data encoder, , , )
APACHE_MODULE(ratelimit, Output Bandwidth Limiting, , , yes)
APACHE_MODULE(reqtimeout, Limit time waiting for request from client, , , yes)
APACHE_MODULE(ext_filter, external filter module, , , most)
APACHE_MODULE(request, Request Body Filtering, , , yes)
APACHE_MODULE(include, Server Side Includes, , , yes)
APACHE_MODULE(filter, Smart Filtering, , , yes)
APACHE_MODULE(reflector, Reflect request through the output filter stack, , , yes)
APACHE_MODULE(reflector, Reflect request through the output filter stack, , , )
APACHE_MODULE(substitute, response content rewrite-like filtering, , , most)

sed_obj="mod_sed.lo sed0.lo sed1.lo regexp.lo"
APACHE_MODULE(sed, filter request and/or response bodies through sed, $sed_obj)
APACHE_MODULE(sed, filter request and/or response bodies through sed, $sed_obj, , most)

if test "$ac_cv_ebcdic" = "yes"; then
# mod_charset_lite can be very useful on an ebcdic system,
#   so include it by default
    APACHE_MODULE(charset_lite, character set translation.  Enabled by default only on EBCDIC systems., , , yes)
else
    APACHE_MODULE(charset_lite, character set translation.  Enabled by default only on EBCDIC systems., , , no)
    APACHE_MODULE(charset_lite, character set translation.  Enabled by default only on EBCDIC systems., , , )
fi


Loading