jim 98/02/22 07:00:53
Modified: src CHANGES
src/modules/standard mod_status.c
Log:
Obtained from: Scott Anguish and Timothy Luoma
Reviewed by: Jim
NeXT porting changes for mod_status
Revision Changes Path
1.655 +4 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.654
retrieving revision 1.655
diff -u -r1.654 -r1.655
--- CHANGES 1998/02/22 13:50:08 1.654
+++ CHANGES 1998/02/22 15:00:50 1.655
@@ -1,5 +1,9 @@
Changes with Apache 1.3b6
+ *) [PORT] Work around the fact that NeXT runs on more than the
+ m68k chips in mod_status [Scott Anguish and Timothy Luoma
+ <[EMAIL PROTECTED]>]
+
*) [PORT] Recognize FreeBSD versions so we can use the OS regex as well
as handling unsigned-chars for FreeBSD v3 and v2 [Andrey Chernov
<[EMAIL PROTECTED]> and Jim] PR#1450
1.75 +8 -0 apache-1.3/src/modules/standard/mod_status.c
Index: mod_status.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_status.c,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- mod_status.c 1998/02/22 13:50:10 1.74
+++ mod_status.c 1998/02/22 15:00:52 1.75
@@ -117,7 +117,15 @@
#include "http_log.h"
#ifdef NEXT
+#if NX_CURRENT_COMPILER_RELEASE == 410
+#if __ARCHITECTURE__ == m68k
+#define HZ 64
+#else
+#define HZ 100
+#endif
+#else
#include <machine/param.h>
+#ndif
#endif
#define STATUS_MAXLINE 64