Skip to content

Commit

Permalink
Initial revision
Browse files Browse the repository at this point in the history
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2 dc483132-0cff-0310-8789-dd5450dbe970
  • Loading branch information
steiner committed Oct 23, 1987
1 parent f915049 commit 53595cb
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions src/include/kerberosIV/krb_conf.h
@@ -0,0 +1,53 @@
/*
* $Source$
* $Header$
*
* This file contains configuration information for the DES
* library which is machine specific; currently, this file contains
* configuration information for the vax, the "ibm032" (RT),
* and the "PC8086" (IBM PC).
*
* Note: cross-compiled targets must appear BEFORE their
* corresponding cross-compiler host. Otherwise, both will
* be defined when running the native compiler on the programs that
* construct cross-compiled sources.
*/

#ifdef PC8086
#define IBMPC
#define BITS16
/*#define BIG*/
#define CROSSMSDOS
#define LSBFIRST

#else

#ifdef vax
#define VAX
#define VAXASM
#define BITS32
#define BIG
#define BSDUNIX
#define LSBFIRST

#else

#ifdef ibm032
#define IBMWS
#define IBMWSASM
#define BITS32
#define BIG
#define BSDUNIX
#define MSBFIRST
#define MUSTALIGN

#else

Sorry, you lose. Figure out what the machine looks like and fix this file to
include it.

#endif ibm032
#endif vax
#endif pc8086


0 comments on commit 53595cb

Please sign in to comment.