ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/tewi/Server/version.c
Revision: 1.5
Committed: Sun Nov 3 13:51:52 2024 UTC (11 days, 22 hours ago) by nishi
Content type: text/x-c
Branch: MAIN
Changes since 1.4: +3 -1 lines
Log Message:
fixing for solaris

File Contents

# User Rev Content
1 nishi 1.5 /* $Id: version.c 407 2024-11-03 13:51:38Z 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 nishi 1.4 #elif defined(__amiga__)
29     "Amiga"
30 nishi 1.1 #elif defined(__MINGW32__)
31     "Windows-MinGW32"
32     #elif defined(_MSC_VER)
33     "Windows-VisualC"
34     #elif defined(__BORLANDC__)
35     "Windows-Borland"
36     #elif defined(__WATCOMC__)
37     "Windows-Watcom"
38     #elif defined(__HAIKU__)
39     "Haiku"
40 nishi 1.3 #elif defined(__APPLE__)
41     "Darwin"
42 nishi 1.5 #elif defined(__sun__)
43     "Solaris"
44 nishi 1.1 #elif defined(__CYGWIN__)
45     "Cygwin"
46     #elif defined(_PSP)
47     "PSP"
48     #elif defined(__PPU__)
49     "PS3"
50     #elif defined(__minix)
51     "Minix"
52     #elif defined(__USLC__)
53     "UnixWare"
54     #else
55     "Unix"
56     #endif
57     ;
58    
59     const char* tw_get_version(void) { return tw_version; }
60     const char* tw_get_platform(void) { return tw_platform; }