summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-12 03:41:23 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-12 03:41:23 +0000
commit0530e0af620cd8843bd256fe891c432ae4e5af31 (patch)
treefa1cc076e3d498617e3c99e51b9114d31913195d
parent615e2bdeeedc9642af79011c8364b315d5796549 (diff)
downloadATCD-0530e0af620cd8843bd256fe891c432ae4e5af31.tar.gz
added __alpha to little endian CPUs
-rw-r--r--TAO/tao/orbconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/orbconf.h b/TAO/tao/orbconf.h
index 0358ad232d1..bb4589f0a56 100644
--- a/TAO/tao/orbconf.h
+++ b/TAO/tao/orbconf.h
@@ -71,9 +71,9 @@
// Define to `int' if <sys/types.h> doesn't define.
/* #undef pid_t */
-// Define if your processor stores words with the most significant
-// byte first (like Motorola and SPARC, unlike Intel and VAX).
-#if defined (i386) || defined (__i386) || defined (_M_IX86) || defined (vax)
+// Define if your processor does not store words with the most significant
+// byte first.
+#if defined (i386) || defined (__i386) || defined (_M_IX86) || defined (vax) || defined (__alpha)
# define TAO_ENCAP_BYTE_ORDER 1 /* little endian encapsulation byte order has
the value = 1 */
#else