OLD | NEW |
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 /* This Source Code Form is subject to the terms of the Mozilla Public | 2 /* This Source Code Form is subject to the terms of the Mozilla Public |
3 * License, v. 2.0. If a copy of the MPL was not distributed with this | 3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
5 | 5 |
6 #ifndef prosdep_h___ | 6 #ifndef prosdep_h___ |
7 #define prosdep_h___ | 7 #define prosdep_h___ |
8 | 8 |
9 /* | 9 /* |
10 ** Get OS specific header information | 10 ** Get OS specific header information |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 #elif defined(LINUX) || defined(__GNU__) || defined(__GLIBC__) | 55 #elif defined(LINUX) || defined(__GNU__) || defined(__GLIBC__) |
56 #include "md/_linux.h" | 56 #include "md/_linux.h" |
57 | 57 |
58 #elif defined(OSF1) | 58 #elif defined(OSF1) |
59 #include "md/_osf1.h" | 59 #include "md/_osf1.h" |
60 | 60 |
61 #elif defined(DARWIN) | 61 #elif defined(DARWIN) |
62 #include "md/_darwin.h" | 62 #include "md/_darwin.h" |
63 | 63 |
64 #elif defined(NEXTSTEP) | |
65 #include "md/_nextstep.h" | |
66 | |
67 #elif defined(SOLARIS) | 64 #elif defined(SOLARIS) |
68 #include "md/_solaris.h" | 65 #include "md/_solaris.h" |
69 | 66 |
70 #elif defined(SUNOS4) | |
71 #include "md/_sunos4.h" | |
72 | |
73 #elif defined(SNI) | |
74 #include "md/_reliantunix.h" | |
75 | |
76 #elif defined(SONY) | |
77 #include "md/_sony.h" | |
78 | |
79 #elif defined(NEC) | |
80 #include "md/_nec.h" | |
81 | |
82 #elif defined(SCO) | 67 #elif defined(SCO) |
83 #include "md/_scoos.h" | 68 #include "md/_scoos.h" |
84 | 69 |
85 #elif defined(UNIXWARE) | 70 #elif defined(UNIXWARE) |
86 #include "md/_unixware.h" | 71 #include "md/_unixware.h" |
87 | 72 |
88 #elif defined(NCR) | |
89 #include "md/_ncr.h" | |
90 | |
91 #elif defined(DGUX) | 73 #elif defined(DGUX) |
92 #include "md/_dgux.h" | 74 #include "md/_dgux.h" |
93 | 75 |
94 #elif defined(QNX) | 76 #elif defined(QNX) |
95 #include "md/_qnx.h" | 77 #include "md/_qnx.h" |
96 | 78 |
97 #elif defined(NTO) | 79 #elif defined(NTO) |
98 #include "md/_nto.h" | 80 #include "md/_nto.h" |
99 | 81 |
100 #elif defined(RISCOS) | 82 #elif defined(RISCOS) |
(...skipping 21 matching lines...) Expand all Loading... |
122 | 104 |
123 #endif | 105 #endif |
124 | 106 |
125 #ifdef _PR_PTHREADS | 107 #ifdef _PR_PTHREADS |
126 #include "md/_pth.h" | 108 #include "md/_pth.h" |
127 #endif | 109 #endif |
128 | 110 |
129 PR_END_EXTERN_C | 111 PR_END_EXTERN_C |
130 | 112 |
131 #endif /* prosdep_h___ */ | 113 #endif /* prosdep_h___ */ |
OLD | NEW |