You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@locus.apache.org on 2000/03/19 14:28:43 UTC

cvs commit: apache-2.0/src/include ap_config.h httpd.h

bjh         00/03/19 05:28:43

  Modified:    src/include ap_config.h httpd.h
  Log:
  Test for AP_USE_HSREGEX, not USE_HSREGEX, as that's what actually gets
  defined (in ap_config_auto.h) when using the bundled hsregex.
  
  Revision  Changes    Path
  1.17      +1 -1      apache-2.0/src/include/ap_config.h
  
  Index: ap_config.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/include/ap_config.h,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- ap_config.h	2000/03/15 23:18:30	1.16
  +++ ap_config.h	2000/03/19 13:28:42	1.17
  @@ -1089,7 +1089,7 @@
   
   #ifdef WIN32
   #include "../include/hsregex.h"
  -#elif defined(USE_HSREGEX)
  +#elif defined(AP_USE_HSREGEX)
   #include "hsregex.h"
   #else
   #include <regex.h>
  
  
  
  1.32      +1 -1      apache-2.0/src/include/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/include/httpd.h,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- httpd.h	2000/03/15 23:18:30	1.31
  +++ httpd.h	2000/03/19 13:28:42	1.32
  @@ -942,7 +942,7 @@
   API_EXPORT(char *) ap_uuencode(ap_context_t *p, char *string); 
   
   /* Regexes */
  -#if defined(USE_HSREGEX) || defined(WIN32)
  +#if defined(AP_USE_HSREGEX) || defined(WIN32)
   #include "hsregex.h"
   #else
   #include <regex.h>