提交 f8fa22d8 编写于 作者: A Andy Polyakov

Some non-GNU compilers (such as Sun C) define __i386.

上级 c3932222
...@@ -97,7 +97,8 @@ ...@@ -97,7 +97,8 @@
compiler choice is limited to GCC and Microsoft C. */ compiler choice is limited to GCC and Microsoft C. */
#undef COMPILE_HW_PADLOCK #undef COMPILE_HW_PADLOCK
#if !defined(I386_ONLY) && !defined(OPENSSL_NO_INLINE_ASM) #if !defined(I386_ONLY) && !defined(OPENSSL_NO_INLINE_ASM)
# if defined(__i386__) || defined(__i386) || defined(_M_IX86) # if (defined(__GNUC__) && (defined(__i386__) || defined(__i386))) || \
(defined(_MSC_VER) && defined(_M_IX86))
# define COMPILE_HW_PADLOCK # define COMPILE_HW_PADLOCK
static ENGINE *ENGINE_padlock (void); static ENGINE *ENGINE_padlock (void);
# endif # endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册