jim         96/09/30 18:04:44

  Modified:    src       Configure CutRule
  Log:
  Misc Configure mods
  
  Revision  Changes    Path
  1.23      +6 -6      apache/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Configure,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -C3 -r1.22 -r1.23
  *** Configure 1996/09/28 02:03:14     1.22
  --- Configure 1996/10/01 01:04:41     1.23
  ***************
  *** 1,5 ****
    #!/bin/sh
  ! # $Id: Configure,v 1.22 1996/09/28 02:03:14 brian Exp $
    trap 'rm $tmpfile; exit' 0 1 2 3 15
    
    # Apache configuration script, first cut --- rst.
  --- 1,5 ----
    #!/bin/sh
  ! # $Id: Configure,v 1.23 1996/10/01 01:04:41 jim Exp $
    trap 'rm $tmpfile; exit' 0 1 2 3 15
    
    # Apache configuration script, first cut --- rst.
  ***************
  *** 109,119 ****
    #
    # Extract the rules.
    #
  ! RULE_WANTHSREGEX=`./CutRule WANTHSREGEX`
  ! RULE_STATUS=`./CutRule STATUS`
  ! RULE_SOCKS=`./CutRule SOCKS`
  ! RULE_BADMMAP=`./CutRule BADMMAP`
  ! RULE_IRIXNIS=`./CutRule IRIXNIS`
    
    #
    # Now we determine the OS/Platform automagically, thanks to
  --- 109,119 ----
    #
    # Extract the rules.
    #
  ! RULE_WANTHSREGEX=`./CutRule WANTHSREGEX $file`
  ! RULE_STATUS=`./CutRule STATUS $file`
  ! RULE_SOCKS=`./CutRule SOCKS $file`
  ! RULE_BADMMAP=`./CutRule BADMMAP $file`
  ! RULE_IRIXNIS=`./CutRule IRIXNIS $file`
    
    #
    # Now we determine the OS/Platform automagically, thanks to
  
  
  
  1.3       +1 -1      apache/src/CutRule
  
  Index: CutRule
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CutRule,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** CutRule   1996/09/08 16:14:55     1.2
  --- CutRule   1996/10/01 01:04:42     1.3
  ***************
  *** 2,6 ****
    # note that there is a tab and a space in the character groups.
    # Map to lowercase to make tests easier
    
  ! egrep "Rule[         ]+$1[   ]*=" Configuration|cut -d= -f2|sed 's/[        
 ]//g'\
     | tr "A-Z" "a-z"
  --- 2,6 ----
    # note that there is a tab and a space in the character groups.
    # Map to lowercase to make tests easier
    
  ! egrep "Rule[         ]+$1[   ]*=" $2 |cut -d= -f2|sed 's/[   ]//g' \
     | tr "A-Z" "a-z"
  
  
  

Reply via email to