ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/tewi/Server/version.c
Revision: 1.3
Committed: Thu Oct 31 15:31:57 2024 UTC (2 weeks ago) by nishi
Content type: text/x-c
Branch: MAIN
Changes since 1.2: +3 -1 lines
Log Message:
add darwin

File Contents

# User Rev Content
1 nishi 1.3 /* $Id: version.c 399 2024-10-31 15:31:42Z nishi $ */
2 nishi 1.1
3     #define SOURCE
4    
5     #include "tw_version.h"
6    
7     const char* tw_version = TW_VERSION;
8    
9     const char* tw_platform =
10     #if defined(PLATFORM)
11     PLATFORM
12     #elif defined(__NetBSD__)
13     "NetBSD"
14     #elif defined(__OpenBSD__)
15     "OpenBSD"
16 nishi 1.2 #elif defined(__bsdi__)
17     "BSD/OS"
18 nishi 1.1 #elif defined(__linux__)
19     "Linux"
20     #elif defined(__OS2__)
21     "OS/2"
22     #elif defined(__NeXT__)
23     "NeXT"
24     #elif defined(__NETWARE__)
25     "NetWare"
26     #elif defined(__DOS__)
27     "DOS"
28     #elif defined(__MINGW32__)
29     "Windows-MinGW32"
30     #elif defined(_MSC_VER)
31     "Windows-VisualC"
32     #elif defined(__BORLANDC__)
33     "Windows-Borland"
34     #elif defined(__WATCOMC__)
35     "Windows-Watcom"
36     #elif defined(__HAIKU__)
37     "Haiku"
38 nishi 1.3 #elif defined(__APPLE__)
39     "Darwin"
40 nishi 1.1 #elif defined(__CYGWIN__)
41     "Cygwin"
42     #elif defined(_PSP)
43     "PSP"
44     #elif defined(__PPU__)
45     "PS3"
46     #elif defined(__minix)
47     "Minix"
48     #elif defined(__USLC__)
49     "UnixWare"
50     #else
51     "Unix"
52     #endif
53     ;
54    
55     const char* tw_get_version(void) { return tw_version; }
56     const char* tw_get_platform(void) { return tw_platform; }