diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2011-02-03 14:00:08 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2011-02-03 14:00:08 +0100 |
commit | 65847ca378ea168964fbd9d36d970297d4fe45d7 (patch) | |
tree | f4b7ea5def30d98d3fed09e5b97cd14661549fc4 /crypto/ec/ec.h | |
parent | Add FIPS support to mkdef.pl script, update ordinals. (diff) | |
download | openssl-65847ca378ea168964fbd9d36d970297d4fe45d7.tar.xz openssl-65847ca378ea168964fbd9d36d970297d4fe45d7.zip |
For now disable EC_GFp_nistp224_method() for WIN32 so the WIN32 build
completes without linker errors.
Diffstat (limited to 'crypto/ec/ec.h')
-rw-r--r-- | crypto/ec/ec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/ec/ec.h b/crypto/ec/ec.h index 6409eee1b3..5f92cdd83d 100644 --- a/crypto/ec/ec.h +++ b/crypto/ec/ec.h @@ -155,8 +155,10 @@ const EC_METHOD *EC_GFp_nist_method(void); /** Returns 64-bit optimized methods for nistp224 * \return EC_METHOD object */ +#ifndef OPENSSL_SYS_WIN32 const EC_METHOD *EC_GFp_nistp224_method(void); #endif +#endif /********************************************************************/ |