summaryrefslogtreecommitdiffstats
path: root/src/include/kerberosIV
diff options
context:
space:
mode:
authorJennifer Steiner <steiner@mit.edu>1987-10-23 09:40:29 +0000
committerJennifer Steiner <steiner@mit.edu>1987-10-23 09:40:29 +0000
commit5c83ee7ed3bbcb182fd55a792aecb8ff9b615a5e (patch)
tree475765ac5946f81c41a2e92d9310ed66fd54eb6b /src/include/kerberosIV
parent53f57434bf0a5e7dbcf54fd42afa630b46136902 (diff)
downloadkrb5-5c83ee7ed3bbcb182fd55a792aecb8ff9b615a5e.tar.gz
krb5-5c83ee7ed3bbcb182fd55a792aecb8ff9b615a5e.tar.xz
krb5-5c83ee7ed3bbcb182fd55a792aecb8ff9b615a5e.zip
Initial revision
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/kerberosIV')
-rw-r--r--src/include/kerberosIV/krb_conf.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/include/kerberosIV/krb_conf.h b/src/include/kerberosIV/krb_conf.h
new file mode 100644
index 000000000..854819c88
--- /dev/null
+++ b/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
+
+