source: trunk/third/cns/src/include/krb_conf.h @ 8789

Revision 8789, 1.1 KB checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r8788, which included commits to RCS files with non-trunk default branches.
Line 
1/*
2 * krb_conf.h
3 *
4 * Copyright 1988 by the Massachusetts Institute of Technology.
5 *
6 * For copying and distribution information, please see the file
7 * <mit-copyright.h>.
8 *
9 * This file contains configuration information for the Kerberos library
10 * which is machine specific; currently, this file contains
11 * configuration information for the vax, the "ibm032" (RT), and the
12 * "PC8086" (IBM PC).
13 *
14 * Note:  cross-compiled targets must appear BEFORE their corresponding
15 * cross-compiler host.  Otherwise, both will be defined when running
16 * the native compiler on the programs that construct cross-compiled
17 * sources.
18 */
19
20#ifndef KRB_CONF_DEFS
21#define KRB_CONF_DEFS
22
23#include "mit-copyright.h"
24
25/* Byte ordering */
26#ifndef HOST_BYTE_ORDER
27/* YO!  DON'T USE THIS!  Instead, try to ensure that your favorite
28   configuration defines HOST_BYTE_ORDER correctly.  Then this ugly
29   hack won't be needed.  */
30extern const int krbONE;
31#define         HOST_BYTE_ORDER (* (char *) &krbONE)
32#endif
33#define         MSB_FIRST               0       /* 68000, IBM RT/PC */
34#define         LSB_FIRST               1       /* Vax, PC8086 */
35
36#endif
Note: See TracBrowser for help on using the repository browser.