cvs commit: apache-2.0 configure

2000-01-31 Thread martin
martin  00/01/31 15:54:07

  Modified:.configure
  Log:
  grep the right pattern
  
  Revision  ChangesPath
  1.9   +1 -1  apache-2.0/configure
  
  Index: configure
  ===
  RCS file: /export/home/cvs/apache-2.0/configure,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- configure 1999/12/31 19:10:59 1.8
  +++ configure 2000/01/31 23:54:04 1.9
  @@ -118,7 +118,7 @@
   ##
   if [ "x$quiet" = "xno" ]; then
   APV=`cat $src/include/httpd.h |\
  - grep "#define SERVER_BASEVERSION" |\
  + grep "#define AP_SERVER_BASEVERSION" |\
sed -e 's/^[^"]*"//' -e 's/".*$//' -e 's/^Apache\///'`
   echo "Configuring for Apache, Version $APV"
   fi
  
  
  


cvs commit: apache-2.0 configure

1999-12-31 Thread rbb
rbb 99/12/31 11:10:59

  Modified:.configure
  Log:
  Update configure script, so --enable-modules=most can compile a working
  Apache 2.0 server.  This basically removes mod_info and mod_proxy from the
  build process.  With this change, most of the server compiles again.
  
  Revision  ChangesPath
  1.8   +2 -0  apache-2.0/configure
  
  Index: configure
  ===
  RCS file: /home/cvs/apache-2.0/configure,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- configure 1999/12/07 14:20:10 1.7
  +++ configure 1999/12/31 19:10:59 1.8
  @@ -799,6 +799,8 @@
  module_auth_digest=no # conflict with mod_digest
  module_log_agent=no   # deprecated
  module_log_referer=no # deprecated
  +module_info=no# needs to be reworked for 
Apache 2.0
  +module_proxy=no   # proxy doesn't work yet, and 
we are probably going to just re-write it for 2.0 
  ;;
  * ) 
  eval "exists=\$module_${apc_optarg}" 
  
  
  


cvs commit: apache-2.0 configure

1999-12-07 Thread bjh
bjh 99/12/07 06:20:12

  Modified:.configure
  Log:
  Give OS/2 back a default layout, disabled by previous patch.
  
  Revision  ChangesPath
  1.7   +1 -0  apache-2.0/configure
  
  Index: configure
  ===
  RCS file: /home/cvs/apache-2.0/configure,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- configure 1999/12/04 01:01:03 1.6
  +++ configure 1999/12/07 14:20:10 1.7
  @@ -323,6 +323,7 @@
iflags_dso="${iflags_dso} -S \"-S\""
;;
   *OS/2* ) 
  + default_layout="Apache"
   iflags_program="$iflags_program -e .exe" 
   iflags_core="$iflags_core -e .exe" 
   ;;
  
  
  


cvs commit: apache-2.0 configure

1999-12-04 Thread wsanchez
wsanchez99/12/03 17:01:12

  Modified:.configure
  Log:
  Try to keep the platform overrides in one place.
  
  Revision  ChangesPath
  1.6   +4 -6  apache-2.0/configure
  
  Index: configure
  ===
  RCS file: /home/cvs/apache-2.0/configure,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- configure 1999/10/05 14:46:06 1.5
  +++ configure 1999/12/04 01:01:03 1.6
  @@ -237,12 +237,6 @@
   iflags_dso="-m 755"
   iflags_script="-m 755"
   iflags_data="-m 644"
  -case $PLATFORM in
  -*OS/2* ) 
  -iflags_program="$iflags_program -e .exe" 
  -iflags_core="$iflags_core -e .exe" 
  -;;
  -esac
   
   #   various other flags
   support=1
  @@ -328,6 +322,10 @@
iflags_core="${iflags_core} -S \"-S\"" 
iflags_dso="${iflags_dso} -S \"-S\""
;;
  +*OS/2* ) 
  +iflags_program="$iflags_program -e .exe" 
  +iflags_core="$iflags_core -e .exe" 
  +;;
  *)
default_layout="Apache"
;;
  
  
  


cvs commit: apache-2.0 configure

1999-10-05 Thread martin
martin  99/10/05 07:46:07

  Modified:.configure
  Log:
  If none of the standard group names was found in /etc/group,
  configure would generate a line like
conf_group   = #-1
  in the Makefile. But as this is an empty assignment (# is the
  comment start), the resulting httpd.conf was unusable. Set
  the group to "#-1" instead.
  
  Revision  ChangesPath
  1.5   +1 -1  apache-2.0/configure
  
  Index: configure
  ===
  RCS file: /home/cvs/apache-2.0/configure,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- configure 1999/08/29 10:43:13 1.4
  +++ configure 1999/10/05 14:46:06 1.5
  @@ -1139,7 +1139,7 @@
   ##  UID/GID as production oriented as a web server in NIS anyway.
   ##
   conf_user="nobody"
  -conf_group="#-1"
  +conf_group="#-1"
   conf_port="80"
   conf_serveradmin="[EMAIL PROTECTED]"
   conf_servername="new.host.name"
  
  
  


cvs commit: apache-2.0 configure

1999-08-29 Thread rse
rse 99/08/29 03:43:13

  Modified:src  CHANGES
   .configure
  Log:
  Even more convinience features for config.option:
  allow the loading of multiple option sections at once via
  ``--with-option=,,...''. This way
  one can reasonably combine the contents of disjunctive sections like
  in ``--with-option=devel,mpm-dexter-pth''.
  
  Revision  ChangesPath
  1.5   +3 -1  apache-2.0/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-2.0/src/CHANGES,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CHANGES   1999/08/28 00:36:40 1.4
  +++ CHANGES   1999/08/29 10:43:12 1.5
  @@ -4,7 +4,9 @@
for a wildcard handler.  [Dirk <[EMAIL PROTECTED]>, Roy Fielding]
PR#2584, PR#2751, PR#3349, PR#3436, PR#3548, PR#4384, PR#4795, PR#4807
   
  -  *) Support line-continuation feature in config.option file.
  +  *) Support line-continuation feature in config.option file and
  + allow the loading of multiple option sections at once via
  + ``--with-option=,,...''
[Ralf S. Engelschall]
   
 *) Rebuilt CVS repository with Apache 1.3.9 as basis.  [Roy Fielding]
  
  
  
  1.4   +17 -16apache-2.0/configure
  
  Index: configure
  ===
  RCS file: /home/cvs/apache-2.0/configure,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- configure 1999/08/27 14:37:13 1.3
  +++ configure 1999/08/29 10:43:13 1.4
  @@ -493,39 +493,40 @@
   case $apc_optarg in
   *:* ) 
   file=`echo $apc_optarg | sed -e 's/:.*//'`
  -name=`echo $apc_optarg | sed -e 's/.*://'`
  +names=`echo $apc_optarg | sed -e 's/.*://'`
   ;;
   * ) 
  -name=$apc_optarg
   file=$configoption
  +names="$apc_optarg"
   ;;
   esac
   if [ ! -f "$file" ]; then
   echo "configure:Error: Option definition file $file not 
found" 1>&2
   exit 1
   fi
  +OOIFS="$IFS"
  +IFS=","
   echo "loadopt=''" >$pldconf
  -sed -e "1,/[ ]*<[Oo]ption[   ]*common[   ]*>[]*/d" \
  --e '/[   ]*<\/[Oo]ption>[]*/,$d' \
  --e ':join' -e '/\\[  ]*$/N' -e 's/\\[]*\n[   ]*//' 
-e 'tjoin' \
  --e 's/^[ ]*//g' \
  --e 's/^\(--.*=.*\)$/loadopt="$loadopt \1"/' \
  -$file >>$pldconf
  -sed -e "1,/[ ]*<[Oo]ption[   ]*$name[]*>[]*/d" \
  --e '/[   ]*<\/[Oo]ption>[]*/,$d' \
  --e ':join' -e '/\\[  ]*$/N' -e 's/\\[]*\n[   ]*//' 
-e 'tjoin' \
  --e 's/^[ ]*//g' \
  --e 's/^\(--.*=.*\)$/loadopt="$loadopt \1"/' \
  -$file >>$pldconf
  +loaded=""
  +for name in common $names; do
  +loaded="$loaded $name"
  +sed -e "1,/[ ]*<[Oo]ption[   ]*${name}[  ]*>[
]*/d" \
  +-e '/[   ]*<\/[Oo]ption>[]*/,$d' \
  +-e ':join' -e '/\\[  ]*$/N' -e 's/\\[]*\n[   
]*//' -e 'tjoin' \
  +-e 's/^[ ]*//g' \
  +-e 's/^\(--.*=.*\)$/loadopt="$loadopt \1"/' \
  +$file >>$pldconf
  +done
  +IFS="$OOIFS"
   . $pldconf
  +rm -f $pldconf 2>/dev/null
   if [ "x$*" = "x" ]; then
   set -- $loadopt
   else
   set -- "$@" $loadopt
   fi
  -rm -f $pldconf 2>/dev/null
   if [ "x$quiet" = "xno" ]; then
  -echo " + loaded configuration options: $name ($file)"
  +echo " + loaded configuration options:$loaded ($file)"
   fi
   ;;
   *)