提交 77519b51 编写于 作者: A Andy Polyakov

Make bn2dec work on "SIXTY_FOUR_BIT" platforms.

PR: 1456
上级 1a01868e
...@@ -79,7 +79,7 @@ ...@@ -79,7 +79,7 @@
#include <openssl/bn.h> /* To get BN_LLONG properly defined */ #include <openssl/bn.h> /* To get BN_LLONG properly defined */
#include <openssl/bio.h> #include <openssl/bio.h>
#ifdef BN_LLONG #if defined(BN_LLONG) || defined(SIXTY_FOUR_BIT)
# ifndef HAVE_LONG_LONG # ifndef HAVE_LONG_LONG
# define HAVE_LONG_LONG 1 # define HAVE_LONG_LONG 1
# endif # endif
...@@ -116,8 +116,8 @@ ...@@ -116,8 +116,8 @@
#endif #endif
#ifdef HAVE_LONG_LONG #ifdef HAVE_LONG_LONG
# if defined(OPENSSL_SYS_WIN32) && !defined(__GNUC__) # if defined(_WIN32) && !defined(__GNUC__)
# define LLONG _int64 # define LLONG __int64
# else # else
# define LLONG long long # define LLONG long long
# endif # endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册