From 70505bc334c54e83b8e7692103ee4ddbe7e9a7d6 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 1 Mar 2012 21:29:16 +0000 Subject: [PATCH] For OpenVMS, use inttypes.h instead of stdint.h --- crypto/ec/ecp_nistp224.c | 5 +++++ crypto/ec/ecp_nistp256.c | 5 +++++ crypto/ec/ecp_nistp521.c | 5 +++++ 3 files changed, 15 insertions(+) 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" -- 2.25.1