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/07/07 08:07:43 UTC

cvs commit: apache-2.0/src/lib/apr acconfig.h

bjh         00/07/06 23:07:43

  Modified:    src/lib/apr acconfig.h
  Log:
  The strcasecmp()->stricmp() mapping is done in apr_general.h so don't do
  it in apr_private.h as well as it causes redefinition warnings all through
  the APR build.
  
  Revision  Changes    Path
  1.34      +0 -4      apache-2.0/src/lib/apr/acconfig.h
  
  Index: acconfig.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/acconfig.h,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- acconfig.h	2000/06/20 16:16:20	1.33
  +++ acconfig.h	2000/07/07 06:07:43	1.34
  @@ -41,10 +41,6 @@
   /* Make sure we have ssize_t defined to be something */
   #undef ssize_t
   
  -#if !defined(HAVE_STRCASECMP) && defined(HAVE_STRICMP)
  -#define strcasecmp(s1,s2) stricmp(s1,s2)
  -#endif
  -
   #if !defined(HAVE_SOCKLEN_T)
   typedef int socklen_t;
   #endif