chuck 97/04/08 18:40:55
Modified: src CHANGES conf.h
Log:
Reviewed by: Chuck Murcko
Submitted by: Marc Slemko
Add #define for memmove for SUNOS4.
Revision Changes Path
1.227 +8 -1 apache/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache/src/CHANGES,v
retrieving revision 1.226
retrieving revision 1.227
diff -C3 -r1.226 -r1.227
*** CHANGES 1997/04/07 17:49:28 1.226
--- CHANGES 1997/04/09 01:40:49 1.227
***************
*** 1,5 ****
Changes with Apache 1.2b8
!
*) suexec.c doesn't close the log file, allowing CGIs to continue writing
to it. [Marc Slemko]
--- 1,12 ----
+ Changes with Apache 1.2b9
+
+ *) add macro for memmove to conf.h for SUNOS4 [Marc Slemko]
+
+ *) Proxy cleanup for transmission errors; avoids core dumps an some
+ of the truncated files. [Chuck Murcko]
+
Changes with Apache 1.2b8
!
*) suexec.c doesn't close the log file, allowing CGIs to continue writing
to it. [Marc Slemko]
1.92 +1 -0 apache/src/conf.h
Index: conf.h
===================================================================
RCS file: /export/home/cvs/apache/src/conf.h,v
retrieving revision 1.91
retrieving revision 1.92
diff -C3 -r1.91 -r1.92
*** conf.h 1997/04/07 09:44:17 1.91
--- conf.h 1997/04/09 01:40:51 1.92
***************
*** 86,91 ****
--- 86,92 ----
#include <sys/time.h>
#define NEED_STRERROR
typedef int rlim_t;
+ #define memmove(a,b,c) bcopy(b,a,c)
#define NO_LINGCLOSE
#elif defined(SOLARIS2)