f1560558b6
- enforcing use libapr-1.so.5 (apr-1.5.0 instead apr-1.4.8) Changes with Apache 2.4.9 *) mod_ssl: Work around a bug in some older versions of OpenSSL that would cause a crash in SSL_get_certificate for servers where the certificate hadn't been sent. [Stephen Henson] *) mod_lua: Add a fixups hook that checks if the original request is intended for LuaMapHandler. This fixes a bug where FallbackResource invalidates the LuaMapHandler directive in certain cases by changing the URI before the map handler code executes [Daniel Gruno, Daniel Ferradal <dferradal gmail com>]. Changes with Apache 2.4.8 *) SECURITY: CVE-2014-0098 (cve.mitre.org) Clean up cookie logging with fewer redundant string parsing passes. Log only cookies with a value assignment. Prevents segfaults when logging truncated cookies. [William Rowe, Ruediger Pluem, Jim Jagielski] *) SECURITY: CVE-2013-6438 (cve.mitre.org) mod_dav: Keep track of length of cdata properly when removing leading spaces. Eliminates a potential denial of service from specifically crafted DAV WRITE requests [Amin Tora <Amin.Tora neustar.biz>] *) core: Support named groups and backreferences within the LocationMatch, DirectoryMatch, FilesMatch and ProxyMatch directives. (Requires non-ancient PCRE library) [Graham Leggett] *) core: draft-ietf-httpbis-p1-messaging-23 corrections regarding TE/CL conflicts. [Yann Ylavic <ylavic.dev gmail com>, Jim Jagielski] *) mod_dir: Add DirectoryCheckHandler to allow a 2.2-like behavior, skipping execution when a handler is already set. PR53929. [Eric Covener] *) mod_ssl: Do not perform SNI / Host header comparison in case of a forward proxy request. [Ruediger Pluem] *) mod_ssl: Remove the hardcoded algorithm-type dependency for the SSLCertificateFile and SSLCertificateKeyFile directives, to enable future algorithm agility, and deprecate the SSLCertificateChainFile directive (obsoleted by SSLCertificateFile). [Kaspar Brand] *) mod_rewrite: Add RewriteOptions InheritDown, InheritDownBefore, and IgnoreInherit to allow RewriteRules to be pushed from parent scopes to child scopes without explicitly configuring each child scope. PR56153. [Edward Lu <Chaosed0 gmail com>] *) prefork: Fix long delays when doing a graceful restart. PR 54852 [Jim Jagielski, Arkadiusz Miskiewicz <arekm maven pl>] *) FreeBSD: Disable IPv4-mapped listening sockets by default for versions 5+ instead of just for FreeBSD 5. PR 53824. [Jeff Trawick] *) mod_proxy_wstunnel: Avoid busy loop on client errors, drop message IDs 02445, 02446, and 02448 to TRACE1 from DEBUG. PR 56145. [Joffroy Christen <joffroy.christen solvaxis com>, Eric Covener] *) mod_remoteip: Correct the trusted proxy match test. PR 54651. [Yoshinori Ehara <yoshinori ehara gmail com>, Eugene L <eugenel amazon com>] *) mod_proxy_fcgi: Fix error message when an unexpected protocol version number is received from the application. PR 56110. [Jeff Trawick] *) mod_remoteip: Use the correct IP addresses to populate the proxy_ips field. PR 55972. [Mike Rumph] *) mod_lua: Update r:setcookie() to accept a table of options and add domain, path and httponly to the list of options available to set. PR 56128 [Edward Lu <Chaosed0 gmail com>, Daniel Gruno] *) mod_lua: Fix r:setcookie() to add, rather than replace, the Set-Cookie header. PR56105 [Kevin J Walters <kjw ms com>, Edward Lu <Chaosed0 gmail com>] *) mod_lua: Allow for database results to be returned as a hash with row-name/value pairs instead of just row-number/value. [Daniel Gruno] *) mod_rewrite: Add %{CONN_REMOTE_ADDR} as the non-useragent counterpart to %{REMOTE_ADDR}. PR 56094. [Edward Lu <Chaosed0 gmail com>] *) WinNT MPM: If ap_run_pre_connection() fails or sets c->aborted, don't save the socket for reuse by the next worker as if it were an APR_SO_DISCONNECTED socket. Restores 2.2 behavior. [Eric Covener] *) mod_dir: Don't search for a DirectoryIndex or DirectorySlash on a URL that was just rewritten by mod_rewrite. PR53929. [Eric Covener] *) mod_session: When we have a session we were unable to decode, behave as if there was no session at all. [Thomas Eckert <thomas.r.w.eckert gmail com>] *) mod_session: Fix problems interpreting the SessionInclude and SessionExclude configuration. PR 56038. [Erik Pearson <erik adaptations.com>] *) mod_authn_core: Allow <AuthnProviderAlias>'es to be seen from auth stanzas under virtual hosts. PR 55622. [Eric Covener] *) mod_proxy_fcgi: Use apr_socket_timeout_get instead of hard-coded 30 seconds timeout. [Jan Kaluza] *) mod_proxy: Added support for unix domain sockets as the backend server endpoint [Jim Jagielski, Blaise Tarr <blaise tarr gmail com>] *) build: only search for modules (config*.m4) in known subdirectories, see build/config-stubs. [Stefan Fritsch] *) mod_cache_disk: Fix potential hangs on Windows when using mod_cache_disk. PR 55833. [Eric Covener] *) mod_ssl: Add support for OpenSSL configuration commands by introducing the SSLOpenSSLConfCmd directive. [Stephen Henson, Kaspar Brand] *) mod_proxy: Remove (never documented) <Proxy ~ wildcard-url> syntax which is equivalent to <ProxyMatch wildcard-url>. [Christophe Jaillet] *) mod_authz_user, mod_authz_host, mod_authz_groupfile, mod_authz_dbm, mod_authz_dbd, mod_authnz_ldap: Support the expression parser within the require directives. [Graham Leggett] *) mod_proxy_http: Core dumped under high load. PR 50335. [Jan Kaluza <jkaluza redhat.com>] *) mod_socache_shmcb.c: Remove arbitrary restriction on shared memory size previously limited to 64MB. [Jens Låås <jelaas gmail.com>] *) mod_lua: Use binary copy when dealing with uploads through r:parsebody() to prevent truncating files. [Daniel Gruno] Changes with Apache 2.4.7 *) APR 1.5.0 or later is now required for the event MPM. *) slotmem_shm: Error detection. [Jim Jagielski] *) event: Use skiplist data structure. [Jim Jagielski] *) event: Fail at startup with message AP02405 if the APR atomic implementation is not compatible with the MPM. [Jim Jagielski] *) mpm_unix: Add ap_mpm_podx_* implementation to avoid code duplication and align w/ trunk. [Jim Jagielski] *) Fix potential rejection of valid MaxMemFree and ThreadStackSize directives. [Mike Rumph <mike.rumph oracle.com>] *) mod_proxy_fcgi: Remove 64K limit on encoded length of all envvars. An individual envvar with an encoded length of more than 16K will be omitted. [Jeff Trawick] *) mod_proxy_fcgi: Handle reading protocol data that is split between packets. [Jeff Trawick] *) mod_ssl: Improve handling of ephemeral DH and ECDH keys by allowing custom parameters to be configured via SSLCertificateFile, and by adding standardized DH parameters for 1024/2048/3072/4096 bits. Unless custom parameters are configured, the standardized parameters are applied based on the certificate's RSA/DSA key size. [Kaspar Brand] *) mod_ssl, configure: Require OpenSSL 0.9.8a or later. [Kaspar Brand] *) mod_ssl: drop support for export-grade ciphers with ephemeral RSA keys, and unconditionally disable aNULL, eNULL and EXP ciphers (not overridable via SSLCipherSuite). [Kaspar Brand] *) mod_proxy: Added support for unix domain sockets as the backend server endpoint [Jim Jagielski, Blaise Tarr <blaise tarr gmail com>] *) Add experimental cmake-based build system for Windows. [Jeff Trawick, Tom Donovan] *) event MPM: Fix possible crashes (third party modules accessing c->sbh) or occasional missed mod_status updates for some keepalive requests under load. [Eric Covener] *) mod_authn_socache: Support optional initialization arguments for socache providers. [Chris Darroch] *) mod_session: Reset the max-age on session save. PR 47476. [Alexey Varlamov <alexey.v.varlamov gmail com>] *) mod_session: After parsing the value of the header specified by the SessionHeader directive, remove the value from the response. PR 55279. [Graham Leggett] *) mod_headers: Allow for format specifiers in the substitution string when using Header edit. [Daniel Ruggeri] *) mod_dav: dav_resource->uri is treated as unencoded. This was an unnecessary ABI changed introduced in 2.4.6. PR 55397. *) mod_dav: Don't require lock tokens for COPY source. PR 55306. *) core: Don't truncate output when sending is interrupted by a signal, such as from an exiting CGI process. PR 55643. [Jeff Trawick] *) WinNT MPM: Exit the child if the parent process crashes or is terminated. [Oracle Corporation] *) Windows: Correct failure to discard stderr in some error log configurations. (Error message AH00093) [Jeff Trawick] *) mod_session_crypto: Allow using exec: calls to obtain session encryption key. [Daniel Ruggeri] *) core: Add missing Reason-Phrase in HTTP response headers. PR 54946. [Rainer Jung] *) mod_rewrite: Make rewrite websocket-aware to allow proxying. PR 55598. [Chris Harris <chris.harris kitware com>] *) mod_ldap: When looking up sub-groups, use an implicit objectClass=* instead of an explicit cn=* filter. [David Hawes <dhawes vt.edu>] *) ab: Add wait time, fix processing time, and output write errors only if they occured. [Christophe Jaillet] *) worker MPM: Don't forcibly kill worker threads if the child process is exiting gracefully. [Oracle Corporation] *) core: apachectl -S prints wildcard name-based virtual hosts twice. PR54948 [Eric Covener] *) mod_auth_basic: Add AuthBasicUseDigestAlgorithm directive to allow migration of passwords from digest to basic authentication. [Chris Darroch] *) ab: Add a new -l parameter in order not to check the length of the responses. This can be usefull with dynamic pages. PR9945, PR27888, PR42040 [<ccikrs1 cranbrook edu>] *) Suppress formatting of startup messages written to the console when ErrorLogFormat is used. [Jeff Trawick] *) mod_auth_digest: Be more specific when the realm mismatches because the realm has not been specified. [Graham Leggett] *) mod_proxy: Add a note in the balancer manager stating whether changes will or will not be persisted and whether settings are inherited. [Daniel Ruggeri, Jim Jagielski] *) mod_cache: Avoid a crash with strcmp() when the hostname is not provided. [Graham Leggett] *) core: Add util_fcgi.h and associated definitions and support routines for FastCGI, based largely on mod_proxy_fcgi. [Jeff Trawick] *) mod_headers: Add 'Header note header-name note-name' for copying a response headers value into a note. [Eric Covener] *) mod_headers: Add 'setifempty' command to Header and RequestHeader. [Eric Covener] *) mod_logio: new format-specifier %S (sum) which is the sum of received and sent byte counts. PR54015 [Christophe Jaillet] *) mod_deflate: Improve error detection when decompressing request bodies with trailing garbage: handle case where trailing bytes are in the same bucket. [Rainer Jung] *) mod_authz_groupfile, mod_authz_user: Reduce severity of AH01671 and AH01663 from ERROR to DEBUG, since these modules do not know what mod_authz_core is doing with their AUTHZ_DENIED return value. [Eric Covener] *) mod_ldap: add TRACE5 for LDAP retries. [Eric Covener] *) mod_ldap: retry on an LDAP timeout during authn. [Eric Covener] *) mod_ldap: Change "LDAPReferrals off" to actually set the underlying LDAP SDK option to OFF, and introduce "LDAPReferrals default" to take the SDK default, sans rebind authentication callback. [Jan Kaluza <kaluze AT redhat.com>] *) core: Log a message at TRACE1 when the client aborts a connection. [Eric Covener] *) WinNT MPM: Don't crash during child process initialization if the Listen protocol is unrecognized. [Jeff Trawick] *) modules: Fix some compiler warnings. [Guenter Knauf] *) Sync 2.4 and trunk - Avoid some memory allocation and work when TRACE1 is not activated - fix typo in include guard - indent - No need to lower the string before removing the path, it is just a waste of time... - Save a few cycles [Christophe Jaillet <christophe.jaillet wanadoo.fr>] *) mod_filter: Add "change=no" as a proto-flag to FilterProtocol to remove a providers initial flags set at registration time. [Eric Covener] *) core, mod_ssl: Enable the ability for a module to reverse the sense of a poll event from a read to a write or vice versa. This is a step on the way to allow mod_ssl taking full advantage of the event MPM. [Graham Leggett] *) Makefile.win: Install proper pcre DLL file during debug build install. PR 55235. [Ben Reser <ben reser org>] *) mod_ldap: Fix a potential memory leak or corruption. PR 54936. [Zhenbo Xu <zhenbo1987 gmail com>] *) ab: Fix potential buffer overflows when processing the T and X command-line options. PR 55360. [Mike Rumph <mike.rumph oracle.com>] *) fcgistarter: Specify SO_REUSEADDR to allow starting a server with old connections in TIME_WAIT. [Jeff Trawick] *) core: Add open_htaccess hook which, in conjunction with dirwalk_stat and post_perdir_config (introduced in 2.4.5), allows mpm-itk to be used without patches to httpd core. [Stefan Fritsch] *) support/htdbm: fix processing of -t command line switch. Regression introduced in 2.4.4 PR 55264 [Jo Rhett <jrhett netconsonance com>] *) mod_lua: add websocket support via r:wsupgrade, r:wswrite, r:wsread and r:wsping. [Daniel Gruno] *) mod_lua: add support for writing/reading cookies via r:getcookie and r:setcookie. [Daniel Gruno] *) mod_lua: If the first yield() of a LuaOutputFilter returns a string, it should be prefixed to the response as documented. [Eric Covener] Note: Not present in 2.4.7 CHANGES *) mod_lua: Remove ETAG, Content-Length, and Content-MD5 when a LuaOutputFilter is configured without mod_filter. [Eric Covener] Note: Not present in 2.4.7 CHANGES *) mod_lua: Register LuaOutputFilter scripts as changing the content and content-length by default, when run my mod_filter. Previously, growing or shrinking a response that started with Content-Length set would require mod_filter and FilterProtocol change=yes. [Eric Covener] Note: Not present in 2.4.7 CHANGES *) mod_lua: Return a 500 error if a LuaHook* script doesn't return a numeric return code. [Eric Covener] Note: Not present in 2.4.7 CHANGES
566 lines
22 KiB
Text
566 lines
22 KiB
Text
@comment keep the next three lines on top (only required for old pkg_... tools)
|
|
@exec mkdir -p %D/%%ETCDIR%%/envvars.d
|
|
@exec mkdir -p %D/%%ETCDIR%%/extra
|
|
@exec mkdir -p %D/%%ETCDIR%%/Includes
|
|
bin/ab
|
|
bin/htdbm
|
|
bin/htdigest
|
|
bin/htpasswd
|
|
bin/httxt2dbm
|
|
bin/logresolve
|
|
%%ETCDIR%%/Includes/no-accf.conf
|
|
%%ETCDIR%%/modules.d/README_modules.d
|
|
include/apache24/ap_compat.h
|
|
include/apache24/ap_config.h
|
|
include/apache24/ap_config_auto.h
|
|
include/apache24/ap_config_layout.h
|
|
include/apache24/ap_expr.h
|
|
include/apache24/ap_hooks.h
|
|
include/apache24/ap_listen.h
|
|
include/apache24/ap_mmn.h
|
|
include/apache24/ap_mpm.h
|
|
include/apache24/ap_provider.h
|
|
include/apache24/ap_regex.h
|
|
include/apache24/ap_regkey.h
|
|
include/apache24/ap_release.h
|
|
include/apache24/ap_slotmem.h
|
|
include/apache24/ap_socache.h
|
|
include/apache24/apache_noprobes.h
|
|
include/apache24/cache_common.h
|
|
include/apache24/heartbeat.h
|
|
include/apache24/http_config.h
|
|
include/apache24/http_connection.h
|
|
include/apache24/http_core.h
|
|
include/apache24/http_log.h
|
|
include/apache24/http_main.h
|
|
include/apache24/http_protocol.h
|
|
include/apache24/http_request.h
|
|
include/apache24/http_vhost.h
|
|
include/apache24/httpd.h
|
|
include/apache24/mod_auth.h
|
|
include/apache24/mod_cache.h
|
|
include/apache24/mod_cgi.h
|
|
include/apache24/mod_core.h
|
|
include/apache24/mod_dav.h
|
|
include/apache24/mod_dbd.h
|
|
include/apache24/mod_include.h
|
|
include/apache24/mod_log_config.h
|
|
include/apache24/mod_proxy.h
|
|
include/apache24/mod_request.h
|
|
include/apache24/mod_rewrite.h
|
|
include/apache24/mod_session.h
|
|
include/apache24/mod_so.h
|
|
include/apache24/mod_ssl.h
|
|
include/apache24/mod_status.h
|
|
include/apache24/mod_unixd.h
|
|
include/apache24/mod_watchdog.h
|
|
include/apache24/mod_xml2enc.h
|
|
include/apache24/mpm_common.h
|
|
include/apache24/os.h
|
|
include/apache24/scoreboard.h
|
|
include/apache24/unixd.h
|
|
include/apache24/util_cfgtree.h
|
|
include/apache24/util_charset.h
|
|
include/apache24/util_cookies.h
|
|
include/apache24/util_ebcdic.h
|
|
include/apache24/util_fcgi.h
|
|
include/apache24/util_filter.h
|
|
include/apache24/util_ldap.h
|
|
include/apache24/util_md5.h
|
|
include/apache24/util_mutex.h
|
|
include/apache24/util_script.h
|
|
include/apache24/util_time.h
|
|
include/apache24/util_varbuf.h
|
|
include/apache24/util_xml.h
|
|
libexec/apache24/httpd.exp
|
|
%%MOD_ACCESS_COMPAT%%libexec/apache24/mod_access_compat.so
|
|
%%MOD_ACTIONS%%libexec/apache24/mod_actions.so
|
|
%%MOD_ALIAS%%libexec/apache24/mod_alias.so
|
|
%%MOD_ALLOWMETHODS%%libexec/apache24/mod_allowmethods.so
|
|
%%MOD_ASIS%%libexec/apache24/mod_asis.so
|
|
%%MOD_AUTHNZ_LDAP%%libexec/apache24/mod_authnz_ldap.so
|
|
%%MOD_AUTHN_ANON%%libexec/apache24/mod_authn_anon.so
|
|
%%MOD_AUTHN_CORE%%libexec/apache24/mod_authn_core.so
|
|
%%MOD_AUTHN_DBD%%libexec/apache24/mod_authn_dbd.so
|
|
%%MOD_AUTHN_DBM%%libexec/apache24/mod_authn_dbm.so
|
|
%%MOD_AUTHN_FILE%%libexec/apache24/mod_authn_file.so
|
|
%%MOD_AUTHN_SOCACHE%%libexec/apache24/mod_authn_socache.so
|
|
%%MOD_AUTHZ_CORE%%libexec/apache24/mod_authz_core.so
|
|
%%MOD_AUTHZ_DBD%%libexec/apache24/mod_authz_dbd.so
|
|
%%MOD_AUTHZ_DBM%%libexec/apache24/mod_authz_dbm.so
|
|
%%MOD_AUTHZ_GROUPFILE%%libexec/apache24/mod_authz_groupfile.so
|
|
%%MOD_AUTHZ_HOST%%libexec/apache24/mod_authz_host.so
|
|
%%MOD_AUTHZ_OWNER%%libexec/apache24/mod_authz_owner.so
|
|
%%MOD_AUTHZ_USER%%libexec/apache24/mod_authz_user.so
|
|
%%MOD_AUTH_BASIC%%libexec/apache24/mod_auth_basic.so
|
|
%%MOD_AUTH_DIGEST%%libexec/apache24/mod_auth_digest.so
|
|
%%MOD_AUTH_FORM%%libexec/apache24/mod_auth_form.so
|
|
%%MOD_AUTOINDEX%%libexec/apache24/mod_autoindex.so
|
|
%%MOD_BUCKETEER%%libexec/apache24/mod_bucketeer.so
|
|
%%MOD_BUFFER%%libexec/apache24/mod_buffer.so
|
|
%%MOD_CACHE%%libexec/apache24/mod_cache.so
|
|
%%MOD_CACHE_DISK%%libexec/apache24/mod_cache_disk.so
|
|
%%MOD_CACHE_SOCACHE%%libexec/apache24/mod_cache_socache.so
|
|
%%MOD_CASE_FILTER%%libexec/apache24/mod_case_filter.so
|
|
%%MOD_CASE_FILTER_IN%%libexec/apache24/mod_case_filter_in.so
|
|
%%MOD_CERN_META%%libexec/apache24/mod_cern_meta.so
|
|
%%MOD_CGI%%libexec/apache24/mod_cgi.so
|
|
%%MOD_CGID%%libexec/apache24/mod_cgid.so
|
|
%%MOD_CHARSET_LITE%%libexec/apache24/mod_charset_lite.so
|
|
%%MOD_DATA%%libexec/apache24/mod_data.so
|
|
%%MOD_DAV%%libexec/apache24/mod_dav.so
|
|
%%MOD_DAV_FS%%libexec/apache24/mod_dav_fs.so
|
|
%%MOD_DAV_LOCK%%libexec/apache24/mod_dav_lock.so
|
|
%%MOD_DBD%%libexec/apache24/mod_dbd.so
|
|
%%MOD_DEFLATE%%libexec/apache24/mod_deflate.so
|
|
%%MOD_DIALUP%%libexec/apache24/mod_dialup.so
|
|
%%MOD_DIR%%libexec/apache24/mod_dir.so
|
|
%%MOD_DUMPIO%%libexec/apache24/mod_dumpio.so
|
|
%%MOD_ECHO%%libexec/apache24/mod_echo.so
|
|
%%MOD_ENV%%libexec/apache24/mod_env.so
|
|
%%MOD_EXAMPLE_HOOKS%%libexec/apache24/mod_example_hooks.so
|
|
%%MOD_EXAMPLE_IPC%%libexec/apache24/mod_example_ipc.so
|
|
%%MOD_EXPIRES%%libexec/apache24/mod_expires.so
|
|
%%MOD_EXT_FILTER%%libexec/apache24/mod_ext_filter.so
|
|
%%MOD_FILE_CACHE%%libexec/apache24/mod_file_cache.so
|
|
%%MOD_FILTER%%libexec/apache24/mod_filter.so
|
|
%%MOD_HEADERS%%libexec/apache24/mod_headers.so
|
|
%%MOD_HEARTBEAT%%libexec/apache24/mod_heartbeat.so
|
|
%%MOD_HEARTMONITOR%%libexec/apache24/mod_heartmonitor.so
|
|
%%MOD_IDENT%%libexec/apache24/mod_ident.so
|
|
%%MOD_IMAGEMAP%%libexec/apache24/mod_imagemap.so
|
|
%%MOD_INCLUDE%%libexec/apache24/mod_include.so
|
|
%%MOD_INFO%%libexec/apache24/mod_info.so
|
|
%%MOD_LBMETHOD_BYBUSYNESS%%libexec/apache24/mod_lbmethod_bybusyness.so
|
|
%%MOD_LBMETHOD_BYREQUESTS%%libexec/apache24/mod_lbmethod_byrequests.so
|
|
%%MOD_LBMETHOD_BYTRAFFIC%%libexec/apache24/mod_lbmethod_bytraffic.so
|
|
%%MOD_LBMETHOD_HEARTBEAT%%libexec/apache24/mod_lbmethod_heartbeat.so
|
|
%%MOD_LDAP%%libexec/apache24/mod_ldap.so
|
|
%%MOD_LOGIO%%libexec/apache24/mod_logio.so
|
|
libexec/apache24/mod_log_config.so
|
|
%%MOD_LOG_DEBUG%%libexec/apache24/mod_log_debug.so
|
|
%%MOD_LOG_FORENSIC%%libexec/apache24/mod_log_forensic.so
|
|
%%MOD_LUA%%libexec/apache24/mod_lua.so
|
|
%%MOD_MACRO%%libexec/apache24/mod_macro.so
|
|
%%MOD_MIME%%libexec/apache24/mod_mime.so
|
|
%%MOD_MIME_MAGIC%%libexec/apache24/mod_mime_magic.so
|
|
%%MPM_SHARED%%libexec/apache24/mod_mpm_event.so
|
|
%%MPM_SHARED%%libexec/apache24/mod_mpm_prefork.so
|
|
%%MPM_SHARED%%libexec/apache24/mod_mpm_worker.so
|
|
%%MOD_NEGOTIATION%%libexec/apache24/mod_negotiation.so
|
|
%%MOD_OPTIONAL_FN_EXPORT%%libexec/apache24/mod_optional_fn_export.so
|
|
%%MOD_OPTIONAL_FN_IMPORT%%libexec/apache24/mod_optional_fn_import.so
|
|
%%MOD_OPTIONAL_HOOK_EXPORT%%libexec/apache24/mod_optional_hook_export.so
|
|
%%MOD_OPTIONAL_HOOK_IMPORT%%libexec/apache24/mod_optional_hook_import.so
|
|
%%MOD_PROXY%%libexec/apache24/mod_proxy.so
|
|
%%MOD_PROXY_AJP%%libexec/apache24/mod_proxy_ajp.so
|
|
%%MOD_PROXY_BALANCER%%libexec/apache24/mod_proxy_balancer.so
|
|
%%MOD_PROXY_CONNECT%%libexec/apache24/mod_proxy_connect.so
|
|
%%MOD_PROXY_EXPRESS%%libexec/apache24/mod_proxy_express.so
|
|
%%MOD_PROXY_FCGI%%libexec/apache24/mod_proxy_fcgi.so
|
|
%%MOD_PROXY_FDPASS%%libexec/apache24/mod_proxy_fdpass.so
|
|
%%MOD_PROXY_FTP%%libexec/apache24/mod_proxy_ftp.so
|
|
%%MOD_PROXY_HTML%%libexec/apache24/mod_proxy_html.so
|
|
%%MOD_PROXY_HTTP%%libexec/apache24/mod_proxy_http.so
|
|
%%MOD_PROXY_SCGI%%libexec/apache24/mod_proxy_scgi.so
|
|
%%MOD_PROXY_WSTUNNEL%%libexec/apache24/mod_proxy_wstunnel.so
|
|
%%MOD_RATELIMIT%%libexec/apache24/mod_ratelimit.so
|
|
%%MOD_REFLECTOR%%libexec/apache24/mod_reflector.so
|
|
%%MOD_REMOTEIP%%libexec/apache24/mod_remoteip.so
|
|
%%MOD_REQTIMEOUT%%libexec/apache24/mod_reqtimeout.so
|
|
%%MOD_REQUEST%%libexec/apache24/mod_request.so
|
|
%%MOD_REWRITE%%libexec/apache24/mod_rewrite.so
|
|
%%MOD_SED%%libexec/apache24/mod_sed.so
|
|
%%MOD_SESSION%%libexec/apache24/mod_session.so
|
|
%%MOD_SESSION_COOKIE%%libexec/apache24/mod_session_cookie.so
|
|
%%MOD_SESSION_CRYPTO%%libexec/apache24/mod_session_crypto.so
|
|
%%MOD_SESSION_DBD%%libexec/apache24/mod_session_dbd.so
|
|
%%MOD_SETENVIF%%libexec/apache24/mod_setenvif.so
|
|
%%MOD_SLOTMEM_PLAIN%%libexec/apache24/mod_slotmem_plain.so
|
|
%%MOD_SLOTMEM_SHM%%libexec/apache24/mod_slotmem_shm.so
|
|
%%MOD_SOCACHE_DBM%%libexec/apache24/mod_socache_dbm.so
|
|
%%MOD_SOCACHE_DC%%libexec/apache24/mod_socache_dc.so
|
|
%%MOD_SOCACHE_MEMCACHE%%libexec/apache24/mod_socache_memcache.so
|
|
%%MOD_SOCACHE_SHMCB%%libexec/apache24/mod_socache_shmcb.so
|
|
%%MOD_SPELING%%libexec/apache24/mod_speling.so
|
|
%%MOD_SSL%%libexec/apache24/mod_ssl.so
|
|
%%MOD_STATUS%%libexec/apache24/mod_status.so
|
|
%%MOD_SUBSTITUTE%%libexec/apache24/mod_substitute.so
|
|
%%MOD_SUEXEC%%libexec/apache24/mod_suexec.so
|
|
%%MOD_UNIQUE_ID%%libexec/apache24/mod_unique_id.so
|
|
libexec/apache24/mod_unixd.so
|
|
%%MOD_USERDIR%%libexec/apache24/mod_userdir.so
|
|
%%MOD_USERTRACK%%libexec/apache24/mod_usertrack.so
|
|
%%MOD_VERSION%%libexec/apache24/mod_version.so
|
|
%%MOD_VHOST_ALIAS%%libexec/apache24/mod_vhost_alias.so
|
|
%%MOD_WATCHDOG%%libexec/apache24/mod_watchdog.so
|
|
%%MOD_XML2ENC%%libexec/apache24/mod_xml2enc.so
|
|
man/man1/ab.1.gz
|
|
man/man1/apxs.1.gz
|
|
man/man1/dbmmanage.1.gz
|
|
man/man1/htdbm.1.gz
|
|
man/man1/htdigest.1.gz
|
|
man/man1/htpasswd.1.gz
|
|
man/man1/httxt2dbm.1.gz
|
|
man/man1/logresolve.1.gz
|
|
man/man8/apachectl.8.gz
|
|
man/man8/fcgistarter.8.gz
|
|
man/man8/htcacheclean.8.gz
|
|
man/man8/httpd.8.gz
|
|
man/man8/rotatelogs.8.gz
|
|
man/man8/suexec.8.gz
|
|
sbin/apachectl
|
|
sbin/apxs
|
|
%%FORENSIC%%sbin/check_forensic
|
|
sbin/checkgid
|
|
sbin/dbmmanage
|
|
sbin/envvars
|
|
sbin/fcgistarter
|
|
sbin/htcacheclean
|
|
sbin/httpd
|
|
sbin/rotatelogs
|
|
sbin/split-logfile
|
|
%%SUEXEC%%sbin/suexec
|
|
%%DATADIR%%/build/config.nice
|
|
%%DATADIR%%/build/config_vars.mk
|
|
%%DATADIR%%/build/instdso.sh
|
|
%%DATADIR%%/build/library.mk
|
|
%%DATADIR%%/build/ltlib.mk
|
|
%%DATADIR%%/build/mkdir.sh
|
|
%%DATADIR%%/build/program.mk
|
|
%%DATADIR%%/build/rules.mk
|
|
%%DATADIR%%/build/special.mk
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-autoindex.conf %D/%%EXAMPLESDIR%%/extra/httpd-autoindex.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-autoindex.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-autoindex.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-autoindex.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-autoindex.conf %D/%%ETCDIR%%/extra/httpd-autoindex.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-dav.conf %D/%%EXAMPLESDIR%%/extra/httpd-dav.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-dav.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-dav.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-dav.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-dav.conf %D/%%ETCDIR%%/extra/httpd-dav.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-default.conf %D/%%EXAMPLESDIR%%/extra/httpd-default.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-default.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-default.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-default.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-default.conf %D/%%ETCDIR%%/extra/httpd-default.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-info.conf %D/%%EXAMPLESDIR%%/extra/httpd-info.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-info.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-info.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-info.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-info.conf %D/%%ETCDIR%%/extra/httpd-info.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-languages.conf %D/%%EXAMPLESDIR%%/extra/httpd-languages.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-languages.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-languages.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-languages.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-languages.conf %D/%%ETCDIR%%/extra/httpd-languages.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-manual.conf %D/%%EXAMPLESDIR%%/extra/httpd-manual.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-manual.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-manual.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-manual.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-manual.conf %D/%%ETCDIR%%/extra/httpd-manual.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-mpm.conf %D/%%EXAMPLESDIR%%/extra/httpd-mpm.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-mpm.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-mpm.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-mpm.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-mpm.conf %D/%%ETCDIR%%/extra/httpd-mpm.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-multilang-errordoc.conf %D/%%EXAMPLESDIR%%/extra/httpd-multilang-errordoc.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-multilang-errordoc.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-multilang-errordoc.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-multilang-errordoc.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-multilang-errordoc.conf %D/%%ETCDIR%%/extra/httpd-multilang-errordoc.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-ssl.conf %D/%%EXAMPLESDIR%%/extra/httpd-ssl.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-ssl.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-ssl.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-ssl.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-ssl.conf %D/%%ETCDIR%%/extra/httpd-ssl.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-userdir.conf %D/%%EXAMPLESDIR%%/extra/httpd-userdir.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-userdir.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-userdir.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-userdir.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-userdir.conf %D/%%ETCDIR%%/extra/httpd-userdir.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/httpd-vhosts.conf %D/%%EXAMPLESDIR%%/extra/httpd-vhosts.conf; then rm -f %D/%%ETCDIR%%/extra/httpd-vhosts.conf; fi
|
|
%%EXAMPLESDIR%%/extra/httpd-vhosts.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/httpd-vhosts.conf ] || cp %D/%%EXAMPLESDIR%%/extra/httpd-vhosts.conf %D/%%ETCDIR%%/extra/httpd-vhosts.conf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/extra/proxy-html.conf %D/%%EXAMPLESDIR%%/extra/proxy-html.conf; then rm -f %D/%%ETCDIR%%/extra/proxy-html.conf; fi
|
|
%%EXAMPLESDIR%%/extra/proxy-html.conf
|
|
@exec [ -f %D/%%ETCDIR%%/extra/proxy-html.conf ] || cp %D/%%EXAMPLESDIR%%/extra/proxy-html.conf %D/%%ETCDIR%%/extra/proxy-html.conf
|
|
@unexec if cmp %D/%%ETCDIR%%/httpd.conf %D/%%EXAMPLESDIR%%/httpd.conf; then rm -vf %D/%%ETCDIR%%/httpd.conf; fi
|
|
%%EXAMPLESDIR%%/httpd.conf
|
|
@exec [ -f %D/%%ETCDIR%%/httpd.conf ] || cp -v %D/%%EXAMPLESDIR%%/httpd.conf %D/%%ETCDIR%%/httpd.conf
|
|
@unexec if cmp -s %D/%%WWWDIR%%/data/index.html %D/%%EXAMPLESDIR%%/index.html; then rm -f %D/%%WWWDIR%%/data/index.html; fi
|
|
%%EXAMPLESDIR%%/index.html
|
|
@exec [ -d %D/%%WWWDIR%%/data ] || mkdir -p %D/%%WWWDIR%%/data
|
|
@exec [ -f %D/%%WWWDIR%%/data/index.html ] || cp %D/%%EXAMPLESDIR%%/index.html %D/%%WWWDIR%%/data/index.html
|
|
@unexec if cmp -s %D/%%ETCDIR%%/magic %D/%%EXAMPLESDIR%%/magic; then rm -f %D/%%ETCDIR%%/magic; fi
|
|
%%EXAMPLESDIR%%/magic
|
|
@exec [ -f %D/%%ETCDIR%%/magic ] || cp %D/%%EXAMPLESDIR%%/magic %D/%%ETCDIR%%/magic
|
|
@unexec if cmp -s %D/%%ETCDIR%%/mime.types %D/%%EXAMPLESDIR%%/mime.types; then rm -f %D/%%ETCDIR%%/mime.types; fi
|
|
%%EXAMPLESDIR%%/mime.types
|
|
@exec [ -f %D/%%ETCDIR%%/mime.types ] || cp %D/%%EXAMPLESDIR%%/mime.types %D/%%ETCDIR%%/mime.types
|
|
%%WWWDIR%%/cgi-bin/printenv
|
|
%%WWWDIR%%/cgi-bin/printenv.vbs
|
|
%%WWWDIR%%/cgi-bin/printenv.wsf
|
|
%%WWWDIR%%/cgi-bin/test-cgi
|
|
%%WWWDIR%%/error/HTTP_BAD_GATEWAY.html.var
|
|
%%WWWDIR%%/error/HTTP_BAD_REQUEST.html.var
|
|
%%WWWDIR%%/error/HTTP_FORBIDDEN.html.var
|
|
%%WWWDIR%%/error/HTTP_GONE.html.var
|
|
%%WWWDIR%%/error/HTTP_INTERNAL_SERVER_ERROR.html.var
|
|
%%WWWDIR%%/error/HTTP_LENGTH_REQUIRED.html.var
|
|
%%WWWDIR%%/error/HTTP_METHOD_NOT_ALLOWED.html.var
|
|
%%WWWDIR%%/error/HTTP_NOT_FOUND.html.var
|
|
%%WWWDIR%%/error/HTTP_NOT_IMPLEMENTED.html.var
|
|
%%WWWDIR%%/error/HTTP_PRECONDITION_FAILED.html.var
|
|
%%WWWDIR%%/error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
|
|
%%WWWDIR%%/error/HTTP_REQUEST_TIME_OUT.html.var
|
|
%%WWWDIR%%/error/HTTP_REQUEST_URI_TOO_LARGE.html.var
|
|
%%WWWDIR%%/error/HTTP_SERVICE_UNAVAILABLE.html.var
|
|
%%WWWDIR%%/error/HTTP_UNAUTHORIZED.html.var
|
|
%%WWWDIR%%/error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
|
|
%%WWWDIR%%/error/HTTP_VARIANT_ALSO_VARIES.html.var
|
|
%%WWWDIR%%/error/README
|
|
%%WWWDIR%%/error/contact.html.var
|
|
%%WWWDIR%%/error/include/bottom.html
|
|
%%WWWDIR%%/error/include/spacer.html
|
|
%%WWWDIR%%/error/include/top.html
|
|
%%WWWDIR%%/icons/README
|
|
%%WWWDIR%%/icons/README.html
|
|
%%WWWDIR%%/icons/a.gif
|
|
%%WWWDIR%%/icons/a.png
|
|
%%WWWDIR%%/icons/alert.black.gif
|
|
%%WWWDIR%%/icons/alert.black.png
|
|
%%WWWDIR%%/icons/alert.red.gif
|
|
%%WWWDIR%%/icons/alert.red.png
|
|
%%WWWDIR%%/icons/apache_pb.gif
|
|
%%WWWDIR%%/icons/apache_pb.png
|
|
%%WWWDIR%%/icons/apache_pb.svg
|
|
%%WWWDIR%%/icons/apache_pb2.gif
|
|
%%WWWDIR%%/icons/apache_pb2.png
|
|
%%WWWDIR%%/icons/back.gif
|
|
%%WWWDIR%%/icons/back.png
|
|
%%WWWDIR%%/icons/ball.gray.gif
|
|
%%WWWDIR%%/icons/ball.gray.png
|
|
%%WWWDIR%%/icons/ball.red.gif
|
|
%%WWWDIR%%/icons/ball.red.png
|
|
%%WWWDIR%%/icons/binary.gif
|
|
%%WWWDIR%%/icons/binary.png
|
|
%%WWWDIR%%/icons/binhex.gif
|
|
%%WWWDIR%%/icons/binhex.png
|
|
%%WWWDIR%%/icons/blank.gif
|
|
%%WWWDIR%%/icons/blank.png
|
|
%%WWWDIR%%/icons/bomb.gif
|
|
%%WWWDIR%%/icons/bomb.png
|
|
%%WWWDIR%%/icons/box1.gif
|
|
%%WWWDIR%%/icons/box1.png
|
|
%%WWWDIR%%/icons/box2.gif
|
|
%%WWWDIR%%/icons/box2.png
|
|
%%WWWDIR%%/icons/broken.gif
|
|
%%WWWDIR%%/icons/broken.png
|
|
%%WWWDIR%%/icons/burst.gif
|
|
%%WWWDIR%%/icons/burst.png
|
|
%%WWWDIR%%/icons/c.gif
|
|
%%WWWDIR%%/icons/c.png
|
|
%%WWWDIR%%/icons/comp.blue.gif
|
|
%%WWWDIR%%/icons/comp.blue.png
|
|
%%WWWDIR%%/icons/comp.gray.gif
|
|
%%WWWDIR%%/icons/comp.gray.png
|
|
%%WWWDIR%%/icons/compressed.gif
|
|
%%WWWDIR%%/icons/compressed.png
|
|
%%WWWDIR%%/icons/continued.gif
|
|
%%WWWDIR%%/icons/continued.png
|
|
%%WWWDIR%%/icons/dir.gif
|
|
%%WWWDIR%%/icons/dir.png
|
|
%%WWWDIR%%/icons/diskimg.gif
|
|
%%WWWDIR%%/icons/diskimg.png
|
|
%%WWWDIR%%/icons/down.gif
|
|
%%WWWDIR%%/icons/down.png
|
|
%%WWWDIR%%/icons/dvi.gif
|
|
%%WWWDIR%%/icons/dvi.png
|
|
%%WWWDIR%%/icons/f.gif
|
|
%%WWWDIR%%/icons/f.png
|
|
%%WWWDIR%%/icons/folder.gif
|
|
%%WWWDIR%%/icons/folder.open.gif
|
|
%%WWWDIR%%/icons/folder.open.png
|
|
%%WWWDIR%%/icons/folder.png
|
|
%%WWWDIR%%/icons/folder.sec.gif
|
|
%%WWWDIR%%/icons/folder.sec.png
|
|
%%WWWDIR%%/icons/forward.gif
|
|
%%WWWDIR%%/icons/forward.png
|
|
%%WWWDIR%%/icons/generic.gif
|
|
%%WWWDIR%%/icons/generic.png
|
|
%%WWWDIR%%/icons/generic.red.gif
|
|
%%WWWDIR%%/icons/generic.red.png
|
|
%%WWWDIR%%/icons/generic.sec.gif
|
|
%%WWWDIR%%/icons/generic.sec.png
|
|
%%WWWDIR%%/icons/hand.right.gif
|
|
%%WWWDIR%%/icons/hand.right.png
|
|
%%WWWDIR%%/icons/hand.up.gif
|
|
%%WWWDIR%%/icons/hand.up.png
|
|
%%WWWDIR%%/icons/icon.sheet.gif
|
|
%%WWWDIR%%/icons/icon.sheet.png
|
|
%%WWWDIR%%/icons/image1.gif
|
|
%%WWWDIR%%/icons/image1.png
|
|
%%WWWDIR%%/icons/image2.gif
|
|
%%WWWDIR%%/icons/image2.png
|
|
%%WWWDIR%%/icons/image3.gif
|
|
%%WWWDIR%%/icons/image3.png
|
|
%%WWWDIR%%/icons/index.gif
|
|
%%WWWDIR%%/icons/index.png
|
|
%%WWWDIR%%/icons/layout.gif
|
|
%%WWWDIR%%/icons/layout.png
|
|
%%WWWDIR%%/icons/left.gif
|
|
%%WWWDIR%%/icons/left.png
|
|
%%WWWDIR%%/icons/link.gif
|
|
%%WWWDIR%%/icons/link.png
|
|
%%WWWDIR%%/icons/movie.gif
|
|
%%WWWDIR%%/icons/movie.png
|
|
%%WWWDIR%%/icons/odf6odb.png
|
|
%%WWWDIR%%/icons/odf6odc.png
|
|
%%WWWDIR%%/icons/odf6odf.png
|
|
%%WWWDIR%%/icons/odf6odg.png
|
|
%%WWWDIR%%/icons/odf6odi.png
|
|
%%WWWDIR%%/icons/odf6odm.png
|
|
%%WWWDIR%%/icons/odf6odp.png
|
|
%%WWWDIR%%/icons/odf6ods.png
|
|
%%WWWDIR%%/icons/odf6odt.png
|
|
%%WWWDIR%%/icons/odf6otc.png
|
|
%%WWWDIR%%/icons/odf6otf.png
|
|
%%WWWDIR%%/icons/odf6otg.png
|
|
%%WWWDIR%%/icons/odf6oth.png
|
|
%%WWWDIR%%/icons/odf6oti.png
|
|
%%WWWDIR%%/icons/odf6otp.png
|
|
%%WWWDIR%%/icons/odf6ots.png
|
|
%%WWWDIR%%/icons/odf6ott.png
|
|
%%WWWDIR%%/icons/p.gif
|
|
%%WWWDIR%%/icons/p.png
|
|
%%WWWDIR%%/icons/patch.gif
|
|
%%WWWDIR%%/icons/patch.png
|
|
%%WWWDIR%%/icons/pdf.gif
|
|
%%WWWDIR%%/icons/pdf.png
|
|
%%WWWDIR%%/icons/pie0.gif
|
|
%%WWWDIR%%/icons/pie0.png
|
|
%%WWWDIR%%/icons/pie1.gif
|
|
%%WWWDIR%%/icons/pie1.png
|
|
%%WWWDIR%%/icons/pie2.gif
|
|
%%WWWDIR%%/icons/pie2.png
|
|
%%WWWDIR%%/icons/pie3.gif
|
|
%%WWWDIR%%/icons/pie3.png
|
|
%%WWWDIR%%/icons/pie4.gif
|
|
%%WWWDIR%%/icons/pie4.png
|
|
%%WWWDIR%%/icons/pie5.gif
|
|
%%WWWDIR%%/icons/pie5.png
|
|
%%WWWDIR%%/icons/pie6.gif
|
|
%%WWWDIR%%/icons/pie6.png
|
|
%%WWWDIR%%/icons/pie7.gif
|
|
%%WWWDIR%%/icons/pie7.png
|
|
%%WWWDIR%%/icons/pie8.gif
|
|
%%WWWDIR%%/icons/pie8.png
|
|
%%WWWDIR%%/icons/portal.gif
|
|
%%WWWDIR%%/icons/portal.png
|
|
%%WWWDIR%%/icons/ps.gif
|
|
%%WWWDIR%%/icons/ps.png
|
|
%%WWWDIR%%/icons/quill.gif
|
|
%%WWWDIR%%/icons/quill.png
|
|
%%WWWDIR%%/icons/right.gif
|
|
%%WWWDIR%%/icons/right.png
|
|
%%WWWDIR%%/icons/screw1.gif
|
|
%%WWWDIR%%/icons/screw1.png
|
|
%%WWWDIR%%/icons/screw2.gif
|
|
%%WWWDIR%%/icons/screw2.png
|
|
%%WWWDIR%%/icons/script.gif
|
|
%%WWWDIR%%/icons/script.png
|
|
%%WWWDIR%%/icons/small/back.gif
|
|
%%WWWDIR%%/icons/small/back.png
|
|
%%WWWDIR%%/icons/small/binary.gif
|
|
%%WWWDIR%%/icons/small/binary.png
|
|
%%WWWDIR%%/icons/small/binhex.gif
|
|
%%WWWDIR%%/icons/small/binhex.png
|
|
%%WWWDIR%%/icons/small/blank.gif
|
|
%%WWWDIR%%/icons/small/blank.png
|
|
%%WWWDIR%%/icons/small/broken.gif
|
|
%%WWWDIR%%/icons/small/broken.png
|
|
%%WWWDIR%%/icons/small/burst.gif
|
|
%%WWWDIR%%/icons/small/burst.png
|
|
%%WWWDIR%%/icons/small/comp1.gif
|
|
%%WWWDIR%%/icons/small/comp1.png
|
|
%%WWWDIR%%/icons/small/comp2.gif
|
|
%%WWWDIR%%/icons/small/comp2.png
|
|
%%WWWDIR%%/icons/small/compressed.gif
|
|
%%WWWDIR%%/icons/small/compressed.png
|
|
%%WWWDIR%%/icons/small/continued.gif
|
|
%%WWWDIR%%/icons/small/continued.png
|
|
%%WWWDIR%%/icons/small/doc.gif
|
|
%%WWWDIR%%/icons/small/doc.png
|
|
%%WWWDIR%%/icons/small/folder.gif
|
|
%%WWWDIR%%/icons/small/folder.png
|
|
%%WWWDIR%%/icons/small/folder2.gif
|
|
%%WWWDIR%%/icons/small/folder2.png
|
|
%%WWWDIR%%/icons/small/forward.gif
|
|
%%WWWDIR%%/icons/small/forward.png
|
|
%%WWWDIR%%/icons/small/generic.gif
|
|
%%WWWDIR%%/icons/small/generic.png
|
|
%%WWWDIR%%/icons/small/generic2.gif
|
|
%%WWWDIR%%/icons/small/generic2.png
|
|
%%WWWDIR%%/icons/small/generic3.gif
|
|
%%WWWDIR%%/icons/small/generic3.png
|
|
%%WWWDIR%%/icons/small/image.gif
|
|
%%WWWDIR%%/icons/small/image.png
|
|
%%WWWDIR%%/icons/small/image2.gif
|
|
%%WWWDIR%%/icons/small/image2.png
|
|
%%WWWDIR%%/icons/small/index.gif
|
|
%%WWWDIR%%/icons/small/index.png
|
|
%%WWWDIR%%/icons/small/key.gif
|
|
%%WWWDIR%%/icons/small/key.png
|
|
%%WWWDIR%%/icons/small/movie.gif
|
|
%%WWWDIR%%/icons/small/movie.png
|
|
%%WWWDIR%%/icons/small/patch.gif
|
|
%%WWWDIR%%/icons/small/patch.png
|
|
%%WWWDIR%%/icons/small/ps.gif
|
|
%%WWWDIR%%/icons/small/ps.png
|
|
%%WWWDIR%%/icons/small/rainbow.gif
|
|
%%WWWDIR%%/icons/small/rainbow.png
|
|
%%WWWDIR%%/icons/small/sound.gif
|
|
%%WWWDIR%%/icons/small/sound.png
|
|
%%WWWDIR%%/icons/small/sound2.gif
|
|
%%WWWDIR%%/icons/small/sound2.png
|
|
%%WWWDIR%%/icons/small/tar.gif
|
|
%%WWWDIR%%/icons/small/tar.png
|
|
%%WWWDIR%%/icons/small/text.gif
|
|
%%WWWDIR%%/icons/small/text.png
|
|
%%WWWDIR%%/icons/small/transfer.gif
|
|
%%WWWDIR%%/icons/small/transfer.png
|
|
%%WWWDIR%%/icons/small/unknown.gif
|
|
%%WWWDIR%%/icons/small/unknown.png
|
|
%%WWWDIR%%/icons/small/uu.gif
|
|
%%WWWDIR%%/icons/small/uu.png
|
|
%%WWWDIR%%/icons/sound1.gif
|
|
%%WWWDIR%%/icons/sound1.png
|
|
%%WWWDIR%%/icons/sound2.gif
|
|
%%WWWDIR%%/icons/sound2.png
|
|
%%WWWDIR%%/icons/sphere1.gif
|
|
%%WWWDIR%%/icons/sphere1.png
|
|
%%WWWDIR%%/icons/sphere2.gif
|
|
%%WWWDIR%%/icons/sphere2.png
|
|
%%WWWDIR%%/icons/svg.png
|
|
%%WWWDIR%%/icons/tar.gif
|
|
%%WWWDIR%%/icons/tar.png
|
|
%%WWWDIR%%/icons/tex.gif
|
|
%%WWWDIR%%/icons/tex.png
|
|
%%WWWDIR%%/icons/text.gif
|
|
%%WWWDIR%%/icons/text.png
|
|
%%WWWDIR%%/icons/transfer.gif
|
|
%%WWWDIR%%/icons/transfer.png
|
|
%%WWWDIR%%/icons/unknown.gif
|
|
%%WWWDIR%%/icons/unknown.png
|
|
%%WWWDIR%%/icons/up.gif
|
|
%%WWWDIR%%/icons/up.png
|
|
%%WWWDIR%%/icons/uu.gif
|
|
%%WWWDIR%%/icons/uu.png
|
|
%%WWWDIR%%/icons/uuencoded.gif
|
|
%%WWWDIR%%/icons/uuencoded.png
|
|
%%WWWDIR%%/icons/world1.gif
|
|
%%WWWDIR%%/icons/world1.png
|
|
%%WWWDIR%%/icons/world2.gif
|
|
%%WWWDIR%%/icons/world2.png
|
|
%%WWWDIR%%/icons/xml.png
|
|
@dirrm %%WWWDIR%%/icons/small
|
|
@dirrm %%WWWDIR%%/icons
|
|
@dirrm %%WWWDIR%%/error/include
|
|
@dirrm %%WWWDIR%%/error
|
|
@dirrmtry %%WWWDIR%%/data
|
|
@dirrmtry %%WWWDIR%%/cgi-bin
|
|
@dirrmtry %%WWWDIR%%
|
|
@dirrm %%EXAMPLESDIR%%/extra
|
|
@dirrm %%EXAMPLESDIR%%
|
|
@dirrm %%DATADIR%%/build
|
|
@dirrm %%DATADIR%%
|
|
@dirrmtry libexec/apache24
|
|
@dirrmtry include/apache24
|
|
@unexec rm -f %D/%%ETCDIR%%/httpd.conf.bak 2> /dev/null || true
|
|
@dirrmtry %%ETCDIR%%/modules.d
|
|
@dirrmtry %%ETCDIR%%/extra
|
|
@dirrmtry %%ETCDIR%%/envvars.d
|
|
@dirrmtry %%ETCDIR%%/Includes
|
|
@dirrmtry %%ETCDIR%%
|