From: Richard Levitte Date: Thu, 1 Mar 2012 21:29:16 +0000 (+0000) Subject: For OpenVMS, use inttypes.h instead of stdint.h X-Git-Tag: OpenSSL_1_0_1~16 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=70505bc334c54e83b8e7692103ee4ddbe7e9a7d6;p=oweals%2Fopenssl.git For OpenVMS, use inttypes.h instead of stdint.h --- diff --git a/crypto/ec/ecp_nistp224.c b/crypto/ec/ecp_nistp224.c index bf8021c6cf..b5ff56c252 100644 --- a/crypto/ec/ecp_nistp224.c +++ b/crypto/ec/ecp_nistp224.c @@ -28,7 +28,12 @@ #include #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128 +#ifndef OPENSSL_SYS_VMS #include +#else +#include +#endif + #include #include #include "ec_lcl.h" diff --git a/crypto/ec/ecp_nistp256.c b/crypto/ec/ecp_nistp256.c index aa125d35fc..4bc0f5dce0 100644 --- a/crypto/ec/ecp_nistp256.c +++ b/crypto/ec/ecp_nistp256.c @@ -29,7 +29,12 @@ #include #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128 +#ifndef OPENSSL_SYS_VMS #include +#else +#include +#endif + #include #include #include "ec_lcl.h" diff --git a/crypto/ec/ecp_nistp521.c b/crypto/ec/ecp_nistp521.c index 3c7ced394b..178b655f7f 100644 --- a/crypto/ec/ecp_nistp521.c +++ b/crypto/ec/ecp_nistp521.c @@ -29,7 +29,12 @@ #include #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128 +#ifndef OPENSSL_SYS_VMS #include +#else +#include +#endif + #include #include #include "ec_lcl.h"