fielding 98/12/11 19:12:18
Modified: src CHANGES src/include ap_config.h Log: The I86 version of DGUX has support for strncasecmp and strcasecmp, so allow it in ap_config.h. [Amiel Lee Yee] PR#3247 PR: 3247 Submitted by: Amiel Lee Yee <[EMAIL PROTECTED]> Reviewed by: Roy Fielding Revision Changes Path 1.1168 +3 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1167 retrieving revision 1.1168 diff -u -r1.1167 -r1.1168 --- CHANGES 1998/12/12 02:57:07 1.1167 +++ CHANGES 1998/12/12 03:12:15 1.1168 @@ -1,5 +1,8 @@ Changes with Apache 1.3.4 + *) PORT: The I86 version of DGUX has support for strncasecmp and + strcasecmp, so allow it in ap_config.h. [Amiel Lee Yee] PR#3247 + *) Fix ordering of definitions in ap_config.h so that ap_inline is defined before it might be used. [Victor Khimenko] 1.246 +5 -0 apache-1.3/src/include/ap_config.h Index: ap_config.h =================================================================== RCS file: /home/cvs/apache-1.3/src/include/ap_config.h,v retrieving revision 1.245 retrieving revision 1.246 diff -u -r1.245 -r1.246 --- ap_config.h 1998/12/12 02:53:42 1.245 +++ ap_config.h 1998/12/12 03:12:17 1.246 @@ -593,8 +593,13 @@ #define NO_KILLPG #undef NO_SETSID #undef NEED_STRDUP +#ifdef _IX86_DG +#undef NEED_STRCASECMP +#undef NEED_STRNCASECMP +#else #define NEED_STRCASECMP #define NEED_STRNCASECMP +#endif #define bzero(a,b) memset(a,0,b) /* A lot of SVR4 systems need this */ #define USE_FCNTL_SERIALIZED_ACCEPT