cvs commit: apache-2.0/mpm/src/lib/apr Makefile.in

1999-08-19 Thread rse
rse 99/08/18 23:48:10

  Modified:mpm/src/lib/apr Makefile.in
  Log:
  Enhance directory step display to see what's going on...
  
  Revision  ChangesPath
  1.2   +7 -1  apache-2.0/mpm/src/lib/apr/Makefile.in
  
  Index: Makefile.in
  ===
  RCS file: /home/cvs/apache-2.0/mpm/src/lib/apr/Makefile.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile.in   1999/08/17 15:59:34 1.1
  +++ Makefile.in   1999/08/19 06:48:10 1.2
  @@ -55,17 +55,23 @@
( cd $$i  $(MAKE) $(MFLAGS_STATIC) SDP='$(SDP)' \
CC='$(CC)' AUX_CFLAGS='$(AUX_CFLAGS)' RANLIB='$(RANLIB)' ) \
|| exit 1; \
  - echo == $$i; \
  + echo === $$i; \
done;
   
   subdirs_depend:
@for i in $(SUBDIRS); do \
  + echo === $$i; \
( cd $$i  $(MAKE) depend ) \
  + || exit 1; \
  + echo === $$i; \
done;
   
   subdirs_clean:
@for i in $(SUBDIRS); do \
  + echo === $$i; \
( cd $$i  $(MAKE) clean ) \
  + || exit 1; \
  + echo === $$i; \
done;
   
   # DO NOT REMOVE
  
  
  


cvs commit: apache-1.3/src CHANGES

1999-08-19 Thread martin
martin  99/08/19 02:07:35

  Modified:.STATUS
   src  CHANGES
  Log:
  Build errors in src/support stop with an error, just like all the
  other recursive make calls.
  
  Submitted by: David Harris [EMAIL PROTECTED]
  Reviewed by:  Martin Kraemer
  
  Revision  ChangesPath
  1.750 +1 -5  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.749
  retrieving revision 1.750
  diff -u -r1.749 -r1.750
  --- STATUS1999/08/18 17:22:32 1.749
  +++ STATUS1999/08/19 09:07:29 1.750
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/08/18 17:22:32 $]
  +  Last modified at [$Date: 1999/08/19 09:07:29 $]
   
   Release:
   
  @@ -44,10 +44,6 @@
   
   
   Available Patches:
  -
  -* David Harris's [patch] make does not propagate src/support errors
  -Message-ID: [EMAIL PROTECTED]
  - Status:
   
   * Paul Reder's patch to fix Allow/Deny (.htaccess parsing) in
 regex Directory* processing.
  
  
  
  1.1424+4 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1423
  retrieving revision 1.1424
  diff -u -r1.1423 -r1.1424
  --- CHANGES   1999/08/16 18:55:45 1.1423
  +++ CHANGES   1999/08/19 09:07:32 1.1424
  @@ -1,5 +1,9 @@
   Changes with Apache 1.3.10
   
  +  *) Build errors in src/support stop with an error, just like all the
  + other recursive make calls. [David Harris [EMAIL PROTECTED]]
  +
  +
   Changes with Apache 1.3.9
   
 *) Remove bogus error message when a redirect doesn't set Location.
  
  
  


cvs commit: apache-2.0/mpm/src Configuration.mpm

1999-08-19 Thread jim
jim 99/08/19 06:01:51

  Modified:mpm/src  Configuration.mpm
  Log:
  Ack... backout the Configuration.mpm stuff
  
  Revision  ChangesPath
  1.14  +12 -406   apache-2.0/mpm/src/Configuration.mpm
  
  Index: Configuration.mpm
  ===
  RCS file: /export/home/cvs/apache-2.0/mpm/src/Configuration.mpm,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Configuration.mpm 1999/08/19 12:59:58 1.13
  +++ Configuration.mpm 1999/08/19 13:01:50 1.14
  @@ -1,458 +1,64 @@
  -# Config file for the Apache httpd.
  -
  -# Configuration.tmpl is the template for Configuration. Configuration should
  -# be edited to select the modules to be included as well as various flags
  -# for Makefile.
  -
  -# The template should only be changed when a new system or module is added,
  -# or an existing one modified. This will also most likely require some minor
  -# changes to Configure to recognize those changes.
  -
  -# There are 5 types of lines here:
  -
  -# '#' comments, distinguished by having a '#' as the first non-blank 
character
  -#
  -# Makefile options, such as CC=gcc, etc...
  -#
  -# Rules, distinguished by having Rule at the front. These are used to
  -# control Configure's behavior as far as how to create Makefile. The value
  -# of Rules is up to the implementer.
  -#
  -# Module selection lines, distinguished by having 'AddModule' at the front.
  -# These list the configured modules, in priority order (highest priority
  -# last).  They're down at the bottom.
  -#
  -# Optional module selection lines, distinguished by having `%Module'
  -# at the front.  These specify a module that is to be compiled in (but
  -# not enabled).  The AddModule directive can be used to enable such a
  -# module.  By default no such modules are defined.
  -
  -
  -
  -# Makefile configuration
  -#
  -# These are added to the general flags determined by Configure.
  -# Edit these to work around Configure if needed. The EXTRA_* family
  -# will be added to the regular Makefile flags. For example, if you
  -# want to compile with -Wall, then add that to EXTRA_CFLAGS. These
  -# will be added to whatever flags Configure determines as appropriate
  -# and needed for your platform.
  -#
  -# You can also set the compiler (CC) and optimization (OPTIM) used here as
  -# well.  Settings here have priority; If not set, Configure will attempt to
  -# guess the C compiler, looking for gcc first, then cc.
  -#
  -# Optimization note: 
  -# Be careful when adding optimization flags (like -O3 or -O6) on the OPTIM
  -# entry, especially when using some GCC variants. Experience showed that 
using
  -# these for compiling Apache is risky. If you don't want to see Apache 
dumping
  -# core regularly then at most use -O or -O2.
  -#
  -# The EXTRA_DEPS can be used to add extra Makefile dependencies to external
  -# files (for instance third-party libraries) for the httpd target. The effect
  -# is that httpd is relinked when those files are changed.
  -#
  -EXTRA_CFLAGS=-Wall -Wshadow -Wmissing-prototypes -Wmissing-declarations
  +# Add the appropriate flags to compile threaded code when using the
  +# mpmt_pthread MPM (-pthread in EXTRA_CFLAGS on Linux)
  +EXTRA_CFLAGS= -Wall
   EXTRA_LDFLAGS=
   EXTRA_LIBS=
   EXTRA_INCLUDES=
   EXTRA_DEPS=
  -
   #CC=
   #CPP=
  -#OPTIM=
  +OPTIM=-O2 -g
   #RANLIB=
  -
  -
  -# Name of the installed Apache HTTP webserver.
  -#
   #TARGET=
  -
  -
  -# Dynamic Shared Object (DSO) support
  -#
  -# There is experimental support for compiling the Apache core and
  -# the Apache modules into dynamic shared object (DSO) files for
  -# maximum runtime flexibility.
  -#
  -# The Configure script currently has only limited built-in
  -# knowledge on how to compile these DSO files because this is
  -# heavily platform-dependent. The current state of supported and
  -# explicitly unsupported platforms can be found in the file 
  -# htdocs/manual/dso.html, under Supported Platforms.
  -#
  -# For other platforms where you want to use the DSO mechanism you
  -# first have to make sure it supports the pragmatic dlopen()
  -# system call and then you have to provide the appropriate
  -# compiler and linker flags below to create the DSO files on your
  -# particular platform.
  -#
  -# The placement of the Apache core into a DSO file is triggered
  -# by the SHARED_CORE rule below while support for building
  -# individual Apache Modules as DSO files and loading them under
  -# runtime without recompilation is triggered by `SharedModule'
  -# commands. To be able to use the latter one first enable the
  -# module mod_so (see corresponding `AddModule' command below).
  -# Then enable the DSO feature for particular modules 

cvs commit: apache-1.3/htdocs index.html.ee index.html.lu

1999-08-19 Thread dirkx
dirkx   99/08/19 06:09:44

  Added:   htdocs   index.html.ee index.html.lu
  Log:
  Been begging for a few (and living next door
  to the larest European research center helps.)
  
  Here is Estonian and Luxemburgie. Portugese and
  a few other european ones' should follow soon.
  
  Dw.
  
  Revision  ChangesPath
  1.1  apache-1.3/htdocs/index.html.ee
  
  Index: index.html.ee
  ===
  !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 3.2 Final//EN
  HTML
   HEAD
TITLEApache veebiserveri installatsiooni testlehekuuml;lg/TITLE
!-- Original translation: Ahti Heinla, [EMAIL PROTECTED], Thu Aug 19 
12:57:48 GMT 1999 --
   /HEAD
  !-- Background white, links blue (unvisited), navy (visited), red (active) 
--
   BODY
BGCOLOR=#FF
TEXT=#00
LINK=#FF
VLINK=#80
ALINK=#FF
   
H1 ALIGN=CENTER
 Kujuta pilti, kauml;ima lauml;ks!  Apache veebiserver on installeeritud!
/H1
P
Kui Sa nauml;ed seda lehekuuml;lge, siis selle domeeni omanikud on
edukalt hakkama saanud A HREF=http://www.apache.org/httpd/;Apache 
veebiserveri/A
installeerimisega. Jauml;rgmiseks peaks nad selle lehekuuml;lje asendama
misiganes materjaliga, mida nad oma veebisaidis nauml;idata tahavad,
votilde;i siis juhatama veebiserverile kauml;tte tegeliku materjali
asukoha.
/P
HR
BLOCKQUOTE
 Kui Sa ootasid siin lehekuuml;ljel nauml;ha hoopis midagi muud,
 siis palun STRONGvotilde;ta uuml;hendust selle veebisaidi
 administraatoriga./STRONG (Votilde;id nauml;iteks kirjutada aadressil
 SAMPlt;Webmaster@EMdomain/EMgt;/SAMP.) Kuigi see veebisait
 kasutab Apache tarkvara, pole ta peaaegu kindlasti mitte Apache Group'iga
 mingil muul moel seotud. Seega, palun auml;ra kirjuta selle saidi
 asjus Apache autoritele. Kui sa seda teed, siis sinu kirja
 STRONGBIGignoreeritakse/BIG/STRONG.
/BLOCKQUOTE
HR
P
Ka Apache
A
 HREF=manual/index.html
dokumentatsioon/A
on selles distributsioonis olemas.
/P
P
Kohalik veebmeister votilde;ib vabalt kasutada allpool olevat
pilti oma Apache veebiserveril. Aitauml;h Apachet kasutamast!
/P
DIV ALIGN=CENTER
 IMG SRC=apache_pb.gif ALT=
/DIV
   /BODY
  /HTML
  
  
  
  1.1  apache-1.3/htdocs/index.html.lu
  
  Index: index.html.lu
  ===
  !doctype html public -//w3c//dtd html 4.0 transitional//en
  html
  head
 meta http-equiv=Content-Type content=text/html; charset=UTF-8
 !-- Originally translated by Jean-Luc Widlowski, [EMAIL PROTECTED] Thu 
Aug 19 13:00:18 GMT 1999 --
 titleTest Page for Apache Installation on Web Site/title
  !-- Background white, links blue (unvisited), navy (visited), red (active) 
--
  /head
  body text=#00 bgcolor=#FF link=#FF vlink=#80 
alink=#FF
  
  center
  h1
  Et huet geklappt! Den Apache Web Server as op deuml;ser 'Web Site' 
installeiert!/h1/center
  Wann Dir die heiten Sait gesit, dann hun d'Proprietairen vun deuml;ser 
'domain'
  elo just d'a href=http://www.apache.org/httpd/;Apache Web server/a 
software
  mat succeacute;s installeiert. Sie mussen allerdengs nach des Decksait
  remplaceieren oder awer de Server op eng aner Sait mat dem richtigen contenu
  em-dirigeieren.
  br
  hr
  blockquoteWann Dir die heiten Sait anstell vun der site die Dir erwacirc;rt
  hut gesitt, da contacteiert wannechglift denb administrator vun dem 
betraffener
  site./b (Versicht eacute;n email no ttlt;Webmaster@idomain/i 
/ttfont face=Times New Roman,Timesze
  schecken.) Obwuel den heiten site /fontApache software benotzt, as et
  ball secher datt keng Verbindung mat der Apache Group existeiert, also scheckt
  wannechglift keng email iwert desen site oder sein contenu zu den Apache
  Autoren. Falls Dir deuml;st awer macht, get auml;ren messagenbsp; bfont 
size=+2ignoreiert./font/b/blockquote
  
  hr
  pD'Apache a href=manual/index.htmldocumentation/a ass deuml;ser 
Ausgab
  beigefuuml;cht.
  pDem Webmaster vun dem heitenen site steht et zou dest Bild ob engem
  Apache-powered Web server ze presenteieren. Merci dat Dir Apache benotzt!
  centerimg SRC=apache_pb.gif ALT= /center
  
  /body
  /html
  
  
  


cvs commit: apache-2.0/mpm README.rse

1999-08-19 Thread rse
rse 99/08/19 09:02:10

  Modified:mpm  README.rse
  Log:
  Use Pth 1.1 release versions now
  
  Revision  ChangesPath
  1.7   +5 -7  apache-2.0/mpm/README.rse
  
  Index: README.rse
  ===
  RCS file: /home/cvs/apache-2.0/mpm/README.rse,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- README.rse1999/08/13 16:01:11 1.6
  +++ README.rse1999/08/19 16:01:58 1.7
  @@ -33,11 +33,9 @@
[the portable hybrid (preforking+prethreading) process model]
   
$ cd ROOT/apache-mpm
  - $ lynx ftp://alpha.gnu.org/gnu/pth/pth-1.1b4.tar.gz
  -   [You can use also any later Pth version, of course.  ]
  -   [Especially release versions = 1.1.0 from ftp://ftp.gnu.org/gnu/pth/]
  - $ gunzip pth-1.1b4.tar.gz | tar xvf -
  - $ cd pth-1.1b4
  + $ lynx ftp://ftp.gnu.org/gnu/pth/pth-1.1.X.tar.gz
  + $ gunzip pth-1.1.X.tar.gz | tar xvf -
  + $ cd pth-1.1.X
$ ./configure \
   --disable-shared \
   --enable-pthread \
  @@ -46,8 +44,8 @@
$ make test
   
$ cd ROOT/apache-mpm/mpm
  - $ CFLAGS='-I\$(SRCDIR)/../pth-1.1b4 -DPTHREAD_EVERYWHERE 
-DNO_SERIALIZED_ACCEPT' \
  -   LDFLAGS='-L\$(SRCDIR)/../pth-1.1b4/.libs' \
  + $ CFLAGS='-I\$(SRCDIR)/../pth-1.1.X -DPTHREAD_EVERYWHERE 
-DNO_SERIALIZED_ACCEPT' \
  +   LDFLAGS='-L\$(SRCDIR)/../pth-1.1.X/.libs' \
  LIBS=-lpthread \
  ./configure \
  --with-layout=GNU \
  
  
  


cvs commit: apache-apr/pthreads README.rse

1999-08-19 Thread Ralf S. Engelschall
rse 99/08/19 18:00:31

  Modified:pthreads README.rse
  Log:
  Use Pth 1.1 release versions now
  
  Revision  ChangesPath
  1.2   +5 -7  apache-apr/pthreads/README.rse
  
  Index: README.rse
  ===
  RCS file: /e/apache/REPOS/apache-apr/pthreads/README.rse,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -u -r1.1 -r1.2
  --- README.rse1999/08/12 07:31:01 1.1
  +++ README.rse1999/08/19 16:00:31 1.2
  @@ -97,11 +97,9 @@
Follow these steps:
   
$ cd ROOT/apache-apr
  - $ lynx ftp://alpha.gnu.org/gnu/pth/pth-1.1b3.tar.gz
  -   [You can use also any later Pth version, of course.  ]
  -   [Especially release versions = 1.1.0 from ftp://ftp.gnu.org/gnu/pth/]
  - $ gunzip pth-1.1b3.tar.gz | tar xvf -
  - $ cd pth-1.1b3
  + $ lynx ftp://ftp.gnu.org/gnu/pth/pth-1.1.X.tar.gz
  + $ gunzip pth-1.1.X.tar.gz | tar xvf -
  + $ cd pth-1.1.X
$ ./configure \
   --disable-shared \
   --enable-pthread \
  @@ -112,8 +110,8 @@
$ cd ROOT/apache-apr/pthread
$ CC='cc' \
  OPTIM='-O2' \
  -   CFLAGS='-I\$(SRCDIR)/../pth-1.1b3 -DPTHREAD_EVERYWHERE 
-DNO_SERIALIZED_ACCEPT' \
  -   LDFLAGS='-L\$(SRCDIR)/../pth-1.1b3/.libs' \
  +   CFLAGS='-I\$(SRCDIR)/../pth-1.1.X -DPTHREAD_EVERYWHERE 
-DNO_SERIALIZED_ACCEPT' \
  +   LDFLAGS='-L\$(SRCDIR)/../pth-1.1.X/.libs' \
  LIBS=-lpthread \
  ./configure \
  --with-layout=GNU \
  
  
  


cvs commit: apache-apr/pthreads README.rse

1999-08-19 Thread rse
rse 99/08/19 09:10:20

  Modified:pthreads README.rse
  Log:
  Use Pth 1.1 release versions now
  
  Revision  ChangesPath
  1.2   +5 -7  apache-apr/pthreads/README.rse
  
  Index: README.rse
  ===
  RCS file: /home/cvs/apache-apr/pthreads/README.rse,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- README.rse1999/08/12 07:31:01 1.1
  +++ README.rse1999/08/19 16:10:19 1.2
  @@ -97,11 +97,9 @@
Follow these steps:
   
$ cd ROOT/apache-apr
  - $ lynx ftp://alpha.gnu.org/gnu/pth/pth-1.1b3.tar.gz
  -   [You can use also any later Pth version, of course.  ]
  -   [Especially release versions = 1.1.0 from ftp://ftp.gnu.org/gnu/pth/]
  - $ gunzip pth-1.1b3.tar.gz | tar xvf -
  - $ cd pth-1.1b3
  + $ lynx ftp://ftp.gnu.org/gnu/pth/pth-1.1.X.tar.gz
  + $ gunzip pth-1.1.X.tar.gz | tar xvf -
  + $ cd pth-1.1.X
$ ./configure \
   --disable-shared \
   --enable-pthread \
  @@ -112,8 +110,8 @@
$ cd ROOT/apache-apr/pthread
$ CC='cc' \
  OPTIM='-O2' \
  -   CFLAGS='-I\$(SRCDIR)/../pth-1.1b3 -DPTHREAD_EVERYWHERE 
-DNO_SERIALIZED_ACCEPT' \
  -   LDFLAGS='-L\$(SRCDIR)/../pth-1.1b3/.libs' \
  +   CFLAGS='-I\$(SRCDIR)/../pth-1.1.X -DPTHREAD_EVERYWHERE 
-DNO_SERIALIZED_ACCEPT' \
  +   LDFLAGS='-L\$(SRCDIR)/../pth-1.1.X/.libs' \
  LIBS=-lpthread \
  ./configure \
  --with-layout=GNU \
  
  
  


cvs commit: apache-1.3 Announcement

1999-08-19 Thread coar
coar99/08/19 11:15:08

  Modified:.Announcement
  Log:
Lick and a promise for 1.3.9 announcement..
  
  Revision  ChangesPath
  1.44  +10 -9 apache-1.3/Announcement
  
  Index: Announcement
  ===
  RCS file: /home/cvs/apache-1.3/Announcement,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- Announcement  1999/03/22 23:38:25 1.43
  +++ Announcement  1999/08/19 18:15:00 1.44
  @@ -1,13 +1,14 @@
  -Apache 1.3.6 Released
  +Apache 1.3.9 Released
   =
   
   The Apache Group is pleased to announce the release of version
  -1.3.6 of the Apache HTTP server.
  +1.3.9 of the Apache HTTP server.
   
  -This new Apache version incorporates over 60 significant improvements
  -to the server.  Apart from portability and security fixes, documentation
  -enhancements, performance improvements, and assorted other minor
  -features or fixes notable changes are:
  +This new Apache version incorporates over 130 significant
  +improvements to the server.  Apart from portability and
  +security fixes, documentation enhancements, performance
  +improvements, and assorted other minor features or fixes
  +notable changes are:
   
- mod_log_config now supports conditional logging based upon
  environment variables and support for multiline entries.
  @@ -41,13 +42,13 @@
   A complete listing with detailed descriptions is provided in the
   src/CHANGES file.
   
  -We consider Apache 1.3.6 to be the best version of Apache available and
  +We consider Apache 1.3.9 to be the best version of Apache available and
   we strongly recommend that users of older versions, especially of the
   1.1.x and 1.2.x family, upgrade as soon as possible.  No further releases
   will be made in the 1.2.x family.
   
   
  -Apache 1.3.6 is available for download from
  +Apache 1.3.9 is available for download from
   
   http://www.apache.org/dist/
   
  @@ -58,7 +59,7 @@
   
  http://www.apache.org/dist/binaries/
   
  -As of Apache 1.3.6 binary distributions contain all standard Apache
  +As of Apache 1.3.9 binary distributions contain all standard Apache
   modules as shared objects (if supported by the platform) and include
   full source code.  Installation is easily done by executing the
   included install script.  See the README.bindist and INSTALL.bindist
  
  
  


cvs commit: apache-site/dist .htaccess Announcement.html Announcement.txt README.html

1999-08-19 Thread coar
coar99/08/19 12:31:08

  Modified:.httpd.html
   dist .htaccess Announcement.html Announcement.txt
README.html
  Log:
Make note of the 1.3.9 release.  The dist/Announcement.* files
need tweaking; the list of highlights is from 1.3.4 to 1.3.6,
not 1.3.6 to 1.3.9.
  
  Revision  ChangesPath
  1.78  +3 -3  apache-site/httpd.html
  
  Index: httpd.html
  ===
  RCS file: /home/cvs/apache-site/httpd.html,v
  retrieving revision 1.77
  retrieving revision 1.78
  diff -u -r1.77 -r1.78
  --- httpd.html1999/05/13 13:50:37 1.77
  +++ httpd.html1999/08/19 19:30:52 1.78
  @@ -62,13 +62,13 @@
   
   PHR
   
  -H2 ALIGN=CENTERApache 1.3.6 Now Available/H2
  +H2 ALIGN=CENTERApache 1.3.9 Now Available/H2
   
   PBLOCKQUOTE
   
The Apache Group is pleased to announce the release of the
  - 1.3.6 version of the Apache HTTP server, including a Win32 build.
  - Apache 1.3.6 is the best version of Apache currently available;
  + 1.3.9 version of the Apache HTTP server, including a Win32 build.
  + Apache 1.3.9 is the best version of Apache currently available;
everyone running 1.2.X servers or earlier should upgrade to 1.3, as there
will not be any further 1.2.X releases.
At present, the Win32 port of Apache is not
  
  
  
  1.22  +4 -1  apache-site/dist/.htaccess
  
  Index: .htaccess
  ===
  RCS file: /home/cvs/apache-site/dist/.htaccess,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- .htaccess 1999/03/23 23:32:36 1.21
  +++ .htaccess 1999/08/19 19:30:57 1.22
  @@ -16,11 +16,14 @@
   AddDescription 1.3.6 compressed source apache_1.3.6.tar.Z
   AddDescription 1.3.6 gzipped source apache_1.3.6.tar.gz
   AddDescription 1.3.6 Win32 binary apache_1_3_6_win32.exe
  +AddDescription 1.3.9 compressed source apache_1.3.9.tar.Z
  +AddDescription 1.3.9 gzipped source apache_1.3.9.tar.gz
  +AddDescription 1.3.9 Win32 binary apache_1_3_9_win32.exe
   AddDescription List of changes in 1.3 /www/apache.org/dist/CHANGES_1.3
   AddDescription List of changes in 1.2 /www/apache.org/dist/CHANGES_1.2
   AddDescription Developer PGP keys /www/apache.org/dist/KEYS
   AddDescription PGP signature *.asc
  -AddDescription Apache 1.3.4 Released Announcement.txt
  +AddDescription Apache 1.3.9 Released Announcement.txt
   AddDescription Binary distributions /www/apache.org/dist/binaries
   AddDescription Contributed software /www/apache.org/dist/contrib
   AddDescription Old source amp; binaries /www/apache.org/dist/old
  
  
  
  1.15  +7 -7  apache-site/dist/Announcement.html
  
  Index: Announcement.html
  ===
  RCS file: /home/cvs/apache-site/dist/Announcement.html,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- Announcement.html 1999/03/23 23:24:10 1.14
  +++ Announcement.html 1999/08/19 19:30:58 1.15
  @@ -1,17 +1,17 @@
   HTML
HEAD
  -  TITLEApache 1.3.6 Released/TITLE
  +  TITLEApache 1.3.9 Released/TITLE
/HEAD
BODY
   
  -H1Apache 1.3.6 Released/H1
  +H1Apache 1.3.9 Released/H1
   
   P
   The Apache Group is pleased to announce the release of version
  -1.3.6 of the Apache HTTP server.
  +1.3.9 of the Apache HTTP server.
   
   P
  -This new Apache version incorporates over 60 significant improvements
  +This new Apache version incorporates over 130 significant improvements
   to the server.  Apart from portability and security fixes, documentation
   enhancements, performance improvements, and assorted other minor
   features or fixes notable changes are:
  @@ -52,13 +52,13 @@
   src/CHANGES file.
   
   P
  -We consider Apache 1.3.6 to be the best version of Apache available and
  +We consider Apache 1.3.9 to be the best version of Apache available and
   we strongly recommend that users of older versions, especially of the
   1.1.x and 1.2.x family, upgrade as soon as possible.  No further releases
   will be made in the 1.2.x family.
   
   P
  -Apache 1.3.6 is available for download from
  +Apache 1.3.9 is available for download from
   
   UL
   A HREF=http://www.apache.org/dist/;http://www.apache.org/dist//A
  @@ -76,7 +76,7 @@
   /UL
   
   P
  -As of Apache 1.3.6 binary distributions contain all standard Apache
  +As of Apache 1.3.9 binary distributions contain all standard Apache
   modules as shared objects (if supported by the platform) and include
   full source code.  Installation is easily done by executing the
   included install script.  See the README.bindist and INSTALL.bindist
  
  
  
  1.9   +6 -6  apache-site/dist/Announcement.txt
  
  Index: Announcement.txt
  ===
  RCS file: 

cvs commit: apache-apr/pthreads/src/test check_chunked

1999-08-19 Thread manoj
manoj   99/08/19 13:53:36

  Modified:pthreads INSTALL KEYS Makefile.tmpl config.layout configure
   pthreads/src .gdbinit ApacheCore.def ApacheCore.dsp
ApacheCore.mak CHANGES Configuration.tmpl Configure
   pthreads/src/ap Makefile.tmpl ap.dsp ap.mak ap_md5c.c
ap_snprintf.c
   pthreads/src/helpers GuessOS TestCompile binbuild.sh
buildinfo.sh find-dbm-lib mkshadow.sh
   pthreads/src/include ap.h ap_config.h ap_md5.h ap_mmn.h
http_conf_globals.h http_core.h httpd.h
   pthreads/src/main acceptlock.c buff.c http_config.c
http_core.c http_main.c http_protocol.c rfc1413.c
util.c util_script.c util_uri.c
   pthreads/src/modules/experimental Makefile.tmpl
   pthreads/src/modules/proxy ApacheModuleProxy.dsp
ApacheModuleProxy.mak proxy_cache.c proxy_ftp.c
   pthreads/src/modules/standard .cvsignore mod_access.c
mod_auth.c mod_auth_db.c mod_auth_dbm.c mod_cgi.c
mod_log_config.c mod_rewrite.c mod_rewrite.h
mod_unique_id.c
   pthreads/src/os/bs2000 Makefile.tmpl bs2login.c os.h
   pthreads/src/os/os2 util_os2.c
   pthreads/src/os/tpf os.c os.h
   pthreads/src/os/unix os.c
   pthreads/src/os/win32 ApacheModuleRewrite.dsp
ApacheModuleRewrite.mak os.h registry.c
   pthreads/src/os/win32/installer/installdll install.c
   pthreads/src/regex debug.c main.c split.c
   pthreads/src/support Makefile.tmpl README ab.c apxs.8
apxs.pl htdigest.c htpasswd.1 htpasswd.c httpd.8
httpd.exp suexec.c
   pthreads/src/test check_chunked
  Log:
  merge the differences in apache-1.3 from tag apache-apr-merge-3 to
  APACHE_1_3_9.
  
  Revision  ChangesPath
  1.5   +3 -3  apache-apr/pthreads/INSTALL
  
  Index: INSTALL
  ===
  RCS file: /home/cvs/apache-apr/pthreads/INSTALL,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -d -u -r1.4 -r1.5
  --- INSTALL   1999/06/10 06:25:33 1.4
  +++ INSTALL   1999/08/19 20:51:48 1.5
  @@ -82,8 +82,8 @@
  - Linux - SunOS - UnixWare - Mac OS X Server
  - FreeBSD   - Solaris   - AIX  - Mac OS
  - OpenBSD   - IRIX  - SCO  - OpenStep/Mach
  -   - NetBSD- HPUX  - ReliantUNIX
  -   - BSDI  - Digital Unix  
  +   - NetBSD- HPUX  - ReliantUNIX  - DYNIX/ptx
  +   - BSDI  - Digital Unix  - DGUX
   
   o Entirely unsupported platforms are:
  - Ultrix
  @@ -326,7 +326,7 @@
this way implicitly enables them itself). 

Note 1: The --enable-shared option DOES NOT AUTOMATICALLY enable the
  - module because there are variants like `--enable-shared=all'
  + module because there are variants like `--enable-shared=max'
which should not imply `--enable-module=all'.  
   
Note 2: Per default the DSO mechanism is globally disabled, i.e. no
  
  
  
  1.4   +232 -123  apache-apr/pthreads/KEYS
  
  Index: KEYS
  ===
  RCS file: /home/cvs/apache-apr/pthreads/KEYS,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -d -u -r1.3 -r1.4
  --- KEYS  1999/06/10 06:25:34 1.3
  +++ KEYS  1999/08/19 20:51:49 1.4
  @@ -386,133 +386,242 @@
   
   
   Type Bits/KeyIDDate   User ID
  -pub   999/F88341D9 1994/11/08 Lars Eilebrecht [EMAIL PROTECTED]
  +pub   999/F88341D9 1994/11/08 Lars Eilebrecht [EMAIL PROTECTED]
  +  Lars Eilebrecht [EMAIL PROTECTED]
  +  Lars Eilebrecht [EMAIL PROTECTED]
 Lars Eilebrecht [EMAIL PROTECTED]
  -  Lars `SFX' Eilebrecht [EMAIL PROTECTED]
  -  Lars `SFX' Eilebrecht [EMAIL PROTECTED]
  -  Lars `SFX' Eilebrecht [EMAIL PROTECTED]
   
   -BEGIN PGP PUBLIC KEY BLOCK-
  -Version: 2.6.3a
  +Version: 2.6.3ia
   
   mQCKAi6+wOsAAAED53PJgrIYS7iHbZn0ycrnzS03fwvwsDpoAVouoqqBSVNoVXH+
   lL+8HzX/fADvNyk1lYi5kTiYR2meKB1p0qpvj4bQ8ZEmcBemhV0FbESJ4CxIgy6V
  -euxOD3v9gauyf1u4lkfyLIsCepuJqpkH+aOviE9VhTcE/D6Pt/L4g0HZAAURtCFM
  -YXJzIEVpbGVicmVjaHQgPHNmeEB1bml4LWFnLm9yZz6JAJUDBRA2KRwZms08wKmf
  -dd0BASoSA/9ZwyAWilXJNMWsV0KfyUeHZ7CsFA9/KQixLtpSH8ij4raLasr6rurc
  -Sckrd+OiQKPQG0/TSXSAEP7suatV6XTTLEFHJbmqchTZXMSapwxFWGLxdG+buCiO
  -uVxbpop4ZoKz2xb+GtdeyeDr+//gFL+wbEqlZMXfvwgzBCxcOM/tZYkAkgMFEDPN
  

cvs commit: apache-1.3 Announcement

1999-08-19 Thread coar
coar99/08/19 14:13:35

  Modified:.Announcement
  Log:
Update the announcement.
  
  Revision  ChangesPath
  1.45  +58 -34apache-1.3/Announcement
  
  Index: Announcement
  ===
  RCS file: /home/cvs/apache-1.3/Announcement,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- Announcement  1999/08/19 18:15:00 1.44
  +++ Announcement  1999/08/19 21:13:07 1.45
  @@ -4,41 +4,63 @@
   The Apache Group is pleased to announce the release of version
   1.3.9 of the Apache HTTP server.
   
  -This new Apache version incorporates over 130 significant
  -improvements to the server.  Apart from portability and
  -security fixes, documentation enhancements, performance
  -improvements, and assorted other minor features or fixes
  -notable changes are:
  -
  - - mod_log_config now supports conditional logging based upon
  -   environment variables and support for multiline entries.
  -
  - - New CustomLog directive %V: This logs the hostname according to the
  -   UseCanonicalName setting (this is the pre-1.3.4 behaviour of %v).
  -
  - - Enhanced mod_rewrite's mapfile handling: The in-core cache for text
  -   and DBM format mapfiles now uses a hash table with LRU functionality.
  -   Furthermore map lookups for non-existent keys are now cached as well.
  -   The changes drastically improve the performance when large rewrite
  -   maps are in use.
  -
  - - Ability to handle DES or MD5 authentication passwords.
  - 
  - - New LimitExcept directive to allow the user to assign authentication
  -   control to any HTTP method that is *not* given in the argument list;
  -   i.e., the logical negation of the Limit directive.
  - 
  - - Improved content negotiation.
  - 
  - - New ScriptInterpreterSource directive to enable searching the
  -   Win32 registry for script interpreters.
  - 
  - - The FAQ document was reorganised.
  - 
  - - Overhauled ApacheBench benchmark program.
  - 
  - - Several new API functions have been added.
  +This new Apache version incorporates over 130 significant improvements
  +to the server.  Apart from portability and security fixes, documentation
  +enhancements, performance improvements, and assorted other minor
  +features or fixes notable changes are:
   
  + - A new experimental digest authentication module, compatible with
  +   the latest digest-auth standards, has been added to the base package.  
  +
  + - The expat XML parser has been added to allow modules to deal with
  +   XML if necessary.
  +
  + - The processing on Windows of basic authentication passwords in
  +   mod_auth password files has been fixed.  In addition, the SHA1
  +   encoding algorithm has been added to those available and
  +   known to htpasswd, and passwords on Windows may be longer than
  +   the inadvertent 1.3.6 limit of 8 characters.
  +
  + - Several problems with mod_access and CIDR addresses have been fixed.
  +
  + - Support has been added or enhanced for Tandem, TPF, and
  +   the Macintosh OS X platforms.
  +
  + - Some processing of Vary response header fields has been corrected.
  +
  + - Restarts with apache -k on Windows are now honoured immediately,
  +   instead of after the system's listen queue is drained.
  +
  + - Expect: 100-continue processing has been corrected.
  +
  + - Script errors on Windows are now copied to the server's error log
  +   if the scripts fail; this is closer to the Unix behaviour.
  +
  + - Mass-vhosting has been added (see the documentation for module
  +   mod_vhost_alias).
  +
  + - The server no longer automatically checks for the existence of a
  +   valid DocumentRoot for all virtual hosts; this was imposing a
  +   significant startup penalty on systems with numerous vhosts.
  +   The default behaviour has changed to *not* performing this
  +   check, but it can be re-enabled by specifying the -t command
  +   line option for full configuration testing.
  +
  + - apache -S on Windows now exits properly after completing the
  +   configuration testing.
  +
  + - SetEnvIf* directives can now test the values of environment
  +   variables as well as request attributes.  In addition,
  +   the request protocol and level (e.g., HTTP/1.1) can now be tested.
  +
  + - ReadmeName and HeaderName files (mod_autoindex) are now
  +   server-parsable and accessible with MultiViews.
  +
  + - AddDescription directives now behave as documented with regard
  +   to partial filename matches.
  +
  + - The name of the cookie used by mod_usertrack is now customisable.
  +
   A complete listing with detailed descriptions is provided in the
   src/CHANGES file.
   
  @@ -94,3 +116,5 @@
   and resources by individuals and companies, we hope that the Win32
   version of Apache will grow stronger through the 1.3.x release cycle.
   
  +
  +Thank you for using Apache.
  
  
  


cvs commit: apache-2.0/mpm/src/lib/apr/include apr_lib.h

1999-08-19 Thread rbb
rbb 99/08/19 14:45:37

  Modified:mpm/src/lib/apr Makefile.in
   mpm/src/lib/apr/include apr_lib.h
  Log:
  A couple of changes required to make things work nicer with Apache.  Mainly
  moving the lib*.a when they are all built into a common dir, and putting some
  declarations in the right spots.
  
  Revision  ChangesPath
  1.3   +5 -1  apache-2.0/mpm/src/lib/apr/Makefile.in
  
  Index: Makefile.in
  ===
  RCS file: /home/cvs/apache-2.0/mpm/src/lib/apr/Makefile.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile.in   1999/08/19 06:48:10 1.2
  +++ Makefile.in   1999/08/19 21:45:29 1.3
  @@ -23,7 +23,7 @@
   #
   # Macros for target determination
   #
  -MODULES=lib file_io network_io threadproc locks misc time
  +MODULES=lib file_io network_io threadproc locks misc time sig
   SUBDIRS=lib file_io/@OSDIR@ network_io/@OSDIR@ threadproc/@OSDIR@ \
   locks/@OSDIR@ misc/@OSDIR@ time/@OSDIR@ signal/@OSDIR@ 
   #shmem/@OSDIR@
  @@ -39,6 +39,10 @@
   # building the entire package.
   #
   all: Makefile $(MODULES) subdirs
  + mkdir libs
  + @for i in $(SUBDIRS); do \
  + cp $$1/lib*.a libs \ 
  + done;
@echo APR built.
   
   clean: subdirs_clean
  
  
  
  1.2   +38 -4 apache-2.0/mpm/src/lib/apr/include/apr_lib.h
  
  Index: apr_lib.h
  ===
  RCS file: /home/cvs/apache-2.0/mpm/src/lib/apr/include/apr_lib.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- apr_lib.h 1999/08/17 15:59:53 1.1
  +++ apr_lib.h 1999/08/19 21:45:34 1.2
  @@ -125,6 +125,21 @@
   char *elts;
   } ap_array_header_t;
   
  +typedef struct ap_table_entry_t {
  +char *key;  /* maybe NULL in future;
  + * check when iterating thru table_elts
  + */
  +char *val;
  +} ap_table_entry_t;
  +
  +/* XXX: these know about the definition of struct table in alloc.c.  That
  + * definition is not here because it is supposed to be private, and by not
  + * placing it here we are able to get compile-time diagnostics from modules
  + * written which assume that a table is the same as an ap_array_header_t. 
-djg
  + */
  +#define ap_table_elts(t) ((ap_array_header_t *)(t))
  +#define ap_is_empty_table(t) (((t) == NULL)||(((ap_array_header_t 
*)(t))-nelts == 0))
  +
   /*
* Structure used by the variable-formatter routines.
*/
  @@ -154,11 +169,28 @@
   #define ap_create_mutex(x) (0)
   #define ap_release_mutex(x) (0)
   #define ap_acquire_mutex(x) (0)
  -#define ap_islower(x) (0)
  -#define ap_isalpha(x) (0)
  -#define ap_isdigit(x) (0)
  +
  +/* These macros allow correct support of 8-bit characters on systems which
  + * support 8-bit characters.  Pretty dumb how the cast is required, but
  + * that's legacy libc for ya.  These new macros do not support EOF like
  + * the standard macros do.  Tough.
  + */
  +#define ap_isalnum(c) (isalnum(((unsigned char)(c
  +#define ap_isalpha(c) (isalpha(((unsigned char)(c
  +#define ap_iscntrl(c) (iscntrl(((unsigned char)(c
  +#define ap_isdigit(c) (isdigit(((unsigned char)(c
  +#define ap_isgraph(c) (isgraph(((unsigned char)(c
  +#define ap_islower(c) (islower(((unsigned char)(c
  +#define ap_isprint(c) (isprint(((unsigned char)(c
  +#define ap_ispunct(c) (ispunct(((unsigned char)(c
  +#define ap_isspace(c) (isspace(((unsigned char)(c
  +#define ap_isupper(c) (isupper(((unsigned char)(c
  +#define ap_isxdigit(c) (isxdigit(((unsigned char)(c
  +#define ap_tolower(c) (tolower(((unsigned char)(c
  +#define ap_toupper(c) (toupper(((unsigned char)(c
  +
  +
   
  -#define apr_tolower(c) (tolower(((unsigned char)(c
   
   /*
* Small utility macros to make things easier to read.  Not usually a
  @@ -308,6 +340,8 @@
   API_EXPORT(void)
ap_table_do(int (*comp) (void *, const char *, const char *),
 void *rec, const ap_table_t *t, ...);
  +#define AP_OVERLAP_TABLES_SET   (0)
  +#define AP_OVERLAP_TABLES_MERGE (1)
   API_EXPORT(void) ap_overlap_tables(ap_table_t *a, const ap_table_t *b,
unsigned flags);
   API_EXPORT(void) ap_register_cleanup(struct context_t *p, void *data,
  
  
  


cvs commit: apache-site httpd.html

1999-08-19 Thread coar
coar99/08/19 14:51:35

  Modified:.httpd.html
  Log:
*Brother* am I sick of these.  Make it just a bit more obvious. :-(
  
  Revision  ChangesPath
  1.79  +2 -0  apache-site/httpd.html
  
  Index: httpd.html
  ===
  RCS file: /home/cvs/apache-site/httpd.html,v
  retrieving revision 1.78
  retrieving revision 1.79
  diff -u -r1.78 -r1.79
  --- httpd.html1999/08/19 19:30:52 1.78
  +++ httpd.html1999/08/19 21:51:31 1.79
  @@ -20,6 +20,8 @@
   H3A HREF=http://www.apache.org/dyn/closer.cgi;
   Mirrored worldwide - find your closest mirror/A/H3
   
  +h2a href=docs/misc/FAQ.html#year2000
  +Apache's Y2K Readiness Statement/a/h2
   TABLE
   TR
   TD