From: Bodo Möller Date: Mon, 28 Jun 1999 14:38:31 +0000 (+0000) Subject: With mingw32, use "long long" rather than "_int64" (the latter does X-Git-Tag: OpenSSL_0_9_4~138 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7722424462001807f79213c4d57c2600450ca0df;p=oweals%2Fopenssl.git With mingw32, use "long long" rather than "_int64" (the latter does not work, at least the package mentioned in INSTALL.W32 does not know about it). --- diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h index 80421a24cc..cfed61293d 100644 --- a/crypto/bn/bn.h +++ b/crypto/bn/bn.h @@ -142,7 +142,7 @@ extern "C" { #endif #ifdef THIRTY_TWO_BIT -#ifdef WIN32 +#if defined WIN32 && !defined __MINGW32__ #define BN_ULLONG unsigned _int64 #else #define BN_ULLONG unsigned long long