From: Ulf Möller Date: Wed, 1 Mar 2000 01:46:34 +0000 (+0000) Subject: check for WIN32 (needed by Mingw32) X-Git-Tag: OpenSSL_0_9_5a-beta1~134 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f1a617edc90b0c0cb2403739159f53d977f78ca2;p=oweals%2Fopenssl.git check for WIN32 (needed by Mingw32) --- diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h index d8822610df..009b0eb685 100644 --- a/crypto/bn/bn.h +++ b/crypto/bn/bn.h @@ -89,7 +89,7 @@ extern "C" { * For machines with only one compiler (or shared libraries), this should * be on. Again this in only really a problem on machines * using "long long's", are 32bit, and are not using my assembler code. */ -#if defined(MSDOS) || defined(WINDOWS) || defined(linux) +#if defined(MSDOS) || defined(WINDOWS) || defined(WIN32) || defined(linux) #define BN_DIV2W #endif