aboutsummaryrefslogtreecommitdiff
path: root/include/sysdep.h
blob: f2c8d1d2a545169e17d0068cd261c9ddd8fa6fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/* All the system include files boiled into one place (sort of).
   Copyright 1990, 1991 Free Software Foundation, Inc.
   Contributed by Cygnus Support.

This file is part of BFD and the GNU Binutils.  Please don't use it for
other programs; better configuration mechanisms than this are needed.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */

/* All the system include files boiled into one place. 

   One day, everyone will have the same set of include files..

   This is ugly, but if you can think of a better way of doing this,
   tell me.  --steve@cygnus.com */

#ifndef _SYSDEP_H
#define _SYSDEP_H

/*
 The including makefile must define HOST_SYS to be one of these.
 Each combination of Machine and OS (and maybe OS Version) must
 have a different number.
 */

#define SUN4_SYS 2
#define POSIX_SYS 3
#define AIX_SYS 4
#define VAX_ULTRIX_SYS 5
#define i386_SYSV_SYS 6
#define SUN3_SYS 7
#define UNKNOWN_SYS 8
#define DGUX_SYS 9
#define DEC3100_SYS 10
#define HP9000_SYS 11
#define APOLLO400_SYS 12
#define DOS_SYS 13
#define	VAX_BSD_SYS 14
#define	TAHOE_BSD_SYS 15
#define RTBSD_SYS 16  /* IBM RT/PC running bsd Unix */
#define IRIX3_SYS 17		/* SGI Iris running irix 3.x */
#define IRIX4_SYS 18		/* SGI Iris running cypress */
#define HP300BSD_SYS 19
#define	ULTRA3_SYS 20		/* NYU Ultracomputer */
#define	NEWSOS3_SYS 21		/* Sony NewsOS 3.x (bsd-4.3 based) */
#define	AMIX_SYS 22		/* Amiga Unix */
#define	i386_MACH_SYS 23	/* Mach on Intel 386 */

#include <ansidecl.h>

#if __STDC__
#define PROTO(type, name, arglist) type name arglist
#else
#define PROTO(type, name, arglist) type name ()
#define NO_STDARG
#endif

#ifndef HOST_SYS
#define HOST_SYS = Hey_you_HOST_SYS_has_not_been_defined.
#endif

#if HOST_SYS==SUN4_SYS
#define HOST_IS_SUN4 1
#include <sys/h-sun4.h>
#endif

#if HOST_SYS==DGUX_SYS
#include <sys/h-dgux.h>
#endif

#if HOST_SYS==POSIX_SYS
#define HOST_IS_POSIX 1
#endif 

#if HOST_SYS==AIX_SYS
#define HOST_IS_AIX 1
#include <sys/h-rs6000.h>
#endif

#if HOST_SYS==VAX_ULTRIX_SYS
#define HOST_IS_VAX_ULTRIX 1
#include <sys/h-vaxult.h>
#endif

#if HOST_SYS==i386_SYSV_SYS
#define HOST_IS_i386_SYSV 1
#define USG 
#include <sys/h-i386v.h>
#endif

#if HOST_SYS==SUN3_SYS
#define HOST_IS_SUN3 1
#include <sys/h-sun3.h>
#endif

#if HOST_SYS==NEWSOS3_SYS
#define HOST_IS_SUN3 1 /* Lie - should be close enough */
#include <sys/h-sun3.h> /* Probably good enough */
#define MISSING_VFPRINTF
#endif

#if HOST_SYS==DEC3100_SYS
#define HOST_IS_DEC3100 1
#include <sys/h-dec3100.h>
#endif

#if HOST_SYS==HP9000_SYS
#define HOST_IS_HP9000 1
#define USG 
#include <sys/h-hp9000.h>
#endif

#if HOST_SYS==APOLLO400_SYS
#define HOST_IS_APOLLO400 1
#include <sys/h-ap400.h>
#endif
 
#if HOST_SYS==DOS_SYS
#define HOST_IS_DOS 1
#include <sys/h_dos.h>
#endif

#if HOST_SYS == VAX_BSD_SYS
#include <sys/h-vaxbsd.h>
#endif

#if HOST_SYS == TAHOE_BSD_SYS
#include <sys/h-tahoebsd.h>
#endif

#if HOST_SYS == RTBSD_SYS	
#include <sys/h-rtbsd.h>
#endif

#if HOST_SYS == IRIX3_SYS	
#include <sys/h-irix3.h>
#endif

#if HOST_SYS == IRIX4_SYS	
#include <sys/h-irix4.h>
#endif

#if HOST_SYS == HP300BSD_SYS
#include <sys/h-hp300bsd.h>
#endif

#if HOST_SYS == ULTRA3_SYS
#include <sys/h-ultra3.h>
#endif

#if HOST_SYS == AMIX_SYS
#include <sys/h-amix.h>
#endif

#if HOST_SYS == i386_MACH_SYS
#include <sys/h-i386mach.h>
#endif

#endif /* _SYSDEP_H */