diff options
author | Richard Levitte <levitte@openssl.org> | 2002-01-26 03:57:41 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-01-26 03:57:41 +0000 |
commit | 123c4019676507b18f69f70a2db545d34d2d756c (patch) | |
tree | e306e37328fd284aa58abfa03dac8da13235a077 /crypto/opensslconf.h.in | |
parent | a3fffd648bd056feaa0568a7af738d8033c917a5 (diff) | |
download | openssl-new-123c4019676507b18f69f70a2db545d34d2d756c.tar.gz |
GCC uses __i386__.
Diffstat (limited to 'crypto/opensslconf.h.in')
-rw-r--r-- | crypto/opensslconf.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/opensslconf.h.in b/crypto/opensslconf.h.in index 4f3711c68c..9082a16c46 100644 --- a/crypto/opensslconf.h.in +++ b/crypto/opensslconf.h.in @@ -147,7 +147,7 @@ YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! # define DES_PTR # define DES_RISC2 # define DES_UNROLL -#elif defined( i386 ) /* x86 boxes, should be gcc */ +#elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ # define DES_PTR # define DES_RISC1 # define DES_UNROLL |