rse         99/03/10 03:22:12

  Modified:    src      CHANGES
               .        configure
  Log:
  Let APACI's configure script correctly complain for unknown --enable-XXX
  and --disable-XXX options.
  
  PR: 3958
  
  Revision  Changes    Path
  1.1271    +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1270
  retrieving revision 1.1271
  diff -u -r1.1270 -r1.1271
  --- CHANGES   1999/03/10 11:06:06     1.1270
  +++ CHANGES   1999/03/10 11:22:09     1.1271
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.5
   
  +  *) Let APACI's configure script correctly complain for unknown --enable-XXX
  +     and --disable-XXX options. [Ralf S. Engelschall] PR#3958
  +
     *) Link the shared core bootstrap program (``Rule SHARED_CORE=yes'') also
        against libap.a and use its ap_snprintf() instead of sprintf() to avoid
        possible buffer overflows. [Ralf S. Engelschall]
  
  
  
  1.75      +8 -0      apache-1.3/configure
  
  Index: configure
  ===================================================================
  RCS file: /home/cvs/apache-1.3/configure,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- configure 1999/03/08 20:03:17     1.74
  +++ configure 1999/03/10 11:22:11     1.75
  @@ -729,6 +729,10 @@
                   suexec ) 
                       suexec=1
                       ;;
  +                * ) 
  +                    echo "configure:Error: invalid option '$apc_option'" 1>&2
  +                    exit 1
  +                    ;;
               esac
               ;;
           --disable-*)
  @@ -786,6 +790,10 @@
                              eval "shared_${apc_optarg}=no" 
                              ;;
                       esac
  +                    ;;
  +                * ) 
  +                    echo "configure:Error: invalid option '$apc_option'" 1>&2
  +                    exit 1
                       ;;
               esac
               ;;
  
  
  

Reply via email to