dreid 01/02/14 05:32:45
Modified: os/beos os.h
Log:
As a debugging aid, report which version of the beos code we're using and
fix a typo.
Revision Changes Path
1.11 +6 -2 httpd-2.0/os/beos/os.h
Index: os.h
===================================================================
RCS file: /home/cvs/httpd-2.0/os/beos/os.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- os.h 2000/11/10 15:28:56 1.10
+++ os.h 2001/02/14 13:32:45 1.11
@@ -62,11 +62,15 @@
#include "ap_config.h"
#ifndef PLATFORM
-#define PLATFORM "BeOS"
+ #ifdef BONE_VERSION
+ #define PLATFORM "BeOS BONE"
+ #else
+ #define PLATFORM "BeOS R5"
+ #endif
#endif
/*
- * This file in included in all Apache source code. It contains definitions
+ * This file is included in all Apache source code. It contains definitions
* of facilities available on _this_ operating system (HAVE_* macros),
* and prototypes of OS specific functions defined in os.c or os-inline.c
*/
|