You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2002/02/12 02:41:57 UTC

cvs commit: apr/include apr.hw

wrowe       02/02/11 17:41:57

  Modified:    include  apr.hw
  Log:
    More WinCE disparities from Mladen Turk <mt...@mappingsoft.com>
  
  Revision  Changes    Path
  1.86      +9 -3      apr/include/apr.hw
  
  Index: apr.hw
  ===================================================================
  RCS file: /home/cvs/apr/include/apr.hw,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -r1.85 -r1.86
  --- apr.hw	29 Jan 2002 07:11:25 -0000	1.85
  +++ apr.hw	12 Feb 2002 01:41:57 -0000	1.86
  @@ -195,14 +195,19 @@
   #define APR_HAVE_SIGWAIT        0
   #define APR_HAVE_STRCASECMP     0
   #define APR_HAVE_STRDUP         1
  -#define APR_HAVE_STRICMP        1
   #define APR_HAVE_STRNCASECMP    0
  -#define APR_HAVE_STRNICMP       1
   #define APR_HAVE_STRSTR         1
   #define APR_HAVE_MEMCHR         1
   #define APR_HAVE_STRUCT_RLIMIT  0
   #define APR_HAVE_UNION_SEMUN    0
   
  +#ifndef _WIN32_WCE
  +#define APR_HAVE_STRICMP        1
  +#define APR_HAVE_STRNICMP       1
  +#else
  +#define APR_HAVE_STRICMP        0
  +#define APR_HAVE_STRNICMP       0
  +#endif
   
   /* Has windows.h already been included?  If so, our preferences don't matter,
    * but we will still need the winsock things no matter what was included.
  @@ -267,7 +272,6 @@
   /*  APR Feature Macros */
   #define APR_HAS_SHARED_MEMORY     1
   #define APR_HAS_THREADS           1
  -#define APR_HAS_SENDFILE          1
   #define APR_HAS_MMAP              1
   #define APR_HAS_FORK              0
   #define APR_HAS_RANDOM            1
  @@ -277,10 +281,12 @@
   #define APR_HAS_SO_ACCEPTFILTER   0
   #define APR_HAS_UNICODE_FS        1
   #ifndef _WIN32_WCE
  +#define APR_HAS_SENDFILE          1
   #define APR_HAS_USER              1
   #define APR_HAS_LARGE_FILES       1
   #define APR_HAS_XTHREAD_FILES     1
   #else
  +#define APR_HAS_SENDFILE          0
   #define APR_HAS_USER              0
   #define APR_HAS_LARGE_FILES       0
   #define APR_HAS_XTHREAD_FILES     0