1/*
2 * $Source: /afs/athena.mit.edu/astaff/project/kerberos/src/include/RCS/osconf.h
3 * $Author: snsimon $
4 * $Header: /afs/athena.mit.edu/astaff/project/kerberos/src/include/RCS/osconf.h
5 *		4.4 89/12/19 13:26:27 jtkohl Exp $
6 *
7 * Copyright 1988 by the Massachusetts Institute of Technology.
8 *
9 * For copying and distribution information, please see the file
10 * <mit-copyright.h>.
11 *
12 * Athena configuration.
13 */
14
15#ifndef	_KERBEROS_OSCONF_H
16#define	_KERBEROS_OSCONF_H
17
18#pragma ident	"@(#)osconf.h	1.7	94/07/29 SMI"
19
20#include <kerberos/mit-copyright.h>
21
22#ifdef tahoe
23#include <kerberos/conf-bsdtahoe.h>
24#else /* !tahoe */
25#ifdef vax
26#include <kerberos/conf-bsdvax.h>
27#else /* !vax */
28#if defined(mips) && defined(ultrix)
29#include <kerberos/conf-ultmips2.h>
30#else /* !Ultrix MIPS-2 */
31#ifdef ibm032
32#include <kerberos/conf-bsdibm032.h>
33#else /* !ibm032 */
34#ifdef apollo
35#include <kerberos/conf-bsdapollo.h>
36#else /* !apollo */
37#ifdef sun
38#ifdef sparc
39#if defined(SunOS) && SunOS >= 50
40#include <kerberos/conf-svsparc.h>
41#else
42#include <kerberos/conf-bsdsparc.h>
43#endif
44#else /* sun but not sparc */
45#ifdef i386
46#include <kerberos/conf-bsd386i.h>
47#else /* sun but not sparc or i386 */
48#ifdef __ppc
49#include <kerberos/conf-svppc.h>
50#else /* sun but not (sparc, i386, or ppc) */
51#include <kerberos/conf-bsdm68k.h>
52#endif /* ppc */
53#endif /* i386 */
54#endif /* sparc */
55#else /* !sun */
56#ifdef pyr
57#include <kerberos/conf-pyr.h>
58#endif /* pyr */
59#endif /* sun */
60#endif /* apollo */
61#endif /* ibm032 */
62#endif /* mips */
63#endif /* vax */
64#endif /* tahoe */
65
66#endif	/* _KERBEROS_OSCONF_H */
67