From 123c4019676507b18f69f70a2db545d34d2d756c Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 26 Jan 2002 03:57:41 +0000 Subject: [PATCH] GCC uses __i386__. --- crypto/opensslconf.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.25.1