[openssl.org #2996] PATCH: cygwin (and probably others) support broken by long time

2014-08-29 Thread Rich Salz via RT
As Andy explained, this is a mis-configuration issue. Not an openssl bug. -- Rich Salz, OpenSSL dev team; rs...@openssl.org __ OpenSSL Project http://www.openssl.org Development Mailing List

Re: [openssl.org #2996] PATCH: cygwin (and probably others) support broken by long time

2013-04-14 Thread Andy Polyakov via RT
in the file crypto/sha/sha.h there is this line: #if (defined(_WIN32) || defined(_WIN64)) !defined(__MINGW32__) used to conditionally declare SHA_LONG64 and U64 macros. Unfortunately, this causes OpenSSL to be unusable on Cygwin because, obviously, __MINGW32__ is not declared. A fix

Re: [openssl.org #2996] PATCH: cygwin (and probably others) support broken by long time

2013-04-10 Thread carlo . bramix
On Feb 23 17:01, carlo.bra...@libero.it via RT wrote: Hello, in the file crypto/sha/sha.h there is this line: #if (defined(_WIN32) || defined(_WIN64)) !defined(__MINGW32__) used to conditionally declare SHA_LONG64 and U64 macros. Unfortunately, this causes OpenSSL to be unusable on

[openssl.org #2996] PATCH: cygwin (and probably others) support broken by long time

2013-02-23 Thread carlo.bra...@libero.it via RT
Hello, in the file crypto/sha/sha.h there is this line: #if (defined(_WIN32) || defined(_WIN64)) !defined(__MINGW32__) used to conditionally declare SHA_LONG64 and U64 macros. Unfortunately, this causes OpenSSL to be unusable on Cygwin because, obviously, __MINGW32__ is not declared. A fix

Re: [openssl.org #2996] PATCH: cygwin (and probably others) support broken by long time

2013-02-23 Thread Corinna Vinschen
On Feb 23 17:01, carlo.bra...@libero.it via RT wrote: Hello, in the file crypto/sha/sha.h there is this line: #if (defined(_WIN32) || defined(_WIN64)) !defined(__MINGW32__) used to conditionally declare SHA_LONG64 and U64 macros. Unfortunately, this causes OpenSSL to be unusable on