Subject: pkg/20086: Update apache2 to 2.0.44
To: None <gnats-bugs@gnats.netbsd.org>
From: Eric Gillespie <epg@pretzelnet.org>
List: netbsd-bugs
Date: 01/27/2003 17:17:28
>Number:         20086
>Category:       pkg
>Synopsis:       Update apache2 to 2.0.44
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pkg-manager
>State:          open
>Class:          change-request
>Submitter-Id:   net
>Arrival-Date:   Mon Jan 27 14:18:00 PST 2003
>Closed-Date:
>Last-Modified:
>Originator:     
>Release:        NetBSD 1.6
>Organization:
>Environment:
System: NetBSD wundagore.pretzelnet.org 1.6 NetBSD 1.6 ($Id: WUNDAGORE 435 2002-10-02 02:08:24Z epg $) #6: Sun Jan 12 17:26:34 EST 2003 epg@wundagore.pretzelnet.org:/usr/src/sys/arch/i386/compile/WUNDAGORE i386
Architecture: i386
Machine: i386
>Description:
Changes with Apache 2.0.44

  *) mod_autoindex: Bring forward the IndexOptions IgnoreCase option
     from Apache 1.3.  PR 14276
     [David Shane Holden <dpejesh@yahoo.com>, William Rowe]

  *) mod_mime: Workaround to prevent a segfault if r->filename=NULL
     [Brian Pane]
 
  *) Reorder the definitions for mod_ldap and mod_auth_ldap within
     config.m4 to make sure the parent mod_ldap is defined first.
     This ensures that mod_ldap comes before mod_auth_ldap in the
     httpd.conf file, which is necessary for mod_auth_ldap to load.
     PR 14256  [Graham Leggett]

  *) Fix the building of cgi command lines when the query string
     contains '='.  PR 13914  [Ville Skyttä <ville.skytta@iki.fi>,
     Jeff Trawick]

  *) Rename CacheMaxStreamingBuffer to MCacheMaxStreamingBuffer. Move
     implementation of MCacheMaxStreamingBuffer from mod_cache to
     mod_mem_cache. MCacheMaxStreamingBuffer now defaults to the
     lesser of 100,000 bytes or MCacheMaxCacheObjectSize. This should 
     eliminate the need for explicitly coding MCacheMaxStreamingBuffer
     in most configurations. [Bill Stoddard]

  *) Replace APU_HAS_LDAPSSL_CLIENT_INIT with APU_HAS_LDAP_NETSCAPE_SSL
     as set by apr-util in util_ldap.c. This should allow mod_ldap
     to work with the Netscape/Mozilla LDAP library. [Øyvin Sømme
     <somme@oslo.westerngeco.slb.com>, Graham Leggett]

  *) Fix critical bug in new --enable-v4-mapped configure option
     implementation which broke IPv4 listening sockets on some
     systems.  [hiroyuki hanai <hanai@imgsrc.co.jp>]

  *) mod_setenvif: Fix BrowserMatchNoCase support for non-regex
     patterns [André Malo <nd@perlig.de>]

  *) Add version string to provider API.  [Justin Erenkrantz]
 
  *) mod_negotiation: Set the appropriate mime response headers
     (Content-Type, charset, Content-Language and Content-Encoding)
     for negotated type-map "Body:" responses (such as the error
     pages.)  [André Malo <nd@perlig.de>]

  *) mod_log_config: Allow '%%' escaping in CustomLog format
     strings to insert a literal, single '%'.
     [André Malo <nd@perlig.de>]

  *) mod_autoindex: AddDescription directives for directories
     now work as in Apache 1.3, where no trailing '/' is
     specified on the directory name.  Previously, the trailing
     '/' *had* to be specified, which was incompatible with
     Apache 1.3.  PR 7990  [Jeff Trawick]

  *) Fix for PR 14556. The expiry calculations in mod_cache were
     trying to perform "now + ((date - lastmod) * factor)" where
     date == lastmod resulting in "now + 0". The code now follows
     the else path (using the default expiration) if date is
     equal to lastmod. [rx@armstrike.com (Sergey), Paul J. Reder]

  *) Use AP_DECLARE in the debug versions of ap_strXXX in case the
     default calling convention is not the same as the one used by
     AP_DECLARE.  [Juan Rivera <Juan.Rivera@citrix.com>]

  *) mod_cache: Don't cache response header fields designated
     as hop-by-hop headers in HTTP/1.1 (RFC 2616 Section 13.5.1).
     [Estrade Matthieu <estrade-m@ifrance.com>, Brian Pane]

  *) mod_cgid: Handle environment variables containing newlines.
     PR 14550  [Piotr Czejkowski <apache@czarny.eu.org>, Jeff
     Trawick]

  *) Move mod_ext_filter out of experimental and into filters.
     [Jeff Trawick]

  *) Fixed a memory leak in mod_deflate with dynamic content.
     PR 14321  [Ken Franken <kfranken@decisionmark.com>]

  *) Add --[enable|disable]-v4-mapped configure option to control
     whether or not Apache expects to handle IPv4 connections
     on IPv6 listening sockets.  Either setting will work on 
     systems with the IPV6_V6ONLY socket option.  --enable-v4-mapped
     must be used on systems that always allow IPv4 connections on
     IPv6 listening sockets.  PR 14037 (Bugzilla), PR 7492 (Gnats)
     [Jeff Trawick]

  *) This fixes a problem where the underlying cache code
     indicated that there was one more element on the cache
     than there actually was. This happened since element 0
     exists but is not used. This code allocates the correct
     number of useable elements and reports the number of
     actually used elements. The previous code only allowed
     MCacheMaxObjectCount-1 objects to be stored in the
     cache. [Paul J. Reder]

  *) mod_setenvif: Add SERVER_ADDR special keyword to allow
     envariable setting according to the server IP address
     which received the request.  [Ken Coar]

  *) mod_cgid: Terminate CGI scripts when the client connection 
     drops.  PR 8388  [Jeff Trawick]

  *) Rearrange OpenSSL engine initialization to support RAND 
     redirection on crypto accelerator. 
     [Frederic DONNAT <frederic.donnat@zencod.com>]

  *) Always emit Vary header if mod_deflate is involved in the
     request.  [Andre Malo <nd@perlig.de>]

  *) mod_isapi: Stop unsetting the 'empty' query string result with
     a NULL argument in ecb->lpszQueryString, eliminating segfaults
     for some ISAPI modules.  PR 14399
     [Detlev Vendt <detlev.vendt@brillit.de>]

  *) mod_isapi: Fix an issue where the HSE_REQ_DONE_WITH_SESSION
     notification is received before the HttpExtensionProc() returns 
     HSE_STATUS_PENDING.  This only affected isapi .dll's configured 
     with the ISAPIFakeAsync on directive.  PR 11918
     [John DeSetto <jdesetto@radiantsystems.com>, William Rowe]

  *) mod_isapi: Fix the issue where all results from mod_isapi would
     run through the core die handler resulting in invalid responses
     or access log entries.  PR 10216 [William Rowe]

  *) Improves the user friendliness of the CacheRoot processing
     over my last pass. This version avoids the pool allocations
     but doesn't avoid all of the runtime checks. It no longer
     terminates during post-config processing. An error is logged
     once per worker, indicating that the CacheRoot needs to be set.
     [Paul J. Reder]

  *) Fix a bug where we keep files open until the end of a 
     keepalive connection, which can result in:
     (24)Too many open files: file permissions deny server access
     especially on threaded servers.  [Greg Ames, Jeff Trawick]

  *) Fix a bug in which mod_proxy sent an invalid Content-Length
     when a proxied URL was invoked as a server-side include within
     a page generated in response to a form POST.  [Brian Pane]

  *) Added code to process min and max file size directives and to
     init the expirychk flag in mod_disk_cache. Added a clarifying
     comment to cache_util.   [Paul J. Reder]

  *) The value emitted by ServerSignature now mimics the Server HTTP
     header as controlled by ServerTokens.  [Francis Daly <deva@daoine.org>]

  *) Gracefully handly retry situations in the SSL input filter,
     by following the SSL libraries' retry semantics.
     [William Rowe]

  *) Terminate CGI scripts when the client connection drops.  This
     fix only applies to some normal paths in mod_cgi.  mod_cgid
     is still busted.  PR 8388  [Jeff Trawick]

  *) Fix a bug where 416 "Range not satisfiable" was being
     returned for content that should have been redirected.
     [Greg Ames]

  *) Fix memory leak in mod_ssl from internal SSL library allocations
     within SSL_get_peer_certificate and X509_get_pubkey.
     [Zvi Har'El <rl@math.technion.ac.il>
      Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>].

  *) mod_ssl uses free() inappropriately in several places, to free
     memory which has been previously allocated inside OpenSSL.
     Such memory should be freed with OPENSSL_free(), not with free().
     [Nadav Har'El <nyh@math.technion.ac.il>,
      Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>].

  *) Emit a message to the error log when we return 404 because
     the URI contained '%2f'.  (This was previously nastily silent
     and difficult to debug.)  [Ken Coar]

  *) Fix streaming output from an nph- CGI script.  CGI:IRC now
     works.  PR 8482  [Jeff Trawick]

  *) More accurate logging of bytes sent in mod_logio when
     the client terminates the connection before the response
     is completely sent  [Bojan Smojver <bojan@rexursive.com>]

  *) Fix some problems in the perchild MPM.  
     [Jonas Eriksson <jonas@webkonsulterna.com>]

  *) Change the CacheRoot processing to check for a required
     value at config time. This saves a lot of wasted processing
     if the mod_disk_cache module is loaded but no CacheRoot
     was provided. This fix also adds code to log an error
     and avoid useless pallocs and procesing when the computed
     cache file name cannot be opened. This also updates the
     docs accordingly.  [Paul J. Reder]

  *) Introduce the EnableSendfile directive, allowing users of NFS 
     shares to disable sendfile mechanics when they either fail
     outright or provide intermitantly corrupted data.  PR 
     [William Rowe]

  *) Resolve the error "An operation was attempted on something 
     that is not a socket.  : winnt_accept: AcceptEx failed. 
     Attempting to recover." for users of various firewall and
     anti-virus software on Windows.  PR 8325  [William Rowe]

  *) Add the ProxyBadHeader directive, which gives the admin some
     control on how mod_proxy should handle bogus HTTP headers from
     proxied servers. This allows 2.0 to "emulate" 1.3's behavior if
     desired. [Jim Jagielski]

  *) Change the LDAP modules to export their symbols correctly
     during a Windows build. Add dsp files for Windows. Update
     README.ldap file for Windows build instructions.
     [Andre Schild <A.Schild@aarboard.ch>]

  *) Performance improvements for the code that generates HTTP
     response headers  [Brian Pane]

  *) Add -S as a synonym for -t -DDUMP_VHOSTS.
     [Thom May <thom@planetarytramp.net>]

  *) Fix a bug with dbm rewrite maps which caused the wrong value to
     be used when the key was not found in the dbm.  PR 13204
     [Jeff Trawick]

  *) Fix a problem with streaming script output and mod_cgid.
     [Jeff Trawick]

  *) Add ap_register_provider/ap_lookup_provider API.
     [John K. Sterling <john@sterls.com>, Justin Erenkrantz]
>How-To-Repeat:
>Fix:
Index: Makefile
===================================================================
RCS file: /cvsroot/pkgsrc/www/apache2/Makefile,v
retrieving revision 1.17
diff -a -u -r1.17 Makefile
--- Makefile	2002/12/09 20:23:42	1.17
+++ Makefile	2003/01/27 17:25:38
@@ -2,7 +2,7 @@
 
 DISTNAME=		httpd-${APACHE_VERSION}
 PKGNAME=		apache-${APACHE_VERSION}
-APACHE_VERSION=		2.0.43
+APACHE_VERSION=		2.0.44
 CATEGORIES=		www
 MASTER_SITES=		http://httpd.apache.org/dist/httpd/ \
 			http://httpd.apache.org/dist/httpd/old/ \
Index: PLIST
===================================================================
RCS file: /cvsroot/pkgsrc/www/apache2/PLIST,v
retrieving revision 1.9
diff -a -u -r1.9 PLIST
--- PLIST	2002/10/04 02:35:51	1.9
+++ PLIST	2003/01/27 17:25:38
@@ -9,6 +9,7 @@
 include/httpd/ap_listen.h
 include/httpd/ap_mmn.h
 include/httpd/ap_mpm.h
+include/httpd/ap_provider.h
 include/httpd/ap_regkey.h
 include/httpd/ap_release.h
 include/httpd/apr.h
@@ -32,6 +33,7 @@
 include/httpd/apr_hooks.h
 include/httpd/apr_inherit.h
 include/httpd/apr_ldap.h
+include/httpd/apr_ldap_url.h
 include/httpd/apr_lib.h
 include/httpd/apr_md4.h
 include/httpd/apr_md5.h
@@ -126,9 +128,7 @@
 man/man1/htdigest.1
 man/man1/htpasswd.1
 man/man8/ab.8
-man/man8/apachectl.8
 man/man8/apxs.8
-man/man8/httpd.8
 man/man8/logresolve.8
 man/man8/rotatelogs.8
 man/man8/suexec.8
@@ -443,6 +443,8 @@
 share/httpd/manual/bind.xml.ja
 share/httpd/manual/cgi_path.html.en
 share/httpd/manual/cgi_path.html.ja.jis
+share/httpd/manual/cgi_path.xml
+share/httpd/manual/cgi_path.xml.ja
 share/httpd/manual/configuring.html.en
 share/httpd/manual/configuring.html.ja.jis
 share/httpd/manual/configuring.xml
@@ -469,7 +471,9 @@
 share/httpd/manual/developer/request.html
 share/httpd/manual/developer/thread_safety.html
 share/httpd/manual/dns-caveats.html.en
+share/httpd/manual/dns-caveats.html.ja.jis
 share/httpd/manual/dns-caveats.xml
+share/httpd/manual/dns-caveats.xml.ja
 share/httpd/manual/dso.html.en
 share/httpd/manual/dso.html.ja.jis
 share/httpd/manual/dso.html.ko.euc-kr
@@ -478,6 +482,7 @@
 share/httpd/manual/env.html.en
 share/httpd/manual/env.html.ja.jis
 share/httpd/manual/env.xml
+share/httpd/manual/env.xml.ja
 share/httpd/manual/faq/index.html
 share/httpd/manual/filter.html.en
 share/httpd/manual/filter.html.ja.jis
@@ -496,15 +501,19 @@
 share/httpd/manual/howto/cgi.html.en
 share/httpd/manual/howto/cgi.html.ja.jis
 share/httpd/manual/howto/cgi.xml
+share/httpd/manual/howto/cgi.xml.ja
 share/httpd/manual/howto/footer.html
 share/httpd/manual/howto/header.html
 share/httpd/manual/howto/htaccess.html.en
 share/httpd/manual/howto/htaccess.xml
+share/httpd/manual/howto/index.html.en
+share/httpd/manual/howto/index.xml
 share/httpd/manual/howto/public_html.html.en
 share/httpd/manual/howto/public_html.xml
 share/httpd/manual/howto/ssi.html.en
 share/httpd/manual/howto/ssi.html.ja.jis
 share/httpd/manual/howto/ssi.xml
+share/httpd/manual/howto/ssi.xml.ja
 share/httpd/manual/images/apache_header.gif
 share/httpd/manual/images/apache_header.png
 share/httpd/manual/images/custom_errordocs.gif
@@ -529,6 +538,7 @@
 share/httpd/manual/images/sub.gif
 share/httpd/manual/images/sub.png
 share/httpd/manual/images/up.gif
+share/httpd/manual/index.html.de
 share/httpd/manual/index.html.en
 share/httpd/manual/index.html.fr
 share/httpd/manual/index.html.ja.jis
@@ -537,12 +547,16 @@
 share/httpd/manual/install.html.en
 share/httpd/manual/install.html.ja.jis
 share/httpd/manual/install.html.ko.euc-kr
+share/httpd/manual/install.html.ru.koi8-r
 share/httpd/manual/install.xml
 share/httpd/manual/install.xml.de
 share/httpd/manual/install.xml.ja
+share/httpd/manual/install.xml.ru
+share/httpd/manual/invoking.html.de
 share/httpd/manual/invoking.html.en
 share/httpd/manual/invoking.html.ja.jis
 share/httpd/manual/invoking.xml
+share/httpd/manual/invoking.xml.de
 share/httpd/manual/invoking.xml.ja
 share/httpd/manual/logs.html.en
 share/httpd/manual/logs.html.ja.jis
@@ -563,22 +577,30 @@
 share/httpd/manual/misc/security_tips.html.en
 share/httpd/manual/misc/security_tips.xml
 share/httpd/manual/misc/tutorials.html
+share/httpd/manual/mod/beos.html.en
+share/httpd/manual/mod/beos.xml
 share/httpd/manual/mod/core.html.en
 share/httpd/manual/mod/core.xml
 share/httpd/manual/mod/directive-dict.html.en
 share/httpd/manual/mod/directive-dict.html.ja.jis
 share/httpd/manual/mod/directive-dict.xml
 share/httpd/manual/mod/directive-dict.xml.ja
+share/httpd/manual/mod/directives.html.de
 share/httpd/manual/mod/directives.html.en
 share/httpd/manual/mod/directives.html.ja.jis
 share/httpd/manual/mod/directives.xml
+share/httpd/manual/mod/directives.xml.de
 share/httpd/manual/mod/directives.xml.ja
 share/httpd/manual/mod/footer.html
 share/httpd/manual/mod/header.html
+share/httpd/manual/mod/index.html.de
 share/httpd/manual/mod/index.html.en
 share/httpd/manual/mod/index.html.ja.jis
 share/httpd/manual/mod/index.xml
+share/httpd/manual/mod/index.xml.de
 share/httpd/manual/mod/index.xml.ja
+share/httpd/manual/mod/leader.html.en
+share/httpd/manual/mod/leader.xml
 share/httpd/manual/mod/mod_access.html.en
 share/httpd/manual/mod/mod_access.html.ja.jis
 share/httpd/manual/mod/mod_access.xml
@@ -627,6 +649,8 @@
 share/httpd/manual/mod/mod_dav.html.ja.jis
 share/httpd/manual/mod/mod_dav.xml
 share/httpd/manual/mod/mod_dav.xml.ja
+share/httpd/manual/mod/mod_dav_fs.html.en
+share/httpd/manual/mod/mod_dav_fs.xml
 share/httpd/manual/mod/mod_deflate.html.en
 share/httpd/manual/mod/mod_deflate.html.ja.jis
 share/httpd/manual/mod/mod_deflate.xml
@@ -658,7 +682,9 @@
 share/httpd/manual/mod/mod_imap.html.en
 share/httpd/manual/mod/mod_imap.xml
 share/httpd/manual/mod/mod_include.html.en
+share/httpd/manual/mod/mod_include.html.ja.jis
 share/httpd/manual/mod/mod_include.xml
+share/httpd/manual/mod/mod_include.xml.ja
 share/httpd/manual/mod/mod_info.html.en
 share/httpd/manual/mod/mod_info.html.ja.jis
 share/httpd/manual/mod/mod_info.xml
@@ -674,7 +700,9 @@
 share/httpd/manual/mod/mod_mem_cache.html.en
 share/httpd/manual/mod/mod_mem_cache.xml
 share/httpd/manual/mod/mod_mime.html.en
+share/httpd/manual/mod/mod_mime.html.ja.jis
 share/httpd/manual/mod/mod_mime.xml
+share/httpd/manual/mod/mod_mime.xml.ja
 share/httpd/manual/mod/mod_mime_magic.html.en
 share/httpd/manual/mod/mod_mime_magic.xml
 share/httpd/manual/mod/mod_negotiation.html.en
@@ -683,6 +711,12 @@
 share/httpd/manual/mod/mod_negotiation.xml.ja
 share/httpd/manual/mod/mod_proxy.html.en
 share/httpd/manual/mod/mod_proxy.xml
+share/httpd/manual/mod/mod_proxy_connect.html.en
+share/httpd/manual/mod/mod_proxy_connect.xml
+share/httpd/manual/mod/mod_proxy_ftp.html.en
+share/httpd/manual/mod/mod_proxy_ftp.xml
+share/httpd/manual/mod/mod_proxy_http.html.en
+share/httpd/manual/mod/mod_proxy_http.xml
 share/httpd/manual/mod/mod_rewrite.html.en
 share/httpd/manual/mod/mod_rewrite.xml
 share/httpd/manual/mod/mod_setenvif.html.en
@@ -731,15 +765,21 @@
 share/httpd/manual/mod/mpm_winnt.html.ja.jis
 share/httpd/manual/mod/mpm_winnt.xml
 share/httpd/manual/mod/mpm_winnt.xml.ja
+share/httpd/manual/mod/mpmt_os2.html.en
+share/httpd/manual/mod/mpmt_os2.xml
 share/httpd/manual/mod/perchild.html.en
 share/httpd/manual/mod/perchild.xml
 share/httpd/manual/mod/prefork.html.en
 share/httpd/manual/mod/prefork.html.ja.jis
 share/httpd/manual/mod/prefork.xml
 share/httpd/manual/mod/prefork.xml.ja
+share/httpd/manual/mod/quickreference.html.de
 share/httpd/manual/mod/quickreference.html.en
 share/httpd/manual/mod/quickreference.html.ja.jis
 share/httpd/manual/mod/quickreference.xml
+share/httpd/manual/mod/quickreference.xml.de
+share/httpd/manual/mod/threadpool.html.en
+share/httpd/manual/mod/threadpool.xml
 share/httpd/manual/mod/quickreference.xml.ja
 share/httpd/manual/mod/worker.html.en
 share/httpd/manual/mod/worker.html.ja.jis
@@ -755,9 +795,11 @@
 share/httpd/manual/new_features_2_0.html.fr
 share/httpd/manual/new_features_2_0.html.ja.jis
 share/httpd/manual/new_features_2_0.html.ko.euc-kr
+share/httpd/manual/new_features_2_0.html.ru.koi8-r
 share/httpd/manual/new_features_2_0.xml
 share/httpd/manual/new_features_2_0.xml.de
 share/httpd/manual/new_features_2_0.xml.ja
+share/httpd/manual/new_features_2_0.xml.ru
 share/httpd/manual/platform/ebcdic.html.en
 share/httpd/manual/platform/ebcdic.xml
 share/httpd/manual/platform/footer.html
@@ -770,20 +812,21 @@
 share/httpd/manual/platform/perf-hp.xml
 share/httpd/manual/platform/win_compiling.html.en
 share/httpd/manual/platform/win_compiling.xml
-share/httpd/manual/platform/win_service.html.en
-share/httpd/manual/platform/win_service.xml
 share/httpd/manual/platform/windows.html.en
 share/httpd/manual/platform/windows.xml
 share/httpd/manual/programs/ab.html
-share/httpd/manual/programs/apachectl.html
+share/httpd/manual/programs/apachectl.html.en
+share/httpd/manual/programs/apachectl.xml
 share/httpd/manual/programs/apxs.html
 share/httpd/manual/programs/dbmmanage.html
 share/httpd/manual/programs/footer.html
 share/httpd/manual/programs/header.html
 share/httpd/manual/programs/htdigest.html
 share/httpd/manual/programs/htpasswd.html
-share/httpd/manual/programs/httpd.html
-share/httpd/manual/programs/index.html
+share/httpd/manual/programs/httpd.html.en
+share/httpd/manual/programs/httpd.xml
+share/httpd/manual/programs/index.html.en
+share/httpd/manual/programs/index.xml
 share/httpd/manual/programs/logresolve.html
 share/httpd/manual/programs/other.html
 share/httpd/manual/programs/rotatelogs.html
@@ -796,15 +839,18 @@
 share/httpd/manual/server-wide.html.ja.jis
 share/httpd/manual/server-wide.xml
 share/httpd/manual/server-wide.xml.ja
+share/httpd/manual/sitemap.html.de
 share/httpd/manual/sitemap.html.en
 share/httpd/manual/sitemap.html.ja.jis
 share/httpd/manual/sitemap.xml
+share/httpd/manual/sitemap.xml.de
 share/httpd/manual/sitemap.xml.ja
 share/httpd/manual/ssl/footer.html
 share/httpd/manual/ssl/header.html
 share/httpd/manual/ssl/index.html.en
 share/httpd/manual/ssl/index.html.ja.jis
 share/httpd/manual/ssl/index.xml
+share/httpd/manual/ssl/index.xml.ja
 share/httpd/manual/ssl/ssl_compat.html.en
 share/httpd/manual/ssl/ssl_compat.xml
 share/httpd/manual/ssl/ssl_cover_logo.jpg
@@ -821,36 +867,15 @@
 share/httpd/manual/ssl/ssl_overview_fig1.gif
 share/httpd/manual/ssl/ssl_template.imgdot-1x1-000000.gif
 share/httpd/manual/ssl/ssl_template.imgdot-1x1-transp.gif
+share/httpd/manual/stopping.html.de
 share/httpd/manual/stopping.html.en
 share/httpd/manual/stopping.html.ja.jis
 share/httpd/manual/stopping.xml
+share/httpd/manual/stopping.xml.de
 share/httpd/manual/stopping.xml.ja
 share/httpd/manual/style/common.dtd
-share/httpd/manual/style/css/manual-loose-100pc-b.css
 share/httpd/manual/style/css/manual-loose-100pc.css
-share/httpd/manual/style/css/manual-loose-90pc-b.css
-share/httpd/manual/style/css/manual-loose-90pc.css
-share/httpd/manual/style/css/manual-loose-fix13-b.css
-share/httpd/manual/style/css/manual-loose-fix13.css
-share/httpd/manual/style/css/manual-loose-fix15-b.css
-share/httpd/manual/style/css/manual-loose-fix15.css
 share/httpd/manual/style/css/manual-print.css
-share/httpd/manual/style/css/manual-sbar-left-100pc-b.css
-share/httpd/manual/style/css/manual-sbar-left-100pc.css
-share/httpd/manual/style/css/manual-sbar-left-90pc-b.css
-share/httpd/manual/style/css/manual-sbar-left-90pc.css
-share/httpd/manual/style/css/manual-sbar-left-fix13-b.css
-share/httpd/manual/style/css/manual-sbar-left-fix13.css
-share/httpd/manual/style/css/manual-sbar-left-fix15-b.css
-share/httpd/manual/style/css/manual-sbar-left-fix15.css
-share/httpd/manual/style/css/manual-sbar-right-100pc-b.css
-share/httpd/manual/style/css/manual-sbar-right-100pc.css
-share/httpd/manual/style/css/manual-sbar-right-90pc-b.css
-share/httpd/manual/style/css/manual-sbar-right-90pc.css
-share/httpd/manual/style/css/manual-sbar-right-fix13-b.css
-share/httpd/manual/style/css/manual-sbar-right-fix13.css
-share/httpd/manual/style/css/manual-sbar-right-fix15-b.css
-share/httpd/manual/style/css/manual-sbar-right-fix15.css
 share/httpd/manual/style/css/manual.css
 share/httpd/manual/style/lang/de.xml
 share/httpd/manual/style/lang/en.xml
@@ -866,6 +891,11 @@
 share/httpd/manual/style/manualpage.dtd
 share/httpd/manual/style/modulesynopsis.dtd
 share/httpd/manual/style/sitemap.dtd
+share/httpd/manual/style/w3c/xhtml-lat1.ent
+share/httpd/manual/style/w3c/xhtml-special.ent
+share/httpd/manual/style/w3c/xhtml-symbol.ent
+share/httpd/manual/style/w3c/xhtml1-strict.dtd
+share/httpd/manual/style/w3c/xhtml1-transitional.dtd
 share/httpd/manual/style/xsl/common.xsl
 share/httpd/manual/style/xsl/directiveindex.xsl
 share/httpd/manual/style/xsl/manualpage.xsl
@@ -882,25 +912,36 @@
 share/httpd/manual/upgrading.html.fr
 share/httpd/manual/upgrading.html.ja.jis
 share/httpd/manual/upgrading.html.ko.euc-kr
+share/httpd/manual/upgrading.html.ru.koi8-r
 share/httpd/manual/upgrading.xml
 share/httpd/manual/upgrading.xml.de
 share/httpd/manual/upgrading.xml.ja
+share/httpd/manual/upgrading.xml.ru
 share/httpd/manual/urlmapping.html.en
 share/httpd/manual/urlmapping.html.ja.jis
 share/httpd/manual/urlmapping.xml
 share/httpd/manual/urlmapping.xml.ja
-share/httpd/manual/vhosts/details.html
-share/httpd/manual/vhosts/examples.html
+share/httpd/manual/vhosts/details.html.en
+share/httpd/manual/vhosts/details.xml
+share/httpd/manual/vhosts/examples.html.en
+share/httpd/manual/vhosts/examples.xml
 share/httpd/manual/vhosts/fd-limits.html.en
 share/httpd/manual/vhosts/fd-limits.html.ja.jis
+share/httpd/manual/vhosts/fd-limits.xml
+share/httpd/manual/vhosts/fd-limits.xml.ja
 share/httpd/manual/vhosts/footer.html
 share/httpd/manual/vhosts/header.html
 share/httpd/manual/vhosts/index.html.en
 share/httpd/manual/vhosts/index.html.ja.jis
-share/httpd/manual/vhosts/ip-based.html
-share/httpd/manual/vhosts/mass.html
+share/httpd/manual/vhosts/index.xml
+share/httpd/manual/vhosts/index.xml.ja
+share/httpd/manual/vhosts/ip-based.html.en
+share/httpd/manual/vhosts/ip-based.xml
+share/httpd/manual/vhosts/mass.html.en
+share/httpd/manual/vhosts/mass.xml
 share/httpd/manual/vhosts/name-based.html.en
 share/httpd/manual/vhosts/name-based.html.ja.jis
+share/httpd/manual/vhosts/name-based.xml
 @dirrm share/httpd/manual/developer
 @dirrm share/httpd/manual/faq
 @dirrm share/httpd/manual/howto
@@ -912,6 +953,7 @@
 @dirrm share/httpd/manual/search
 @dirrm share/httpd/manual/ssl
 @dirrm share/httpd/manual/style/xsl
+@dirrm share/httpd/manual/style/w3c
 @dirrm share/httpd/manual/style/lang
 @dirrm share/httpd/manual/style/css
 @dirrm share/httpd/manual/style
Index: distinfo
===================================================================
RCS file: /cvsroot/pkgsrc/www/apache2/distinfo,v
retrieving revision 1.12
diff -a -u -r1.12 distinfo
--- distinfo	2002/10/04 02:35:52	1.12
+++ distinfo	2003/01/27 17:25:38
@@ -1,7 +1,7 @@
 $NetBSD: distinfo,v 1.12 2002/10/04 02:35:52 itojun Exp $
 
-SHA1 (httpd-2.0.43.tar.gz) = 92f1feac1232919f5c6eaac5de0cc7d7eb44e237
-Size (httpd-2.0.43.tar.gz) = 4835188 bytes
+SHA1 (httpd-2.0.44.tar.gz) = 606a8a371c753e0bc452dacf7512e3e117818e78
+Size (httpd-2.0.44.tar.gz) = 5505246 bytes
 SHA1 (patch-aa) = 9d74b4ddeab96761f1bb3a7d39a5ab9001e3ea84
 SHA1 (patch-ad) = e4a0c729ce5fbf43855ea080946052ef025334f1
 SHA1 (patch-ag) = 3d68e475caef0555097a9756533034686e81d474
>Release-Note:
>Audit-Trail:
>Unformatted: