source: trunk/third/sysinfo/os.h @ 12269

Revision 12269, 1.1 KB checked in by ghudson, 26 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r12268, which included commits to RCS files with non-trunk default branches.
Line 
1/*
2 * Copyright (c) 1992-1998 Michael A. Cooper.
3 * This software may be freely used and distributed provided it is not
4 * sold for profit or used in part or in whole for commercial gain
5 * without prior written agreement, and the author is credited
6 * appropriately.
7 */
8
9/*
10 * $Revision: 1.1.1.3 $
11 */
12
13#ifndef __sysinfo_system__
14#define __sysinfo_system__
15
16/*
17 * System dependent information
18 */
19
20#if defined(sun)
21#       if OSMVER == 5 || defined(__svr4__)
22#               include "os-sunos5.h"
23#       else
24#               include "os-sunos4.h"
25#       endif
26#endif /* sun */
27
28#if defined(_AIX)
29#       include "os-aix.h"
30#endif /* _AIX */
31
32#if (defined(hpux) || defined(__hpux)) && !defined(__convex__)
33#       include "os-hpux.h"
34#endif /* hpux */
35
36#if defined(__convex__) || defined(__convex_spp)
37#       include "os-sppux.h"
38#endif /* __convex__ */
39
40#if defined(sgi)
41#       include "os-irix.h"
42#endif
43
44#if defined(linux)
45#       include "os-linux.h"
46#endif
47
48#if defined(__bsdi__)
49#       include "os-bsdos.h"
50#endif
51
52#if defined(__FreeBSD__)
53#       include "os-freebsd.h"
54#endif
55
56/*
57 * Everything depends on HAVE_KVM
58 */
59#if     defined(NEED_KVM) && !defined(HAVE_KVM)
60#define HAVE_KVM
61#endif
62
63#endif /* __sysinfo_system__ */
Note: See TracBrowser for help on using the repository browser.