rse         99/11/28 06:15:37

  Modified:    src      CHANGES
               .        configure
  Log:
  Add --iconsdir, --htdocsdir, and --cgidir option to top-level configure script
  to allow one to override the corresponding variables from config.layout.
  
  Revision  Changes    Path
  1.1461    +5 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1460
  retrieving revision 1.1461
  diff -u -r1.1460 -r1.1461
  --- CHANGES   1999/11/28 13:51:49     1.1460
  +++ CHANGES   1999/11/28 14:15:32     1.1461
  @@ -1,5 +1,10 @@
   Changes with Apache 1.3.10
   
  +  *) Add --iconsdir, --htdocsdir, and --cgidir option to top-level
  +     configure script to allow one to override the corresponding 
  +     variables from config.layout.
  +     [Ralf S. Engelschall]
  +
     *) Fixed `quad integer' (aka `long long') handling in ap_snprintf.c
        [Ralf S. Engelschall]
   
  
  
  
  1.110     +12 -0     apache-1.3/configure
  
  Index: configure
  ===================================================================
  RCS file: /home/cvs/apache-1.3/configure,v
  retrieving revision 1.109
  retrieving revision 1.110
  diff -u -r1.109 -r1.110
  --- configure 1999/11/28 11:36:53     1.109
  +++ configure 1999/11/28 14:15:35     1.110
  @@ -628,6 +628,18 @@
               datadir="$apc_optarg"       
               autosuffix_datadir=no
               ;;
  +        --iconsdir=*) 
  +            iconsdir="$apc_optarg" 
  +            autosuffix_iconsdir=no
  +            ;;
  +        --htdocsdir=*) 
  +            htdocsdir="$apc_optarg" 
  +            autosuffix_htdocsdir=no
  +            ;;
  +        --cgidir=*) 
  +            cgidir="$apc_optarg" 
  +            autosuffix_cgidir=no
  +            ;;
           --includedir=*)       
               includedir="$apc_optarg"       
               autosuffix_includedir=no
  
  
  

Reply via email to