cvs commit: apache-1.3 configure

1998-12-16 Thread rse
rse 98/12/16 02:57:46

  Modified:.configure
  Log:
  Fix a few recently introduced bugs in APACI.  Especially the option reversing
  breaks the --activate-module facility and other similar additive option based
  things.
  
  Revision  ChangesPath
  1.62  +4 -3  apache-1.3/configure
  
  Index: configure
  ===
  RCS file: /home/cvs/apache-1.3/configure,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- configure 1998/12/14 01:03:31 1.61
  +++ configure 1998/12/16 10:57:45 1.62
  @@ -344,7 +344,7 @@
   exit 0
   ;;
   --with-layout=*|--compat)
  - if [ .$apc_option = .--compat ]; then
  +if [ .$apc_option = .--compat ]; then
   apc_optarg=Apache
   fi
   case $apc_optarg in
  @@ -378,11 +378,12 @@
   fi
   with_layout=1
   ;;
  - *)
  - args=$apc_option $args
  +*)
  +args=$args $apc_option
   ;;
   esac
   done
  +IFS=$OIFS1
   
   if [ .$with_layout = .0 ]; then
   echo configure:Error: Please select an installation path layout with
  
  
  


cvs commit: apache-1.3 configure config.layout

1998-12-16 Thread rse
rse 98/12/16 07:57:28

  Modified:src  CHANGES
   .configure config.layout
  Log:
  Removed recently introduced bugs and disfigurements in APACI:
  
   o fixed argument line processing: using $args was broken: It was not
 initialized and using args=$args $apc_option and even args=$args
 \$apc_option\ fails in the second processing round for any arguments
 containing whitespaces. The only correct way is to use the construct
 $@ (but not possible here) or iterate _both_ times over the implicit
 argument line (no argument to for-loop) which is what we now use.
  
   o make --with-layout=Apache the default without creating
 redundancy (copying the --with-layout block in the argument parsing
 loop).  We achieve this by using the $@ construct together with the
 `set' command to prepend --with-layout=Apache to the command line in
 case --with-layout is not used.
  
   o fixed auto-suffix handling now that config.layout exists.
 Paths which are auto-suffixed are marked with a trailing plus sign in
 config.layout and every path now can be marked this way (not only the
 four paths for which we do it currently).  Additionally the suffix is
 no longer a static one. Instead it's now `/target' where target is
 the argument of the --target option or per default `httpd'.
  
   o allow also tabs (and only spaces) where we match whitespaces
  
   o various fixes and cleanups related to used shell coding style
  
   o made Jim happy by replacing `Written by' with `Initially written by' ;-)
  
   o trimmed output of --help to fit into 80 columns
  
  Now APACI is again clean and ready for 1.3.4 ;-) (IMHO)
  
  Revision  ChangesPath
  1.1171+24 -0 apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1170
  retrieving revision 1.1171
  diff -u -r1.1170 -r1.1171
  --- CHANGES   1998/12/12 05:26:00 1.1170
  +++ CHANGES   1998/12/16 15:57:26 1.1171
  @@ -1,5 +1,29 @@
   Changes with Apache 1.3.4
   
  +  *) Removed recently introduced bugs and disfigurements in APACI:
  + o fixed argument line processing: using $args was broken: It was not
  +   initialized and using args=$args $apc_option and even args=$args
  +   \$apc_option\ fails in the second processing round for any 
arguments
  +   containing whitespaces. The only correct way is to use the construct
  +   $@ (but not possible here) or iterate _both_ times over the implicit
  +   argument line (no argument to for-loop) which is what we now use.
  + o make --with-layout=Apache the default without creating
  +   redundancy (copying the --with-layout block in the argument parsing
  +   loop).  We achieve this by using the $@ construct together with the
  +   `set' command to prepend --with-layout=Apache to the command line in
  +   case --with-layout is not used.
  + o fixed auto-suffix handling now that config.layout exists.
  +   Paths which are auto-suffixed are marked with a trailing plus sign in
  +   config.layout and every path now can be marked this way (not only the
  +   four paths for which we do it currently).  Additionally the suffix is
  +   no longer a static one. Instead it's now `/target' where target is
  +   the argument of the --target option or per default `httpd'.
  + o allow also tabs (and only spaces) where we match whitespaces
  + o various fixes and cleanups related to used shell coding style
  + o made Jim happy by replacing `Written by' with `Initially written by' 
;-)
  + o trimmed output of --help to fit into 80 columns
  + [Ralf S. Engelschall]
  +
 *) Added two new core API functions, ap_single_module_configure() and
ap_single_module_init(), which are now used by mod_so to correctly
initialize a module after loading. This fixes a problem with unusable
  
  
  
  1.63  +101 -89   apache-1.3/configure
  
  Index: configure
  ===
  RCS file: /home/cvs/apache-1.3/configure,v
  retrieving revision 1.62
  retrieving revision 1.63
  diff -u -r1.62 -r1.63
  --- configure 1998/12/16 10:57:45 1.62
  +++ configure 1998/12/16 15:57:28 1.63
  @@ -58,7 +58,7 @@
   ##
   ##  configure -- Apache Autoconf-style Interface (APACI) 
   ##
  -##  Written by Ralf S. Engelschall [EMAIL PROTECTED]
  +##  Initially written by Ralf S. Engelschall [EMAIL PROTECTED]
   ##
   
   #   default input separator chars: spacetabcr
  @@ -68,7 +68,6 @@
   ##
   ##  the paths to the Apache source tree
   ##
  -
   top=.
   mkf=Makefile
   src=src
  @@ -84,7 +83,6 @@
   ##
   ##  pre-determine runtime modes
   ##
  -
   help=no
   quiet=no
   verbose=no
  @@ -98,7 +96,6 @@
   ##
   ##  display version information
   ##
  -
   if [ .$quiet = .no ]; then
   

cvs commit: apache-1.3/icons/small - New directory

1998-12-16 Thread coar
coar98/12/16 11:03:27

  apache-1.3/icons/small - New directory


cvs commit: apache-1.3/icons/small README.txt back.gif binary.gif binhex.gif blank.gif broken.gif burst.gif comp1.gif comp2.gif compressed.gif continued.gif dir.gif dir2.gif forward.gif generic.gif generic2.gif generic3.gif image.gif image2.gif index.gif movie.gif rainbow.gif sound.gif sound2.gif tar.gif text.gif transfer.gif unknown.gif uu.gif

1998-12-16 Thread coar
coar98/12/16 11:07:57

  Modified:iconsREADME
  Added:   icons/small README.txt back.gif binary.gif binhex.gif
blank.gif broken.gif burst.gif comp1.gif comp2.gif
compressed.gif continued.gif dir.gif dir2.gif
forward.gif generic.gif generic2.gif generic3.gif
image.gif image2.gif index.gif movie.gif
rainbow.gif sound.gif sound2.gif tar.gif text.gif
transfer.gif unknown.gif uu.gif
  Log:
Add [EMAIL PROTECTED]'s 16x16 icons.
  
  Obtained from:Hyperreal
  Submitted by: Brian Behlendorf
  Reviewed by:  Ralf Engelschall, Roy Fielding, Jim Jagielski, Ken Coar
  
  Revision  ChangesPath
  1.2   +2 -0  apache-1.3/icons/README
  
  Index: README
  ===
  RCS file: /home/cvs/apache-1.3/icons/README,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- README1996/02/22 11:45:51 1.1
  +++ README1998/12/16 19:07:51 1.2
  @@ -9,6 +9,8 @@
few new images. If you'd like to contribute additions or ideas to
this set, please let me know.
   
  + Almost all of these icons are 20x22 pixels in size.
  +
The distribution site for these icons is at:
   
 http://www.eit.com/goodies/www.icons/
  
  
  
  1.1  apache-1.3/icons/small/README.txt
  
  Index: README.txt
  ===
  
  These icons are provided as an alternative to the standard Apache
  icon graphics.  All graphics in this directory, with the exception
  of rainbow.gif, are 16x16 pixels in size, rather than the 20x22
  dimension icons which are the normal defaults for Apache and are
  in the parent directory of this one.
  
  
  
  1.1  apache-1.3/icons/small/back.gif
  
  Index: back.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/binary.gif
  
  Index: binary.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/binhex.gif
  
  Index: binhex.gif
  ===
  GIF89a
  OÅÊɆ„‚Q„qVLää¶löžž#Œmàp8ÀH
  
  
  1.1  apache-1.3/icons/small/blank.gif
  
  Index: blank.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/broken.gif
  
  Index: broken.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/burst.gif
  
  Index: burst.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/comp1.gif
  
  Index: comp1.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/comp2.gif
  
  Index: comp2.gif
  ===
  GIF89a
  §ƒ0ìpċÜeRŽ:•IR4:ѵŒŠ0¢Ep °x\L
  
  
  1.1  apache-1.3/icons/small/compressed.gif
  
  Index: compressed.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/continued.gif
  
  Index: continued.gif
  ===
  GIF89a
  ÅEà ]ˆ
  ¥i¾åá–bpˆƒÃÓù-HǓÂTi:ŸÐG
  
  
  1.1  apache-1.3/icons/small/dir.gif
  
  Index: dir.gif
  ===
  GIF89a
  út„ïø`$eÌÌP  8 —©õŠ]¿œn„$
  
  
  1.1  apache-1.3/icons/small/dir2.gif
  
  Index: dir2.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/forward.gif
  
  Index: forward.gif
  ===
  GIF89a
  ‘²‚›—›˜.r$
  
  
  1.1  apache-1.3/icons/small/generic.gif
  
  Index: generic.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/generic2.gif
  
  Index: generic2.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/generic3.gif
  
  Index: generic3.gif
  ===
  GIF89a
  
  
  1.1  apache-1.3/icons/small/image.gif
  
  Index: image.gif
  ===
  GIF89a
  ‘s•ˆó(Æ!xÃal¤ œ…¼o#LJÍ
[EMAIL PROTECTED]@撦  
  
  
  1.1